1 ;;;; Testing signal handling in non-lisp threads.
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; While most of SBCL is derived from the CMU CL system, the test
7 ;;;; files (like this one) were written from scratch after the fork
10 ;;;; This software is in the public domain and is provided with
11 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
12 ;;;; more information.
15 (sb-ext:exit :code 104)
17 (use-package :sb-alien)
19 (defun run (program &rest arguments)
22 (with-output-to-string (s)
23 (setf proc (run-program program arguments
24 :environment (test-util::test-env)
26 (unless (zerop (process-exit-code proc))
27 (error "Bad exit code: ~S~%Output:~% ~S"
28 (process-exit-code proc)
32 (run "/bin/sh" "run-compiler.sh" "-sbcl-pic" "-sbcl-shared"
33 "-O3" "-I" "../src/runtime/"
34 "kill-non-lisp-thread.c" "-o" "kill-non-lisp-thread.so")
36 (load-shared-object (truename "kill-non-lisp-thread.so"))
38 (define-alien-routine kill-non-lisp-thread void)
40 (with-test (:name :kill-non-lisp-thread)
41 (let ((receivedp nil))
44 (sb-thread::thread-interruptions sb-thread:*current-thread*))
46 ;; On sb-thruption builds, the usual resignalling of SIGPIPE will
47 ;; work without problems, but the signal handler won't ordinarily
48 ;; think that there's anything to be done. Since we're poking at
49 ;; INTERRUPT-THREAD internals anyway, let's help it along.
50 (setf sb-unix::*thruption-pending* t)
51 (kill-non-lisp-thread)
55 (delete-file "kill-non-lisp-thread.so")