X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tools-for-build%2Fgrovel-headers.c;h=c5de8e8caa54bbe89a88d4b0172bfb8a949590ad;hb=26e8f33d8639e4de75e59e3aa30bbd7478d51a69;hp=169a7199831d9be77b9698ad249677ce4b75ea87;hpb=fdf46e7bd7aba9b5c8af629fdb2692d9b33b9207;p=sbcl.git diff --git a/tools-for-build/grovel-headers.c b/tools-for-build/grovel-headers.c index 169a719..c5de8e8 100644 --- a/tools-for-build/grovel-headers.c +++ b/tools-for-build/grovel-headers.c @@ -19,11 +19,11 @@ */ #include +#include #include #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include - #include #include #else #include @@ -31,8 +31,8 @@ #include #include #ifdef __APPLE_CC__ - #include "../src/runtime/ppc-darwin-dlshim.h" - #include "../src/runtime/ppc-darwin-langinfo.h" + #include "../src/runtime/darwin-dlshim.h" + #include "../src/runtime/darwin-langinfo.h" #else #include #include @@ -51,18 +51,18 @@ printf("(define-alien-type " lispname " (%s %d))\n", (((foo=-1)<0) ? "sb!alien:signed" : "unsigned"), (8 * (sizeof foo))); } void -defconstant(char* lisp_name, long unix_number) +defconstant(char* lisp_name, unsigned long unix_number) { - printf("(defconstant %s %ld) ; #x%lx\n", + printf("(defconstant %s %lu) ; #x%lx\n", lisp_name, unix_number, unix_number); } -void deferrno(char* lisp_name, long unix_number) +void deferrno(char* lisp_name, unsigned long unix_number) { defconstant(lisp_name, unix_number); } -void defsignal(char* lisp_name, long unix_number) +void defsignal(char* lisp_name, unsigned long unix_number) { defconstant(lisp_name, unix_number); } @@ -149,6 +149,28 @@ main(int argc, char *argv[]) defconstant ("CSIDL_FLAG_CREATE", CSIDL_FLAG_CREATE); defconstant ("CSIDL_FLAG_MASK", CSIDL_FLAG_MASK); + printf(";;; Exception codes\n"); + defconstant("+exception-access-violation+", EXCEPTION_ACCESS_VIOLATION); + defconstant("+exception-array-bounds-exceeded+", EXCEPTION_ARRAY_BOUNDS_EXCEEDED); + defconstant("+exception-breakpoint+", EXCEPTION_BREAKPOINT); + defconstant("+exception-datatype-misalignment+", EXCEPTION_DATATYPE_MISALIGNMENT); + defconstant("+exception-flt-denormal-operand+", EXCEPTION_FLT_DENORMAL_OPERAND); + defconstant("+exception-flt-divide-by-zero+", EXCEPTION_FLT_DIVIDE_BY_ZERO); + defconstant("+exception-flt-inexact-result+", EXCEPTION_FLT_INEXACT_RESULT); + defconstant("+exception-flt-invalid-operation+", EXCEPTION_FLT_INVALID_OPERATION); + defconstant("+exception-flt-overflow+", EXCEPTION_FLT_OVERFLOW); + defconstant("+exception-flt-stack-check+", EXCEPTION_FLT_STACK_CHECK); + defconstant("+exception-flt-underflow+", EXCEPTION_FLT_UNDERFLOW); + defconstant("+exception-illegal-instruction+", EXCEPTION_ILLEGAL_INSTRUCTION); + defconstant("+exception-in-page-error+", EXCEPTION_IN_PAGE_ERROR); + defconstant("+exception-int-divide-by-zero+", EXCEPTION_INT_DIVIDE_BY_ZERO); + defconstant("+exception-int-overflow+", EXCEPTION_INT_OVERFLOW); + defconstant("+exception-invalid-disposition+", EXCEPTION_INVALID_DISPOSITION); + defconstant("+exception-noncontinuable-exception+", EXCEPTION_NONCONTINUABLE_EXCEPTION); + defconstant("+exception-priv-instruction+", EXCEPTION_PRIV_INSTRUCTION); + defconstant("+exception-single-step+", EXCEPTION_SINGLE_STEP); + defconstant("+exception-stack-overflow+", EXCEPTION_STACK_OVERFLOW); + printf(";;; FormatMessage\n"); defconstant ("FORMAT_MESSAGE_ALLOCATE_BUFFER", FORMAT_MESSAGE_ALLOCATE_BUFFER); @@ -158,11 +180,17 @@ main(int argc, char *argv[]) defconstant ("ERROR_ENVVAR_NOT_FOUND", ERROR_ENVVAR_NOT_FOUND); + printf(";;; GetComputerName\n"); + + defconstant ("MAX_COMPUTERNAME_LENGTH", MAX_COMPUTERNAME_LENGTH); + defconstant ("ERROR_BUFFER_OVERFLOW", ERROR_BUFFER_OVERFLOW); + printf(";;; Windows Types\n"); DEFTYPE("int-ptr", INT_PTR); DEFTYPE("dword", DWORD); DEFTYPE("bool", BOOL); DEFTYPE("uint", UINT); + DEFTYPE("ulong", ULONG); /* FIXME: SB-UNIX and SB-WIN32 really need to be untangled. */ printf("(in-package \"SB!UNIX\")\n\n"); @@ -178,7 +206,7 @@ main(int argc, char *argv[]) defconstant("enoent", ENOENT); defconstant("eexist", EEXIST); - + defconstant("s-ifmt", S_IFMT); defconstant("s-ifdir", S_IFDIR); defconstant("s-ifreg", S_IFREG); @@ -213,6 +241,14 @@ main(int argc, char *argv[]) DEFTYPE("off-t", off_t); DEFTYPE("size-t", size_t); DEFTYPE("time-t", time_t); +#if defined(LISP_FEATURE_DARWIN) && defined(LISP_FEATURE_PPC) + /* No idea if this is an issue with PPC versions of OS X, or just + * 10.3, but at any rate on some Darwin versions suseconds_t seems + * to be missing... Similar kludge in sb-posix. */ + DEFTYPE("suseconds-t", int); +#else + DEFTYPE("suseconds-t", suseconds_t); +#endif DEFTYPE("uid-t", uid_t); printf("\n"); @@ -233,6 +269,10 @@ main(int argc, char *argv[]) defconstant("o_noctty", O_NOCTTY); defconstant("o_trunc", O_TRUNC); defconstant("o_append", O_APPEND); +#ifdef LISP_FEATURE_LARGEFILE + defconstant("o_largefile", O_LARGEFILE); +#endif + printf(";;;\n"); defconstant("s-ifmt", S_IFMT); defconstant("s-ififo", S_IFIFO); @@ -296,6 +336,9 @@ main(int argc, char *argv[]) printf("\n"); printf(";;; signals\n"); + defconstant("sig-dfl", (unsigned long)SIG_DFL); + defconstant("sig-ign", (unsigned long)SIG_IGN); + defsignal("sigalrm", SIGALRM); defsignal("sigbus", SIGBUS); defsignal("sigchld", SIGCHLD); @@ -314,11 +357,11 @@ main(int argc, char *argv[]) defsignal("sigprof", SIGPROF); defsignal("sigquit", SIGQUIT); defsignal("sigsegv", SIGSEGV); -#if ((defined LISP_FEATURE_LINUX) && (defined LISP_FEATURE_X86)) +#ifdef SIGSTKFLT defsignal("sigstkflt", SIGSTKFLT); #endif defsignal("sigstop", SIGSTOP); -#if (!((defined LISP_FEATURE_LINUX) && (defined LISP_FEATURE_X86))) +#ifdef SIGSYS defsignal("sigsys", SIGSYS); #endif defsignal("sigterm", SIGTERM); @@ -330,14 +373,40 @@ main(int argc, char *argv[]) defsignal("sigusr1", SIGUSR1); defsignal("sigusr2", SIGUSR2); defsignal("sigvtalrm", SIGVTALRM); -#ifdef LISP_FEATURE_SUNOS +#ifdef SIGWAITING defsignal("sigwaiting", SIGWAITING); #endif defsignal("sigwinch", SIGWINCH); -#ifndef LISP_FEATURE_HPUX +#ifndef SIGXCPU defsignal("sigxcpu", SIGXCPU); +#endif +#ifdef SIGXFSZ defsignal("sigxfsz", SIGXFSZ); #endif + + /* Floating point exception codes. Some of these + * are missing on Darwin. */ +#ifdef FPE_INTOVF + defconstant("fpe-intovf", FPE_INTOVF); +#else + defconstant("fpe-intovf", -1); +#endif +#ifdef FPE_INTDIV + defconstant("fpe-intdiv", FPE_INTDIV); +#else + defconstant("fpe-intdiv", -1); +#endif + defconstant("fpe-fltdiv", FPE_FLTDIV); + defconstant("fpe-fltovf", FPE_FLTOVF); + defconstant("fpe-fltund", FPE_FLTUND); + defconstant("fpe-fltres", FPE_FLTRES); + defconstant("fpe-fltinv", FPE_FLTINV); +#ifdef FPE_FLTSUB + defconstant("fpe-fltsub", FPE_FLTSUB); +#else + defconstant("fpe-fltsub", -1); +#endif + #endif // _WIN32 return 0; }