summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2003-11-19 01:27:31 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2003-11-19 01:27:31 +0000
commit0f8b558cbc7fca3234d6f25e66490fc1e9254a41 (patch)
treec9887baa3d1363cd18d614b67d5afacb167a146f /emacs
parentd9d022a7d6bba03574a3568680ff43c40a558083 (diff)
downloadguile-0f8b558cbc7fca3234d6f25e66490fc1e9254a41.tar.gz
Work in progress.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/ChangeLog5
-rw-r--r--emacs/gds-client.scm39
2 files changed, 35 insertions, 9 deletions
diff --git a/emacs/ChangeLog b/emacs/ChangeLog
index fcb1d0aa7..9ba7a77ae 100644
--- a/emacs/ChangeLog
+++ b/emacs/ChangeLog
@@ -1,5 +1,10 @@
2003-11-19 Neil Jerram <neil@ossau.uklinux.net>
+ * gds-client.scm (start-async-gds-thread): Changes to fix
+ interaction between async and debugger threads.
+ (gds-connect): Don't send module list immediately after initial
+ connection.
+
* gds.el (gds-immediate-display): Removed.
2003-11-19 Neil Jerram <neil@ossau.uklinux.net>
diff --git a/emacs/gds-client.scm b/emacs/gds-client.scm
index a560a2cd1..f4101189c 100644
--- a/emacs/gds-client.scm
+++ b/emacs/gds-client.scm
@@ -67,7 +67,7 @@ decimal IP address where the UI server is running; default is
"w"))
;; Write initial context to debug server.
(write-form (list 'name name (getpid)))
- (write-form (cons 'modules (map module-name (loaded-modules))))
+ ;(write-form (cons 'modules (map module-name (loaded-modules))))
;; Start the asynchronous UI thread.
(start-async-gds-thread)
;; If `debug' is true, debug immediately.
@@ -87,33 +87,43 @@ decimal IP address where the UI server is running; default is
;; Start the asynchronous UI thread.
(begin-thread
(set! async-gds-thread (current-thread))
- (lock-mutex mutex)
;;(write (cons admin gds-port))
;;(newline)
+ (lock-mutex mutex)
(catch 'server-died
(lambda ()
(let loop ((avail '()))
+ (write-note 'startloop)
;;(write avail)
;;(newline)
(cond ((not gds-port)) ; exit loop
((null? avail)
(write-status 'ready-for-input)
- (loop (car (select (list gds-port (car admin))
- '() '()))))
+ (unlock-mutex mutex)
+ (let ((ports (car (select (list gds-port (car admin))
+ '() '()))))
+ (lock-mutex mutex)
+ (loop ports)))
(else
+ (write-note 'sthg-to-read)
(let ((port (car avail)))
(if (eq? port gds-port)
(handle-instruction #f (read gds-port))
(begin
+ (write-note 'debugger-takeover)
;; Notification from debugger that it
;; wants to take over. Read the
;; notification char.
(read-char (car admin))
;; Wait on condition variable - this allows the
;; debugger thread to grab the mutex.
- (wait-condition-variable condition mutex)))
+ (write-note 'cond-wait)
+ (signal-condition-variable condition)
+ (wait-condition-variable condition mutex)
+ ))
;; Loop.
- (loop (cdr avail)))))))
+ (loop '()))))
+ (write-note 'loopexited)))
(lambda args #f))
(set! gds-disable-async-thread noop)
(set! gds-continue-async-thread noop)
@@ -122,15 +132,22 @@ decimal IP address where the UI server is running; default is
;; Redefine procs used by debugger thread to take control.
(set! gds-disable-async-thread
(lambda ()
+ (lock-mutex mutex)
(write-char #\x (cdr admin))
(force-output (cdr admin))
+ (write-note 'char-written)
+ (wait-condition-variable condition mutex)
;;(display "gds-disable-async-thread: locking mutex...\n"
;; (current-error-port))
- (lock-mutex mutex)))
+ ))
(set! gds-continue-async-thread
(lambda ()
- (unlock-mutex mutex)
- (signal-condition-variable condition)))))
+ (write-note 'cond-signal)
+ (signal-condition-variable condition)
+ ;; Make sure that the async thread has got the message
+ ;; before we could possibly try to grab the main mutex
+ ;; again.
+ (unlock-mutex mutex)))))
(define accumulated-output '())
@@ -195,6 +212,10 @@ decimal IP address where the UI server is running; default is
(newline gds-port)
(force-output gds-port))
+(define (write-note note)
+ ;; Write a note (for debugging this code) to UI frontend.
+ (false-if-exception (write-form `(note ,note))))
+
(define (stack->emacs-readable stack)
;; Return Emacs-readable representation of STACK.
(map (lambda (index)