1 ;;;; support for threads in the target machine
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB!THREAD")
14 ;;; Of the WITH-PINNED-OBJECTS in this file, not every single one is
15 ;;; necessary because threads are only supported with the conservative
16 ;;; gencgc and numbers on the stack (returned by GET-LISP-OBJ-ADDRESS)
17 ;;; are treated as references.
19 ;;; set the doc here because in early-thread FDOCUMENTATION is not
22 (setf (fdocumentation '*current-thread* 'variable)
23 "Bound in each thread to the thread itself.")
25 (defstruct (thread (:constructor %make-thread))
27 "Thread type. Do not rely on threads being structs as it may change
33 (interruptions-lock (make-mutex :name "thread interruptions lock"))
35 (result-lock (make-mutex :name "thread result lock")))
38 (setf (fdocumentation 'thread-name 'function)
39 "The name of the thread. Setfable.")
41 (def!method print-object ((thread thread) stream)
42 (print-unreadable-object (thread stream :type t :identity t)
43 (let* ((cookie (list thread))
44 (info (if (thread-alive-p thread)
46 (multiple-value-list (join-thread thread :default cookie))))
47 (state (if (eq :running info)
49 (if (eq cookie (car info))
52 (values (when (eq :finished state) info)))
53 (format stream "~@[~S ~]~:[~A~;~A~:[ no values~; values: ~:*~{~S~^, ~}~]~]"
59 (defun thread-alive-p (thread)
61 "Check if THREAD is running."
62 (thread-%alive-p thread))
64 ;; A thread is eligible for gc iff it has finished and there are no
65 ;; more references to it. This list is supposed to keep a reference to
66 ;; all running threads.
67 (defvar *all-threads* ())
68 (defvar *all-threads-lock* (make-mutex :name "all threads lock"))
70 (defvar *default-alloc-signal* nil)
72 (defmacro with-all-threads-lock (&body body)
73 `(with-system-mutex (*all-threads-lock*)
76 (defun list-all-threads ()
78 "Return a list of the live threads."
79 (with-all-threads-lock
80 (copy-list *all-threads*)))
82 (declaim (inline current-thread-sap))
83 (defun current-thread-sap ()
84 (sb!vm::current-thread-offset-sap sb!vm::thread-this-slot))
86 (declaim (inline current-thread-os-thread))
87 (defun current-thread-os-thread ()
89 (sb!vm::current-thread-offset-sap sb!vm::thread-os-thread-slot)))
91 (defun init-initial-thread ()
92 (/show0 "Entering INIT-INITIAL-THREAD")
93 (let ((initial-thread (%make-thread :name "initial thread"
95 :os-thread (current-thread-os-thread))))
96 (setq *current-thread* initial-thread)
97 ;; Either *all-threads* is empty or it contains exactly one thread
98 ;; in case we are in reinit since saving core with multiple
99 ;; threads doesn't work.
100 (setq *all-threads* (list initial-thread))))
106 ;; FIXME it would be good to define what a thread id is or isn't
107 ;; (our current assumption is that it's a fixnum). It so happens
108 ;; that on Linux it's a pid, but it might not be on posix thread
110 (define-alien-routine ("create_thread" %create-thread)
111 unsigned-long (lisp-fun-address unsigned-long))
113 (define-alien-routine "signal_interrupt_thread"
114 integer (os-thread unsigned-long))
116 (define-alien-routine "block_deferrable_signals"
121 (declaim (inline %lutex-init %lutex-wait %lutex-wake
122 %lutex-lock %lutex-unlock))
124 (define-alien-routine ("lutex_init" %lutex-init)
125 int (lutex unsigned-long))
127 (define-alien-routine ("lutex_wait" %lutex-wait)
128 int (queue-lutex unsigned-long) (mutex-lutex unsigned-long))
130 (define-alien-routine ("lutex_wake" %lutex-wake)
131 int (lutex unsigned-long) (n int))
133 (define-alien-routine ("lutex_lock" %lutex-lock)
134 int (lutex unsigned-long))
136 (define-alien-routine ("lutex_trylock" %lutex-trylock)
137 int (lutex unsigned-long))
139 (define-alien-routine ("lutex_unlock" %lutex-unlock)
140 int (lutex unsigned-long))
142 (define-alien-routine ("lutex_destroy" %lutex-destroy)
143 int (lutex unsigned-long))
145 ;; FIXME: Defining a whole bunch of alien-type machinery just for
146 ;; passing primitive lutex objects directly to foreign functions
147 ;; doesn't seem like fun right now. So instead we just manually
148 ;; pin the lutex, get its address, and let the callee untag it.
149 (defmacro with-lutex-address ((name lutex) &body body)
150 `(let ((,name ,lutex))
151 (with-pinned-objects (,name)
152 (let ((,name (get-lisp-obj-address ,name)))
156 (/show0 "Entering MAKE-LUTEX")
157 ;; Suppress GC until the lutex has been properly registered with
160 (let ((lutex (sb!vm::%make-lutex)))
163 (with-lutex-address (lutex lutex)
169 (declaim (inline futex-wait %futex-wait futex-wake))
171 (define-alien-routine ("futex_wait" %futex-wait)
172 int (word unsigned-long) (old-value unsigned-long)
173 (to-sec long) (to-usec unsigned-long))
175 (defun futex-wait (word old to-sec to-usec)
177 (%futex-wait word old to-sec to-usec)))
179 (define-alien-routine "futex_wake"
180 int (word unsigned-long) (n unsigned-long))))
182 ;;; used by debug-int.lisp to access interrupt contexts
183 #!-(or sb-fluid sb-thread) (declaim (inline sb!vm::current-thread-offset-sap))
185 (defun sb!vm::current-thread-offset-sap (n)
186 (declare (type (unsigned-byte 27) n))
187 (sap-ref-sap (alien-sap (extern-alien "all_threads" (* t)))
188 (* n sb!vm:n-word-bytes)))
191 (defun sb!vm::current-thread-offset-sap (n)
192 (declare (type (unsigned-byte 27) n))
193 (sb!vm::current-thread-offset-sap n))
195 (declaim (inline get-spinlock release-spinlock))
197 ;; Should always be called with interrupts disabled.
198 (defun get-spinlock (spinlock)
199 (declare (optimize (speed 3) (safety 0)))
200 (let* ((new *current-thread*)
201 (old (sb!ext:compare-and-swap (spinlock-value spinlock) nil new)))
204 (error "Recursive lock attempt on ~S." spinlock))
207 (unless (sb!ext:compare-and-swap (spinlock-value spinlock) nil new)
208 (return-from get-spinlock t))))
209 (if (and (not *interrupts-enabled*) *allow-with-interrupts*)
210 ;; If interrupts are enabled, but we are allowed to enabled them,
211 ;; check for pending interrupts every once in a while.
213 (loop repeat 128 do (cas)) ; 128 is arbitrary here
214 (sb!unix::%check-interrupts))
218 (defun release-spinlock (spinlock)
219 (declare (optimize (speed 3) (safety 0)))
220 (setf (spinlock-value spinlock) nil)
226 (setf (fdocumentation 'make-mutex 'function)
228 (fdocumentation 'mutex-name 'function)
229 "The name of the mutex. Setfable.")
231 #!+(and sb-thread (not sb-lutex))
233 (define-structure-slot-addressor mutex-state-address
236 ;; Important: current code assumes these are fixnums or other
237 ;; lisp objects that don't need pinning.
238 (defconstant +lock-free+ 0)
239 (defconstant +lock-taken+ 1)
240 (defconstant +lock-contested+ 2))
242 (defun get-mutex (mutex &optional (new-owner *current-thread*) (waitp t))
244 "Acquire MUTEX for NEW-OWNER, which must be a thread or NIL. If
245 NEW-OWNER is NIL, it defaults to the current thread. If WAITP is
246 non-NIL and the mutex is in use, sleep until it is available.
248 Note: using GET-MUTEX to assign a MUTEX to another thread then the
249 current one is not recommended, and liable to be deprecated.
251 GET-MUTEX is not interrupt safe. The correct way to call it is:
255 (ALLOW-WITH-INTERRUPTS (GET-MUTEX ...))
258 WITHOUT-INTERRUPTS is necessary to avoid an interrupt unwinding the
259 call while the mutex is in an inconsistent state while
260 ALLOW-WITH-INTERRUPTS allows the call to be interrupted from sleep.
262 It is recommended that you use WITH-MUTEX instead of calling GET-MUTEX
264 (declare (type mutex mutex) (optimize (speed 3))
265 #!-sb-thread (ignore waitp))
267 (setq new-owner *current-thread*))
268 (when (eql new-owner (mutex-%owner mutex))
269 (error "Recursive lock attempt ~S." mutex))
272 ;; FIXME: Lutexes do not currently support deadlines, as at least
273 ;; on Darwin pthread_foo_timedbar functions are not supported:
274 ;; this means that we probably need to use the Carbon multiprocessing
275 ;; functions on Darwin.
277 ;; FIXME: This is definitely not interrupt safe: what happens if
278 ;; we get hit (1) during the lutex calls (ok, they may be safe,
279 ;; but has that been checked?) (2) after the lutex call, but
280 ;; before setting the mutex owner.
282 (when (zerop (with-lutex-address (lutex (mutex-lutex mutex))
284 (with-interrupts (%lutex-lock lutex))
285 (%lutex-trylock lutex))))
286 (setf (mutex-%owner mutex) new-owner)
289 (let ((old (sb!ext:compare-and-swap (mutex-state mutex)
292 (unless (or (eql +lock-free+ old) (not waitp))
295 (when (or (eql +lock-contested+ old)
296 (not (eql +lock-free+
297 (sb!ext:compare-and-swap (mutex-state mutex)
300 ;; Wait on the contested lock.
301 (multiple-value-bind (to-sec to-usec) (decode-timeout nil)
302 (when (= 1 (with-pinned-objects (mutex)
303 (futex-wait (mutex-state-address mutex)
304 (get-lisp-obj-address +lock-contested+)
308 (setf old (sb!ext:compare-and-swap (mutex-state mutex)
312 (unless (eql +lock-free+ old)
314 (cond ((eql +lock-free+ old)
315 (let ((prev (sb!ext:compare-and-swap (mutex-%owner mutex)
318 (bug "Old owner in free mutex: ~S" prev))
321 (bug "Failed to acquire lock with WAITP."))))))
323 (defun release-mutex (mutex)
325 "Release MUTEX by setting it to NIL. Wake up threads waiting for
328 RELEASE-MUTEX is not interrupt safe: interrupts should be disabled
331 Signals a WARNING is current thread is not the current owner of the
333 (declare (type mutex mutex))
334 ;; Order matters: set owner to NIL before releasing state.
335 (let* ((self *current-thread*)
336 (old-owner (sb!ext:compare-and-swap (mutex-%owner mutex) self nil)))
337 (unless (eql self old-owner)
338 (warn "Releasing ~S, owned by another thread: ~S" mutex old-owner)
339 (setf (mutex-%owner mutex) nil)))
343 (with-lutex-address (lutex (mutex-lutex mutex))
344 (%lutex-unlock lutex))
346 (let ((old (sb!ext:compare-and-swap (mutex-state mutex)
347 +lock-taken+ +lock-free+)))
348 (when (eql old +lock-contested+)
349 (sb!ext:compare-and-swap (mutex-state mutex)
350 +lock-contested+ +lock-free+)
351 (with-pinned-objects (mutex)
352 (futex-wake (mutex-state-address mutex) 1))))
355 ;;;; waitqueues/condition variables
357 (defstruct (waitqueue (:constructor %make-waitqueue))
360 (name nil :type (or null simple-string))
361 #!+(and sb-lutex sb-thread)
366 (defun make-waitqueue (&key name)
368 "Create a waitqueue."
369 (%make-waitqueue :name name))
372 (setf (fdocumentation 'waitqueue-name 'function)
373 "The name of the waitqueue. Setfable.")
375 #!+(and sb-thread (not sb-lutex))
376 (define-structure-slot-addressor waitqueue-data-address
380 (defun condition-wait (queue mutex)
382 "Atomically release MUTEX and enqueue ourselves on QUEUE. Another
383 thread may subsequently notify us using CONDITION-NOTIFY, at which
384 time we reacquire MUTEX and return to the caller."
385 #!-sb-thread (declare (ignore queue))
387 #!-sb-thread (error "Not supported in unithread builds.")
389 (let ((owner (mutex-%owner mutex)))
390 (/show0 "CONDITION-WAITing")
393 ;; FIXME: This doesn't look interrupt safe!
394 (setf (mutex-%owner mutex) nil)
395 (with-lutex-address (queue-lutex-address (waitqueue-lutex queue))
396 (with-lutex-address (mutex-lutex-address (mutex-lutex mutex))
397 (%lutex-wait queue-lutex-address mutex-lutex-address)))
398 (setf (mutex-%owner mutex) owner))
401 (let ((me *current-thread*))
402 ;; FIXME: should we do something to ensure that the result
403 ;; of this setf is visible to all CPUs?
404 (setf (waitqueue-data queue) me)
405 (release-mutex mutex)
406 ;; Now we go to sleep using futex-wait. If anyone else
407 ;; manages to grab MUTEX and call CONDITION-NOTIFY during
408 ;; this comment, it will change queue->data, and so
409 ;; futex-wait returns immediately instead of sleeping.
410 ;; Ergo, no lost wakeup. We may get spurious wakeups,
412 (multiple-value-bind (to-sec to-usec) (decode-timeout nil)
413 (when (= 1 (with-pinned-objects (queue me)
414 (futex-wait (waitqueue-data-address queue)
415 (get-lisp-obj-address me)
416 (or to-sec -1) ;; our way if saying "no timeout"
419 ;; If we are interrupted while waiting, we should do these things
420 ;; before returning. Ideally, in the case of an unhandled signal,
421 ;; we should do them before entering the debugger, but this is
422 ;; better than nothing.
423 (get-mutex mutex owner))))
425 (defun condition-notify (queue &optional (n 1))
427 "Notify N threads waiting on QUEUE."
428 #!-sb-thread (declare (ignore queue n))
429 #!-sb-thread (error "Not supported in unithread builds.")
431 (declare (type (and fixnum (integer 1)) n))
432 (/show0 "Entering CONDITION-NOTIFY")
436 (with-lutex-address (lutex (waitqueue-lutex queue))
437 (%lutex-wake lutex n))
438 ;; no problem if >1 thread notifies during the comment in
439 ;; condition-wait: as long as the value in queue-data isn't the
440 ;; waiting thread's id, it matters not what it is
441 ;; XXX we should do something to ensure that the result of this setf
442 ;; is visible to all CPUs
444 (let ((me *current-thread*))
446 (setf (waitqueue-data queue) me)
447 (with-pinned-objects (queue)
448 (futex-wake (waitqueue-data-address queue) n))))))
450 (defun condition-broadcast (queue)
452 "Notify all threads waiting on QUEUE."
453 (condition-notify queue
454 ;; On a 64-bit platform truncating M-P-F to an int results
455 ;; in -1, which wakes up only one thread.
457 most-positive-fixnum)))
461 (defstruct (semaphore (:constructor %make-semaphore (name %count)))
463 "Semaphore type. The fact that a SEMAPHORE is a STRUCTURE-OBJECT
464 should be considered an implementation detail, and may change in the
466 (name nil :type (or null simple-string))
467 (%count 0 :type (integer 0))
469 (queue (make-waitqueue)))
471 (setf (fdocumentation 'semaphore-name 'function)
472 "The name of the semaphore INSTANCE. Setfable.")
474 (declaim (inline semaphore-count))
475 (defun semaphore-count (instance)
476 "Returns the current count of the semaphore INSTANCE."
477 (semaphore-%count instance))
479 (defun make-semaphore (&key name (count 0))
481 "Create a semaphore with the supplied COUNT and NAME."
482 (%make-semaphore name count))
484 (defun wait-on-semaphore (semaphore)
486 "Decrement the count of SEMAPHORE if the count would not be
487 negative. Else blocks until the semaphore can be decremented."
488 ;; a more direct implementation based directly on futexes should be
490 (with-mutex ((semaphore-mutex semaphore))
491 (loop until (> (semaphore-%count semaphore) 0)
492 do (condition-wait (semaphore-queue semaphore) (semaphore-mutex semaphore))
493 finally (decf (semaphore-%count semaphore)))))
495 (defun signal-semaphore (semaphore &optional (n 1))
497 "Increment the count of SEMAPHORE by N. If there are threads waiting
498 on this semaphore, then N of them is woken up."
499 (declare (type (integer 1) n))
500 (with-mutex ((semaphore-mutex semaphore))
501 (when (= n (incf (semaphore-%count semaphore) n))
502 (condition-notify (semaphore-queue semaphore) n))))
504 ;;;; job control, independent listeners
507 (lock (make-mutex :name "session lock"))
509 (interactive-threads nil)
510 (interactive-threads-queue (make-waitqueue)))
512 (defvar *session* nil)
514 ;;; The debugger itself tries to acquire the session lock, don't let
515 ;;; funny situations (like getting a sigint while holding the session
516 ;;; lock) occur. At the same time we need to allow interrupts while
517 ;;; *waiting* for the session lock for things like GET-FOREGROUND
518 ;;; to be interruptible.
520 ;;; Take care: we sometimes need to obtain the session lock while holding
521 ;;; on to *ALL-THREADS-LOCK*, so we must _never_ obtain it _after_ getting
522 ;;; a session lock! (Deadlock risk.)
524 ;;; FIXME: It would be good to have ordered locks to ensure invariants like
526 (defmacro with-session-lock ((session) &body body)
527 `(with-system-mutex ((session-lock ,session) :allow-with-interrupts t)
530 (defun new-session ()
531 (make-session :threads (list *current-thread*)
532 :interactive-threads (list *current-thread*)))
534 (defun init-job-control ()
535 (/show0 "Entering INIT-JOB-CONTROL")
536 (setf *session* (new-session))
537 (/show0 "Exiting INIT-JOB-CONTROL"))
539 (defun %delete-thread-from-session (thread session)
540 (with-session-lock (session)
541 (setf (session-threads session)
542 (delete thread (session-threads session))
543 (session-interactive-threads session)
544 (delete thread (session-interactive-threads session)))))
546 (defun call-with-new-session (fn)
547 (%delete-thread-from-session *current-thread* *session*)
548 (let ((*session* (new-session)))
551 (defmacro with-new-session (args &body forms)
552 (declare (ignore args)) ;for extensibility
553 (sb!int:with-unique-names (fb-name)
554 `(labels ((,fb-name () ,@forms))
555 (call-with-new-session (function ,fb-name)))))
557 ;;; Remove thread from its session, if it has one.
559 (defun handle-thread-exit (thread)
560 (/show0 "HANDLING THREAD EXIT")
561 ;; We're going down, can't handle interrupts sanely anymore.
562 ;; GC remains enabled.
563 (block-deferrable-signals)
565 (with-all-threads-lock
566 (setf (thread-%alive-p thread) nil)
567 (setf (thread-os-thread thread) nil)
568 (setq *all-threads* (delete thread *all-threads*))
570 (%delete-thread-from-session thread *session*)))
573 (/show0 "FREEING MUTEX LUTEX")
574 (with-lutex-address (lutex (mutex-lutex (thread-interruptions-lock thread)))
575 (%lutex-destroy lutex))))
577 (defun terminate-session ()
579 "Kill all threads in session except for this one. Does nothing if current
580 thread is not the foreground thread."
581 ;; FIXME: threads created in other threads may escape termination
583 (with-session-lock (*session*)
584 (and (eq *current-thread*
585 (car (session-interactive-threads *session*)))
586 (session-threads *session*)))))
587 ;; do the kill after dropping the mutex; unwind forms in dying
588 ;; threads may want to do session things
589 (dolist (thread to-kill)
590 (unless (eq thread *current-thread*)
591 ;; terminate the thread but don't be surprised if it has
592 ;; exited in the meantime
593 (handler-case (terminate-thread thread)
594 (interrupt-thread-error ()))))))
596 ;;; called from top of invoke-debugger
597 (defun debugger-wait-until-foreground-thread (stream)
598 "Returns T if thread had been running in background, NIL if it was
600 (declare (ignore stream))
604 (with-session-lock (*session*)
605 (not (member *current-thread*
606 (session-interactive-threads *session*))))
609 (defun get-foreground ()
612 (let ((was-foreground t))
614 (/show0 "Looping in GET-FOREGROUND")
615 (with-session-lock (*session*)
616 (let ((int-t (session-interactive-threads *session*)))
617 (when (eq (car int-t) *current-thread*)
618 (unless was-foreground
619 (format *query-io* "Resuming thread ~A~%" *current-thread*))
620 (return-from get-foreground t))
621 (setf was-foreground nil)
622 (unless (member *current-thread* int-t)
623 (setf (cdr (last int-t))
624 (list *current-thread*)))
626 (session-interactive-threads-queue *session*)
627 (session-lock *session*)))))))
629 (defun release-foreground (&optional next)
631 "Background this thread. If NEXT is supplied, arrange for it to
632 have the foreground next."
633 #!-sb-thread (declare (ignore next))
636 (with-session-lock (*session*)
637 (when (rest (session-interactive-threads *session*))
638 (setf (session-interactive-threads *session*)
639 (delete *current-thread* (session-interactive-threads *session*))))
641 (setf (session-interactive-threads *session*)
643 (delete next (session-interactive-threads *session*)))))
644 (condition-broadcast (session-interactive-threads-queue *session*))))
646 (defun foreground-thread ()
647 (car (session-interactive-threads *session*)))
649 (defun make-listener-thread (tty-name)
650 (assert (probe-file tty-name))
651 (let* ((in (sb!unix:unix-open (namestring tty-name) sb!unix:o_rdwr #o666))
652 (out (sb!unix:unix-dup in))
653 (err (sb!unix:unix-dup in)))
654 (labels ((thread-repl ()
655 (sb!unix::unix-setsid)
656 (let* ((sb!impl::*stdin*
657 (make-fd-stream in :input t :buffering :line
660 (make-fd-stream out :output t :buffering :line
663 (make-fd-stream err :output t :buffering :line
666 (make-fd-stream err :input t :output t
669 (sb!impl::*descriptor-handlers* nil))
672 (sb!impl::toplevel-repl nil)
673 (sb!int:flush-standard-output-streams))))))
674 (make-thread #'thread-repl))))
678 (defun make-thread (function &key name)
680 "Create a new thread of NAME that runs FUNCTION. When the function
681 returns the thread exits. The return values of FUNCTION are kept
682 around and can be retrieved by JOIN-THREAD."
683 #!-sb-thread (declare (ignore function name))
684 #!-sb-thread (error "Not supported in unithread builds.")
686 (let* ((thread (%make-thread :name name))
687 (setup-sem (make-semaphore :name "Thread setup semaphore"))
688 (real-function (coerce function 'function))
691 ;; In time we'll move some of the binding presently done in C
694 ;; KLUDGE: Here we have a magic list of variables that are
695 ;; not thread-safe for one reason or another. As people
696 ;; report problems with the thread safety of certain
697 ;; variables, (e.g. "*print-case* in multiple threads
698 ;; broken", sbcl-devel 2006-07-14), we add a few more
699 ;; bindings here. The Right Thing is probably some variant
700 ;; of Allegro's *cl-default-special-bindings*, as that is at
701 ;; least accessible to users to secure their own libraries.
703 (let* ((*current-thread* thread)
704 (*restart-clusters* nil)
705 (*handler-clusters* (sb!kernel::initial-handler-clusters))
706 (*condition-restarts* nil)
707 (sb!impl::*deadline* nil)
708 (sb!impl::*step-out* nil)
709 ;; internal printer variables
710 (sb!impl::*previous-case* nil)
711 (sb!impl::*previous-readtable-case* nil)
713 (sb!impl::*merge-sort-temp-vector* empty)
714 (sb!impl::*zap-array-data-temp* empty)
715 (sb!impl::*internal-symbol-output-fun* nil)
716 (sb!impl::*descriptor-handlers* nil)) ; serve-event
718 (setf sb!vm:*alloc-signal* *default-alloc-signal*)
719 (setf (thread-os-thread thread) (current-thread-os-thread))
720 (with-mutex ((thread-result-lock thread))
721 (with-all-threads-lock
722 (push thread *all-threads*))
723 (with-session-lock (*session*)
724 (push thread (session-threads *session*)))
725 (setf (thread-%alive-p thread) t)
726 (signal-semaphore setup-sem)
727 ;; can't use handling-end-of-the-world, because that flushes
728 ;; output streams, and we don't necessarily have any (or we
729 ;; could be sharing them)
730 (catch 'sb!impl::toplevel-catcher
731 (catch 'sb!impl::%end-of-the-world
735 "~~@<Terminate this thread (~A)~~@:>"
739 ;; now that most things have a chance to
740 ;; work properly without messing up other
741 ;; threads, it's time to enable signals
742 (sb!unix::reset-signal-mask)
743 (setf (thread-result thread)
746 (funcall real-function)))))
747 (handle-thread-exit thread)))))))
749 ;; Keep INITIAL-FUNCTION pinned until the child thread is
750 ;; initialized properly.
751 (with-pinned-objects (initial-function)
754 (get-lisp-obj-address initial-function))))
755 (when (zerop os-thread)
756 (error "Can't create a new thread"))
757 (wait-on-semaphore setup-sem)
760 (define-condition join-thread-error (error)
761 ((thread :reader join-thread-error-thread :initarg :thread))
763 (:documentation "Joining thread failed.")
764 (:report (lambda (c s)
765 (format s "Joining thread failed: thread ~A ~
766 has not returned normally."
767 (join-thread-error-thread c)))))
770 (setf (fdocumentation 'join-thread-error-thread 'function)
771 "The thread that we failed to join.")
773 (defun join-thread (thread &key (default nil defaultp))
775 "Suspend current thread until THREAD exits. Returns the result
776 values of the thread function. If the thread does not exit normally,
777 return DEFAULT if given or else signal JOIN-THREAD-ERROR."
778 (with-mutex ((thread-result-lock thread))
779 (cond ((car (thread-result thread))
780 (values-list (cdr (thread-result thread))))
784 (error 'join-thread-error :thread thread)))))
786 (defun destroy-thread (thread)
788 "Deprecated. Same as TERMINATE-THREAD."
789 (terminate-thread thread))
791 (define-condition interrupt-thread-error (error)
792 ((thread :reader interrupt-thread-error-thread :initarg :thread))
794 (:documentation "Interrupting thread failed.")
795 (:report (lambda (c s)
796 (format s "Interrupt thread failed: thread ~A has exited."
797 (interrupt-thread-error-thread c)))))
800 (setf (fdocumentation 'interrupt-thread-error-thread 'function)
801 "The thread that was not interrupted.")
803 (defmacro with-interruptions-lock ((thread) &body body)
804 `(with-system-mutex ((thread-interruptions-lock ,thread))
807 ;; Called from the signal handler in C.
808 (defun run-interruption ()
811 (let ((interruption (with-interruptions-lock (*current-thread*)
812 (pop (thread-interruptions *current-thread*)))))
815 (funcall interruption))
818 ;; The order of interrupt execution is peculiar. If thread A
819 ;; interrupts thread B with I1, I2 and B for some reason receives I1
820 ;; when FUN2 is already on the list, then it is FUN2 that gets to run
821 ;; first. But when FUN2 is run SIG_INTERRUPT_THREAD is enabled again
822 ;; and I2 hits pretty soon in FUN2 and run FUN1. This is of course
823 ;; just one scenario, and the order of thread interrupt execution is
825 (defun interrupt-thread (thread function)
827 "Interrupt the live THREAD and make it run FUNCTION. A moderate
828 degree of care is expected for use of INTERRUPT-THREAD, due to its
829 nature: if you interrupt a thread that was holding important locks
830 then do something that turns out to need those locks, you probably
831 won't like the effect."
832 #!-sb-thread (declare (ignore thread))
834 (with-interrupt-bindings
835 (with-interrupts (funcall function)))
837 (if (eq thread *current-thread*)
838 (with-interrupt-bindings
839 (with-interrupts (funcall function)))
840 (let ((os-thread (thread-os-thread thread)))
841 (cond ((not os-thread)
842 (error 'interrupt-thread-error :thread thread))
844 (with-interruptions-lock (thread)
845 (push function (thread-interruptions thread)))
846 (when (minusp (signal-interrupt-thread os-thread))
847 (error 'interrupt-thread-error :thread thread)))))))
849 (defun terminate-thread (thread)
851 "Terminate the thread identified by THREAD, by causing it to run
852 SB-EXT:QUIT - the usual cleanup forms will be evaluated"
853 (interrupt-thread thread 'sb!ext:quit))
855 (define-alien-routine "thread_yield" int)
858 (setf (fdocumentation 'thread-yield 'function)
859 "Yield the processor to other threads.")
861 ;;; internal use only. If you think you need to use these, either you
862 ;;; are an SBCL developer, are doing something that you should discuss
863 ;;; with an SBCL developer first, or are doing something that you
864 ;;; should probably discuss with a professional psychiatrist first
867 (defun %thread-sap (thread)
868 (let ((thread-sap (alien-sap (extern-alien "all_threads" (* t))))
869 (target (thread-os-thread thread)))
871 (when (sap= thread-sap (int-sap 0)) (return nil))
872 (let ((os-thread (sap-ref-word thread-sap
873 (* sb!vm:n-word-bytes
874 sb!vm::thread-os-thread-slot))))
875 (when (= os-thread target) (return thread-sap))
877 (sap-ref-sap thread-sap (* sb!vm:n-word-bytes
878 sb!vm::thread-next-slot)))))))
880 (defun %symbol-value-in-thread (symbol thread)
882 ;; Prevent the dead from dying completely while we look for the TLS area...
883 (with-all-threads-lock
884 (if (thread-alive-p thread)
885 (let* ((offset (* sb!vm:n-word-bytes (sb!vm::symbol-tls-index symbol)))
886 (tl-val (sap-ref-word (%thread-sap thread) offset)))
887 (if (eql tl-val sb!vm::no-tls-value-marker-widetag)
889 (return-from %symbol-value-in-thread (values (make-lisp-obj tl-val) t))))
890 (return-from %symbol-value-in-thread (values nil nil))))
892 (error "Cannot read thread-local symbol value: ~S unbound in ~S" symbol thread)))
894 (defun %set-symbol-value-in-thread (symbol thread value)
896 (with-pinned-objects (value)
897 ;; Prevent the dead from dying completely while we look for the TLS area...
898 (with-all-threads-lock
899 (if (thread-alive-p thread)
900 (let* ((offset (* sb!vm:n-word-bytes (sb!vm::symbol-tls-index symbol)))
901 (sap (%thread-sap thread))
902 (tl-val (sap-ref-word sap offset)))
903 (if (eql tl-val sb!vm::no-tls-value-marker-widetag)
905 (setf (sap-ref-word sap offset) (get-lisp-obj-address value)))
906 (return-from %set-symbol-value-in-thread (values value t)))
907 (return-from %set-symbol-value-in-thread (values nil nil)))))
909 (error "Cannot set thread-local symbol value: ~S unbound in ~S" symbol thread))))
911 (defun sb!vm::locked-symbol-global-value-add (symbol-name delta)
912 (sb!vm::locked-symbol-global-value-add symbol-name delta))
916 (defun thread-stepping ()
918 (sap-ref-word (current-thread-sap)
919 (* sb!vm::thread-stepping-slot sb!vm:n-word-bytes))))
921 (defun (setf thread-stepping) (value)
922 (setf (sap-ref-word (current-thread-sap)
923 (* sb!vm::thread-stepping-slot sb!vm:n-word-bytes))
924 (get-lisp-obj-address value)))