Skip to content

Commit 2ed0723

Browse files
committed
%WITH-OTHER-THREADS-SUPENDED debugging macro.
1 parent 756257e commit 2ed0723

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Sys/misc-features.lisp

+13
Original file line numberDiff line numberDiff line change
@@ -652,4 +652,17 @@
652652
(setf (elt package-vector (+ (* index 3) 2)) 1)
653653
(setf (elt package-vector (+ (* index 3) 2)) 0))))
654654

655+
;;
656+
;; Suspend other Lisp threads execution. It is here
657+
;; mostly for debugging purposes.
658+
;;
659+
(defmacro %with-other-threads-suspended (&rest body)
660+
`(unwind-protect
661+
(progn
662+
(cl::suspend-other-threads)
663+
(progn
664+
,@body))
665+
(cl::resume-other-threads)))
666+
667+
(export 'cl::%with-other-threads-suspended)
655668

0 commit comments

Comments
 (0)