X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcode%2Fexhaust.lisp;h=a96112b2a82e7b6269144bf9d0a54bc4ba4a4a96;hb=0b5119848b6b8713e473fa669356645747e11dbd;hp=7c6ec727ab3c26f08c1bf9417178b5629b253224;hpb=94ea2b2082deaa0331dfb66fa6af6ca12dd8dc83;p=sbcl.git diff --git a/src/code/exhaust.lisp b/src/code/exhaust.lisp index 7c6ec72..a96112b 100644 --- a/src/code/exhaust.lisp +++ b/src/code/exhaust.lisp @@ -12,10 +12,8 @@ (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-sap system-area-pointer) (protect-p sb!alien:int)) (defun protect-control-stack-guard-page (n) - (%protect-control-stack-guard-page - (sb!thread::thread-%sap sb!thread:*current-thread*) (if n 1 0))) + (%protect-control-stack-guard-page (if n 1 0)))