diff options
Diffstat (limited to 'winsup/cygwin/include/exceptions.h')
-rw-r--r-- | winsup/cygwin/include/exceptions.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/winsup/cygwin/include/exceptions.h b/winsup/cygwin/include/exceptions.h index 5311e1f9e..39d3d8f17 100644 --- a/winsup/cygwin/include/exceptions.h +++ b/winsup/cygwin/include/exceptions.h @@ -99,14 +99,13 @@ to install your own exception filter. This one is documented. a teensy bit of detail of the innards of exception handling (i.e. what we have to do). */ -typedef int (exception_handler) - (EXCEPTION_RECORD *, void *, CONTEXT *, void *); +typedef int (exception_handler) (EXCEPTION_RECORD *, struct _exception_list *, + CONTEXT *, void *); typedef struct _exception_list { struct _exception_list *prev; exception_handler *handler; - unsigned long stuff[8]; } exception_list; #ifdef __cplusplus |