X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fexhaust.lisp;h=a96112b2a82e7b6269144bf9d0a54bc4ba4a4a96;hb=25fe91bf63fd473d9316675b0e0ca9be0079e9eb;hp=e3ce6ef82e853540c5273cf1fe2f0d454ce0895c;hpb=dc5e3163fe667e2629c7769aa8cf2e501eeeefa6;p=sbcl.git diff --git a/src/code/exhaust.lisp b/src/code/exhaust.lisp index e3ce6ef..a96112b 100644 --- a/src/code/exhaust.lisp +++ b/src/code/exhaust.lisp @@ -11,6 +11,9 @@ ;;;; files for more information. (in-package "SB!KERNEL") -(define-alien-routine "protect_control_stack_guard_page" - sb!alien:int (protect-p sb!alien:int)) - +(define-alien-routine ("protect_control_stack_guard_page" + %protect-control-stack-guard-page) + sb!alien:void + (protect-p sb!alien:int)) +(defun protect-control-stack-guard-page (n) + (%protect-control-stack-guard-page (if n 1 0)))