X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fx86-arch.c;h=d00f26be7d6d22c359a5cccbf1965033a4ca2c7f;hb=f7808fb1c49b729d00580321b3f8457ce4b84cf4;hp=f85ed070853336910b58ae6bf1c955a03dbe4a49;hpb=e6f4c7523aa628ece995ee01879d3fb90eed6d9f;p=sbcl.git diff --git a/src/runtime/x86-arch.c b/src/runtime/x86-arch.c index f85ed07..d00f26b 100644 --- a/src/runtime/x86-arch.c +++ b/src/runtime/x86-arch.c @@ -18,7 +18,6 @@ #include "os.h" #include "arch.h" #include "lispregs.h" -#include "signal.h" #include "alloc.h" #include "interrupt.h" #include "interr.h" @@ -38,8 +37,6 @@ #define BREAKPOINT_WIDTH 2 #endif -unsigned long fast_random_state = 1; - void arch_init(void) {} @@ -78,7 +75,7 @@ context_eflags_addr(os_context_t *context) #elif defined __NetBSD__ return &(context->uc_mcontext.__gregs[_REG_EFL]); #elif defined LISP_FEATURE_WIN32 - return (int *)&context->EFlags; + return (int *)&context->win32_context->EFlags; #else #error unsupported OS #endif