X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fosf1-os.c;h=f2a40b7a126ccb91c16e1df5cfb701cefa5516a7;hb=b43b6e70ce48d959d77f7f56be9d11aa101fdd7d;hp=e6f704c5648f9fe4cb3566d0e8f870c8a085ed10;hpb=79cc569a97e444389350ea3f5b1017374fe16bec;p=sbcl.git diff --git a/src/runtime/osf1-os.c b/src/runtime/osf1-os.c index e6f704c..f2a40b7 100644 --- a/src/runtime/osf1-os.c +++ b/src/runtime/osf1-os.c @@ -51,7 +51,8 @@ size_t os_vm_page_size; -void os_init(void) +void +os_init(char *argv[], char *envp[]) { os_vm_page_size = getpagesize(); } @@ -88,7 +89,7 @@ os_map(int fd, int offset, os_vm_address_t addr, os_vm_size_t len) if (addr == MAP_FAILED) { perror("mmap"); - lose("unexpected mmap(..) failure"); + lose("unexpected mmap(..) failure\n"); } return addr; @@ -146,3 +147,8 @@ os_install_interrupt_handlers(void) sigsegv_handler); } +char * +os_get_runtime_executable_path() +{ + return NULL; +}