diff options
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/cygwin/signal.h | 4 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 4 | ||||
-rw-r--r-- | winsup/cygwin/include/exceptions.h | 6 |
3 files changed, 6 insertions, 8 deletions
diff --git a/winsup/cygwin/include/cygwin/signal.h b/winsup/cygwin/include/cygwin/signal.h index 477903ac5..0ccdbc03f 100644 --- a/winsup/cygwin/include/cygwin/signal.h +++ b/winsup/cygwin/include/cygwin/signal.h @@ -102,8 +102,8 @@ typedef struct enum { - SI_USER = 1, /* sent by kill, raise, pthread_kill */ - SI_ASYNCIO, /* sent by AIO completion (currently + SI_USER = 0, /* sent by kill, raise, pthread_kill */ + SI_ASYNCIO = 2, /* sent by AIO completion (currently unimplemented) */ SI_MESGQ, /* sent by real time mesq state change (currently unimplemented) */ diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 7ea34fe2c..9511d925a 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -283,12 +283,14 @@ details. */ 143: Export clock_getres, clock_setres 144: Export timelocal, timegm. 145: Add MAP_NORESERVE flag to mmap. + 146: Change SI_USER definition. FIXME: Need to develop compatibility macro + for this? */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 145 +#define CYGWIN_VERSION_API_MINOR 146 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible diff --git a/winsup/cygwin/include/exceptions.h b/winsup/cygwin/include/exceptions.h index 462000d61..5311e1f9e 100644 --- a/winsup/cygwin/include/exceptions.h +++ b/winsup/cygwin/include/exceptions.h @@ -106,13 +106,9 @@ typedef struct _exception_list { struct _exception_list *prev; exception_handler *handler; - - /* We're apparently free to add more stuff here. - At present we don't need any. */ + unsigned long stuff[8]; } exception_list; -void init_exceptions (exception_list *); - #ifdef __cplusplus }; #endif /* __cplusplus */ |