X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fundefineds.h;h=c8ec517b12fbb92ef766908f91faac09e6d4c86e;hb=7f0f521aa3f6b45259c5dfd5f7f11adcd1a7cac6;hp=4211971cb877c8286681b7f135e2c185332796c1;hpb=e88f9c7fd830938e1261cc424437905fb50179ae;p=sbcl.git diff --git a/src/runtime/undefineds.h b/src/runtime/undefineds.h index 4211971..c8ec517 100644 --- a/src/runtime/undefineds.h +++ b/src/runtime/undefineds.h @@ -1,5 +1,21 @@ /* * routines that must be linked into the core for Lisp to work + * + * but note this is only the BSD version, as per the FIXME + * + * FIXME: It's tedious and error-prone having to edit both this file and + * the analogous ldso-stubs.S file when we change the references to + * functions, enough so that it would probably be good to rewrite + * both files in terms of a shared list of function names. + * E.g. the function names could be in shared-function-names.h + * SHARED_FUNCTION(cos) + * SHARED_FUNCTION(sinh) + * SHARED_FUNCTION(strlen) + * etc. and the per-OS files could look like + * #define SHARED_FUNCTION(f) .... + * #include "shared-function-names.h" + * ...then going on to do OS-specific things + * "Once and only once." */ /* @@ -12,7 +28,7 @@ * provided with absolutely no warranty. See the COPYING and CREDITS * files for more information. */ - + /* Pick up all the syscalls. */ F(accept) F(access) @@ -56,9 +72,6 @@ F(getegid) F(geteuid) F(getgid) F(getgroups) -#if !defined (SOLARIS) || defined(SOLARIS25) -F(gethostid) -#endif F(gethostname) F(getitimer) #if !defined(hpux) && !defined(SVR4) || defined(SOLARIS25) @@ -132,15 +145,13 @@ F(setrlimit) F(setsockopt) F(settimeofday) F(shutdown) -#ifndef SVR4 -F(sigblock) -#endif -F(sigpause) -#if !defined(ibmrt) && !defined(hpux) && !defined(SVR4) && !defined(__i386__) +#if !defined(hpux) && !defined(SVR4) && !defined(__i386__) F(sigreturn) #endif -#if !defined(SVR4) && !defined(__FreeBSD__) && !defined(__OpenBSD__) +#if !defined(SVR4) F(sigsetmask) +#endif +#if !defined(SVR4) && !defined(__FreeBSD__) && !defined(__OpenBSD__) F(sigstack) F(sigvec) #endif @@ -234,6 +245,9 @@ F(sqrt) #endif F(hypot) +/* string things */ +F(strlen) + /* network support */ F(gethostbyname) F(gethostbyaddr)