Eliminate random delay, which should no longer be needed now that
authorChris Hanson <org/chris-hanson/cph>
Tue, 17 Aug 1993 21:32:21 +0000 (21:32 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 17 Aug 1993 21:32:21 +0000 (21:32 +0000)
window initialization sequence is fixed.

v7/src/edwin/debug.scm

index b6f11ec7e63210eece87fb8c856fea620fab7989..90723fd8dae5eba281960d3510efdaa1e8697e74 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: debug.scm,v 1.12 1993/08/16 19:00:03 jbank Exp $
+;;;    $Id: debug.scm,v 1.13 1993/08/17 21:32:21 cph Exp $
 ;;;
 ;;;    Copyright (c) 1992-93 Massachusetts Institute of Technology
 ;;;
@@ -1115,8 +1115,6 @@ The buffer below describes the current subproblem or reduction.
                   (newline port))))))
          (insert-blines browser 0 blines)
          (buffer-put! buffer 'THREAD break-thread) ;  adds thread
-         (wait-processor-time 100)   ;  lose because the synch of new
-                                     ; screen stuff is off
          (select-screen debug-screen)
          (select-window (screen-window0 debug-screen))
          (if (null? blines)
@@ -1124,13 +1122,6 @@ The buffer below describes the current subproblem or reduction.
              (select-bline (car blines)))
          buffer)))))
 
-;;;kludge to deal with the screen synch 
-(define (wait-processor-time ticks)
-  (let ((end (+ (process-time-clock) ticks)))
-    (let wait-loop ()
-      (if (< (process-time-clock) end)
-         (wait-loop)))))
-
 (define (find-debugger-buffers)
   (list-transform-positive (buffer-list)
     (let ((debugger-mode (ref-mode-object continuation-browser)))