;;;; Testing signal handling in non-lisp threads. ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; While most of SBCL is derived from the CMU CL system, the test ;;;; files (like this one) were written from scratch after the fork ;;;; from CMU CL. ;;;; ;;;; This software is in the public domain and is provided with ;;;; absolutely no warranty. See the COPYING and CREDITS files for ;;;; more information. #+(or :win32 (not :sb-thread)) (sb-ext:exit :code 104) (use-package :sb-alien) (defun run (program &rest arguments) (let* ((proc nil) (output (with-output-to-string (s) (setf proc (run-program program arguments :output s))))) (unless (zerop (process-exit-code proc)) (error "Bad exit code: ~S~%Output:~% ~S" (process-exit-code proc) output)) output)) (run "/bin/sh" "run-compiler.sh" "-sbcl-pic" "-sbcl-shared" "-O3" "-I" "../src/runtime/" "kill-non-lisp-thread.c" "-o" "kill-non-lisp-thread.so") (load-shared-object (truename "kill-non-lisp-thread.so")) (define-alien-routine kill-non-lisp-thread void) (with-test (:name :kill-non-lisp-thread) (let ((receivedp nil)) (push (lambda () (setq receivedp t)) (sb-thread::thread-interruptions sb-thread:*current-thread*)) #+sb-thruption ;; On sb-thruption builds, the usual resignalling of SIGPIPE will ;; work without problems, but the signal handler won't ordinarily ;; think that there's anything to be done. Since we're poking at ;; INTERRUPT-THREAD internals anyway, let's help it along. (setf sb-unix::*thruption-pending* t) (kill-non-lisp-thread) (sleep 1) (assert receivedp))) (delete-file "kill-non-lisp-thread.so")