X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fruntime.c;h=159d7f62fa9d6f98893ba3fad662ffac544383b2;hb=6127c0b282bb6d7fa6d225ee91d0a601d9b82360;hp=6c2df4011bb9e39f8fb941e6c9ae363cfa8bd998;hpb=40b949acce1ac108b62d52d13eb2a09454f8db33;p=sbcl.git diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 6c2df40..159d7f6 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -70,6 +70,10 @@ #define SBCL_HOME "/usr/local/lib/sbcl/" #endif +#ifdef LISP_FEATURE_HPUX +extern void *return_from_lisp_stub; +#endif + /* SIGINT handler that invokes the monitor (for when Lisp isn't up to it) */ static void @@ -426,6 +430,10 @@ main(int argc, char *argv[], char *envp[]) if (initial_function == NIL) { lose("couldn't find initial function\n"); } +#ifdef LISP_FEATURE_HPUX + return_from_lisp_stub = (void *) ((char *)*((unsigned long *) + ((char *)initial_function - 1)) + 23); +#endif gc_initialize_pointers();