projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a9b33f
)
Avoid a reader error in threads.pure.lisp with non-threaded sbcl.
author
Joshua Elsasser
<joshua@elsasser.org>
Wed, 23 Nov 2011 01:15:03 +0000
(17:15 -0800)
committer
Joshua Elsasser
<joshua@elsasser.org>
Wed, 23 Nov 2011 01:15:03 +0000
(17:15 -0800)
tests/threads.pure.lisp
patch
|
blob
|
history
diff --git
a/tests/threads.pure.lisp
b/tests/threads.pure.lisp
index
fb21822
..
1545237
100644
(file)
--- a/
tests/threads.pure.lisp
+++ b/
tests/threads.pure.lisp
@@
-515,6
+515,7
@@
(signal-semaphore sem))
;; KLUDGE: Prevent interrupts after this point from
;; unwinding us, so that we can reason about the counts.
+ #+sb-thread
(sb-thread::block-deferrable-signals))))))
(let* ((threads (loop for i from 1 upto 100
collect (make-thread #'critical :name (format nil "T~A" i))))