1 (in-package "SB!THREAD")
3 (sb!alien::define-alien-routine ("create_thread" %create-thread)
5 (lisp-fun-address sb!alien:unsigned-long))
7 (defun make-thread (function)
8 (let ((real-function (coerce function 'function)))
10 (sb!kernel:get-lisp-obj-address
12 ;; in time we'll move some of the binding presently done in C
14 (let ((sb!kernel::*restart-clusters* nil)
15 (sb!impl::*descriptor-handlers* nil); serve-event
16 (sb!impl::*available-buffers* nil)) ;for fd-stream
17 ;; can't use handling-end-of-the-world, because that flushes
18 ;; output streams, and we don't necessarily have any (or we
19 ;; could be sharing them)
20 (sb!sys:enable-interrupt :sigint :ignore)
22 (catch 'sb!impl::%end-of-the-world
25 (format nil "~~@<Destroy this thread (~A)~~@:>"
27 (funcall real-function))
30 (defun destroy-thread (thread-id)
31 (sb!unix:unix-kill thread-id :sigterm)
32 ;; may have been stopped for some reason, so now wake it up to
34 (sb!unix:unix-kill thread-id :sigcont))
36 ;; Conventional wisdom says that it's a bad idea to use these unless
37 ;; you really need to. Use a lock or a waitqueue instead
38 (defun suspend-thread (thread-id)
39 (sb!unix:unix-kill thread-id :sigstop))
40 (defun resume-thread (thread-id)
41 (sb!unix:unix-kill thread-id :sigcont))
43 (defun current-thread-id ()
45 (sb!vm::current-thread-offset-sap sb!vm::thread-pid-slot)))
47 ;;;; iterate over the in-memory threads
49 (defun mapcar-threads (function)
50 "Call FUNCTION once for each known thread, giving it the thread structure as argument"
51 (let ((function (coerce function 'function)))
52 (loop for thread = (alien-sap (extern-alien "all_threads" (* t)))
53 then (sb!sys:sap-ref-sap thread (* 4 sb!vm::thread-next-slot))
54 until (sb!sys:sap= thread (sb!sys:int-sap 0))
55 collect (funcall function thread))))
59 ;; spinlocks use 0 as "free" value: higher-level locks use NIL
60 (defun get-spinlock (lock offset new-value)
61 (declare (optimize (speed 3) (safety 0)))
63 (eql (sb!vm::%instance-set-conditional lock offset 0 new-value) 0)))
65 (defmacro with-spinlock ((queue) &body body)
66 (let ((pid (gensym "PID")))
68 (let ((,pid (current-thread-id)))
69 (get-spinlock ,queue 2 ,pid)
71 (setf (waitqueue-lock ,queue) 0))))
73 ;;;; the higher-level locking operations are based on waitqueues
76 (name nil :type (or null simple-base-string))
80 (defstruct (mutex (:include waitqueue))
83 (sb!alien:define-alien-routine "block_sigcont" void)
84 (sb!alien:define-alien-routine "unblock_sigcont_and_sleep" void)
86 (defun wait-on-queue (queue &optional lock)
87 (let ((pid (current-thread-id)))
88 ;; FIXME what should happen if we get interrupted when we've blocked
89 ;; the sigcont? For that matter, can we get interrupted?
91 (when lock (release-mutex lock))
92 (get-spinlock queue 2 pid)
93 (pushnew pid (waitqueue-data queue))
94 (setf (waitqueue-lock queue) 0)
95 (unblock-sigcont-and-sleep)))
97 (defun dequeue (queue)
98 (let ((pid (current-thread-id)))
99 (get-spinlock queue 2 pid)
100 (setf (waitqueue-data queue)
101 (delete pid (waitqueue-data queue)))
102 (setf (waitqueue-lock queue) 0)))
104 (defun signal-queue-head (queue)
105 (let ((pid (current-thread-id)))
106 (get-spinlock queue 2 pid)
107 (let ((h (car (waitqueue-data queue))))
108 (setf (waitqueue-lock queue) 0)
110 (sb!unix:unix-kill h :sigcont)))))
114 (defun get-mutex (lock &optional new-value (wait-p t))
115 (declare (type mutex lock))
116 (let ((pid (current-thread-id)))
117 (unless new-value (setf new-value pid))
118 (assert (not (eql new-value (mutex-value lock))))
121 ;; args are object slot-num old-value new-value
122 (sb!vm::%instance-set-conditional lock 4 nil new-value)
125 (unless wait-p (return nil))
126 (wait-on-queue lock nil))))
128 (defun release-mutex (lock &optional (new-value nil))
129 (declare (type mutex lock))
130 (let ((old-value (mutex-value lock))
134 ;; args are object slot-num old-value new-value
137 (sb!vm::%instance-set-conditional lock 4 old-value new-value)))
138 (signal-queue-head lock)
140 (setf old-value t1))))
142 (defmacro with-mutex ((mutex &key value (wait-p t)) &body body)
143 (let ((block (gensym "NIL")))
146 (unless (get-mutex ,mutex ,value ,wait-p) (return-from ,block nil))
148 (release-mutex ,mutex))))
151 ;;;; condition variables
153 (defun condition-wait (queue lock)
154 "Atomically release LOCK and enqueue ourselves on QUEUE. Another
155 thread may subsequently notify us using CONDITION-NOTIFY, at which
156 time we reacquire LOCK and return to the caller."
158 (wait-on-queue queue lock)
159 ;; If we are interrupted while waiting, we should do these things
160 ;; before returning. Ideally, in the case of an unhandled signal,
161 ;; we should do them before entering the debugger, but this is
162 ;; better than nothing.
166 (defun condition-notify (queue)
167 "Notify one of the processes waiting on QUEUE"
168 (signal-queue-head queue))
171 ;;;; multiple independent listeners
173 (defvar *session-lock* nil)
175 (defun make-listener-thread (tty-name)
176 (assert (probe-file tty-name))
177 ;; FIXME probably still need to do some tty stuff to get signals
178 ;; delivered correctly.
180 (let* ((in (sb!unix:unix-open (namestring tty-name) sb!unix:o_rdwr #o666))
181 (out (sb!unix:unix-dup in))
182 (err (sb!unix:unix-dup in)))
183 (labels ((thread-repl ()
184 (sb!unix::unix-setsid)
185 (let* ((*session-lock*
186 (make-mutex :name (format nil "lock for ~A" tty-name)))
188 (sb!sys:make-fd-stream in :input t :buffering :line))
190 (sb!sys:make-fd-stream out :output t :buffering :line))
192 (sb!sys:make-fd-stream err :output t :buffering :line))
194 (sb!sys:make-fd-stream err :input t :output t :buffering :line))
195 (sb!impl::*descriptor-handlers* nil))
196 (get-mutex *session-lock*)
197 (sb!sys:enable-interrupt :sigint #'sb!unix::sigint-handler)
199 (sb!impl::toplevel-repl nil)
200 (sb!int:flush-standard-output-streams)))))
201 (make-thread #'thread-repl))))
205 (defvar *background-threads-wait-for-debugger* t)
206 ;;; may be T, NIL, or a function called with a stream and thread id
207 ;;; as its two arguments, returning NIl or T
209 ;;; called from top of invoke-debugger
210 (defun debugger-wait-until-foreground-thread (stream)
211 "Returns T if thread had been running in background, NIL if it was
212 already the foreground thread, or transfers control to the first applicable
213 restart if *BACKGROUND-THREADS-WAIT-FOR-DEBUGGER* says to do that instead"
214 (let* ((wait-p *background-threads-wait-for-debugger*)
215 (*background-threads-wait-for-debugger* nil)
216 (lock *session-lock*))
217 (when (not (eql (mutex-value lock) (CURRENT-THREAD-ID)))
218 (when (functionp wait-p)
220 (funcall wait-p stream (CURRENT-THREAD-ID))))
221 (cond (wait-p (get-foreground))
222 (t (invoke-restart (car (compute-restarts))))))))
224 ;;; install this with (setf SB!INT:*REPL-PROMPT-FUN* #'thread-prompt-fun)
225 ;;; One day it will be default
226 (defun thread-repl-prompt-fun (out-stream)
227 (let ((lock *session-lock*))
229 (let ((stopped-threads (waitqueue-data lock)))
230 (when stopped-threads
231 (format out-stream "~{~&Thread ~A suspended~}~%" stopped-threads))
232 (sb!impl::repl-prompt-fun out-stream))))
234 (defun resume-stopped-thread (id)
235 (let ((pid (current-thread-id))
236 (lock *session-lock*))
237 (with-spinlock (lock)
238 (setf (waitqueue-data lock)
239 (cons id (delete id (waitqueue-data lock)))))
240 (release-foreground)))
243 (name nil :type (or null simple-base-string))
244 (value 0 :type fixnum)
245 (max-readers nil :type (or fixnum null))
246 (max-writers 1 :type fixnum))
249 ((make-rwlocking-function (lock-fn unlock-fn increment limit test)
250 (let ((do-update '(when (eql old-value
251 (sb!vm::%instance-set-conditional
252 lock 2 old-value new-value))
253 (return (values t old-value))))
254 (vars `((timeout (and timeout (+ (get-internal-real-time) timeout)))
258 (labels ((do-setfs (v) `(setf old-value (rwlock-value lock)
259 new-value (,v old-value ,increment))))
261 (defun ,lock-fn (lock timeout)
262 (declare (type rwlock lock))
268 (when (sleep-a-bit timeout) (return nil)) ;expired
270 ;; unlock doesn't need timeout or test-in-range
271 (defun ,unlock-fn (lock)
272 (declare (type rwlock lock))
273 (declare (ignorable limit))
279 (make-rwlocking-function %lock-for-reading %unlock-for-reading 1
280 (rwlock-max-readers lock)
281 (and (>= old-value 0)
282 (or (null limit) (<= new-value limit))))
283 (make-rwlocking-function %lock-for-writing %unlock-for-writing -1
284 (- (rwlock-max-writers lock))
285 (and (<= old-value 0)
286 (>= new-value limit))))
288 (defun get-rwlock (lock direction &optional timeout)
290 (:read (%lock-for-reading lock timeout))
291 (:write (%lock-for-writing lock timeout))))
293 (defun free-rwlock (lock direction)
295 (:read (%unlock-for-reading lock))
296 (:write (%unlock-for-writing lock))))
298 ;;;; beyond this point all is commented.
300 ;;; Lock-Wait-With-Timeout -- Internal
302 ;;; Wait with a timeout for the lock to be free and acquire it for the
303 ;;; *current-process*.
306 (defun lock-wait-with-timeout (lock whostate timeout)
307 (declare (type lock lock))
308 (process-wait-with-timeout
311 (declare (optimize (speed 3)))
313 (unless (lock-process lock)
314 (setf (lock-process lock) *current-process*))
316 (null (kernel:%instance-set-conditional
317 lock 2 nil *current-process*)))))
319 ;;; With-Lock-Held -- Public
322 (defmacro with-lock-held ((lock &optional (whostate "Lock Wait")
323 &key (wait t) timeout)
325 "Execute the body with the lock held. If the lock is held by another
326 process then the current process waits until the lock is released or
327 an optional timeout is reached. The optional wait timeout is a time in
328 seconds acceptable to process-wait-with-timeout. The results of the
329 body are return upon success and NIL is return if the timeout is
330 reached. When the wait key is NIL and the lock is held by another
331 process then NIL is return immediately without processing the body."
332 (let ((have-lock (gensym)))
333 `(let ((,have-lock (eq (lock-process ,lock) *current-process*)))
335 ,(cond ((and timeout wait)
337 (when (and (error-check-lock-p ,lock) ,have-lock)
340 #+i486 (null (kernel:%instance-set-conditional
341 ,lock 2 nil *current-process*))
342 #-i486 (seize-lock ,lock)
344 (lock-wait-with-timeout
345 ,lock ,whostate ,timeout)
346 (lock-wait ,lock ,whostate)))
350 (when (and (error-check-lock-p ,lock) ,have-lock)
352 (unless (or ,have-lock
353 #+i486 (null (kernel:%instance-set-conditional
354 ,lock 2 nil *current-process*))
355 #-i486 (seize-lock ,lock))
356 (lock-wait ,lock ,whostate))
359 `(when (or (and (recursive-lock-p ,lock) ,have-lock)
360 #+i486 (null (kernel:%instance-set-conditional
361 ,lock 2 nil *current-process*))
362 #-i486 (seize-lock ,lock))
365 #+i486 (kernel:%instance-set-conditional
366 ,lock 2 *current-process* nil)
367 #-i486 (when (eq (lock-process ,lock) *current-process*)
368 (setf (lock-process ,lock) nil)))))))