X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tools-for-build%2Fgrovel-headers.c;h=43ce773f6a3bbd6d2312ffa68b4622ae8c100ade;hb=8052518d2db212aad944bfcaf554301c5272b81e;hp=ed6cfe67ae18f31a531ac4e4d7f04928b7a2218a;hpb=bd4f596b07e3783992e00eae88afdc05ebe7c6a6;p=sbcl.git diff --git a/tools-for-build/grovel-headers.c b/tools-for-build/grovel-headers.c index ed6cfe6..43ce773 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 @@ -47,6 +47,8 @@ #include "genesis/config.h" +#include "wrap.h" + #define DEFTYPE(lispname,cname) { cname foo; \ printf("(define-alien-type " lispname " (%s %d))\n", (((foo=-1)<0) ? "sb!alien:signed" : "unsigned"), (8 * (sizeof foo))); } @@ -150,13 +152,25 @@ main(int argc, char *argv[]) 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-underflow+", EXCEPTION_FLT_UNDERFLOW); defconstant("+exception-flt-overflow+", EXCEPTION_FLT_OVERFLOW); - defconstant("+exception-flt-inexact-result+", EXCEPTION_FLT_INEXACT_RESULT); - defconstant("+exception-flt-denormal-operand+", EXCEPTION_FLT_DENORMAL_OPERAND); 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"); @@ -205,6 +219,14 @@ main(int argc, char *argv[]) DEFTYPE("size-t", size_t); DEFTYPE("mode-t", mode_t); + DEFTYPE("wst-dev-t", wst_dev_t); + DEFTYPE("wst-off-t", wst_off_t); + DEFTYPE("wst-blksize-t", wst_blksize_t); + DEFTYPE("wst-blkcnt-t", wst_blkcnt_t); + DEFTYPE("wst-nlink-t", wst_nlink_t); + DEFTYPE("wst-uid-t", wst_uid_t); + DEFTYPE("wst-gid-t", wst_gid_t); + printf("\n"); #else printf("(in-package \"SB!ALIEN\")\n\n"); @@ -229,7 +251,22 @@ main(int argc, char *argv[]) DEFTYPE("off-t", off_t); DEFTYPE("size-t", size_t); DEFTYPE("time-t", time_t); +#if !defined(LISP_FEATURE_OS_PROVIDES_SUSECONDS_T) + /* Similar kludge in sb-posix. */ + DEFTYPE("suseconds-t", long); +#else + DEFTYPE("suseconds-t", suseconds_t); +#endif DEFTYPE("uid-t", uid_t); + printf(";; Types in src/runtime/wrap.h. See that file for explantion.\n"); + printf(";; Don't use these types for anything other than the stat wrapper.\n"); + DEFTYPE("wst-dev-t", wst_dev_t); + DEFTYPE("wst-off-t", wst_off_t); + DEFTYPE("wst-blksize-t", wst_blksize_t); + DEFTYPE("wst-blkcnt-t", wst_blkcnt_t); + DEFTYPE("wst-nlink-t", wst_nlink_t); + DEFTYPE("wst-uid-t", wst_uid_t); + DEFTYPE("wst-gid-t", wst_gid_t); printf("\n"); printf(";;; fcntl.h (or unistd.h on OpenBSD and NetBSD)\n"); @@ -249,6 +286,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); @@ -267,6 +308,7 @@ main(int argc, char *argv[]) deferrno("eintr", EINTR); deferrno("eio", EIO); deferrno("eexist", EEXIST); + deferrno("eloop", ELOOP); deferrno("espipe", ESPIPE); deferrno("ewouldblock", EWOULDBLOCK); printf("\n"); @@ -312,6 +354,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); @@ -330,11 +375,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); @@ -346,22 +391,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); -#endif // _WIN32 +#else + defconstant("fpe-fltsub", -1); +#endif + +#endif // !WIN32 return 0; }