X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fos.h;h=a471ab6594679e0eca19b12eb85b19ede78847d1;hb=182b1cc78309d1db9764a3e6a74d821109bbc096;hp=d71b819657537056bc3d4adccb43e040ad3c5cdc;hpb=baa0eaf21221dc564088c37b228c620c298aeaa1;p=sbcl.git diff --git a/src/runtime/os.h b/src/runtime/os.h index d71b819..a471ab6 100644 --- a/src/runtime/os.h +++ b/src/runtime/os.h @@ -144,17 +144,10 @@ sigset_t *os_context_sigmask_addr(os_context_t *context); /* These are not architecture-specific functions, but are instead * general utilities defined in terms of the architecture-specific * function os_validate(..) and os_invalidate(..). - * - * FIXME: os_reallocate(..) is complicated and seems no longer to be - * used for anything. Perhaps we could delete it? */ + */ extern os_vm_address_t os_allocate(os_vm_size_t len); -extern os_vm_address_t os_allocate_at(os_vm_address_t addr, os_vm_size_t len); -extern os_vm_address_t os_reallocate(os_vm_address_t addr, - os_vm_size_t old_len, - os_vm_size_t len); extern void os_deallocate(os_vm_address_t addr, os_vm_size_t len); - /* FIXME: The os_trunc_foo(..) and os_round_foo(..) macros here could * be functions. */ @@ -182,6 +175,6 @@ int os_get_errno(void); /* Return an absolute path to the runtime executable, or NULL if this * information is unavailable. If a non-null pathname is returned, it * must be 'free'd. */ -extern char *os_get_runtime_executable_path(); +extern char *os_get_runtime_executable_path(void); #endif