[Git][cmucl/cmucl][issue-307-dynamically-alloc-altstack] Initialize altstack on Darwin too
Raymond Toy pushed to branch issue-307-dynamically-alloc-altstack at cmucl / cmucl Commits: 1acd68dc by Raymond Toy at 2024-04-26T20:54:36-07:00 Initialize altstack on Darwin too Make CI happy by initializing altstack on darwin too. - - - - - 1 changed file: - src/lisp/Darwin-os.c Changes: ===================================== src/lisp/Darwin-os.c ===================================== @@ -107,10 +107,13 @@ os_init0(const char *argv[], const char *envp[]) void os_init(const char *argv[], const char *envp[]) { + extern char *altstack; os_vm_page_size = OS_VM_DEFAULT_PAGESIZE; #ifdef __ppc__ timebase_init(); #endif + + altstack = malloc(SIGNAL_STACK_SIZE); } View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/1acd68dcf71f04039cbf82b4... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/1acd68dcf71f04039cbf82b4... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)