X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fexhaust.lisp;h=98fa6bc66a44b420bf0446716ac5229e13d227a3;hb=9a82b26397de09d67372f34158090c2284fd1411;hp=6724c66c65b6dbc97c54d9928ed6d9730a059ab8;hpb=d8e682fdfb7e8ba067e15aea0f3d1f8d37ca9eb1;p=sbcl.git diff --git a/src/code/exhaust.lisp b/src/code/exhaust.lisp index 6724c66..98fa6bc 100644 --- a/src/code/exhaust.lisp +++ b/src/code/exhaust.lisp @@ -12,13 +12,9 @@ (in-package "SB!KERNEL") (define-alien-routine ("protect_control_stack_guard_page" - %protect-control-stack-guard-page) + %protect-control-stack-guard-page) sb!alien:void - (thread-id #!+sb-thread sb!alien:unsigned-long - #!-sb-thread sb!alien:int) - (protect-p sb!alien:int)) + (protect-p sb!alien:int) + (thread sb!alien:int)) (defun protect-control-stack-guard-page (n) - (%protect-control-stack-guard-page - (sb!thread:current-thread-id) (if n 1 0))) - - + (%protect-control-stack-guard-page (if n 1 0) 0))