diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2007-02-18 09:46:48 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2007-02-18 09:46:48 +0000 |
commit | 8cf2dca12befe1242b21b5291caf0d974eba3bad (patch) | |
tree | e7766b07daf8850ff6d3620aff5149ba63bf9bf0 /winsup | |
parent | 6542214e59bb03c5d5a72c388fd2391d68fe3db2 (diff) | |
download | newlib-8cf2dca12befe1242b21b5291caf0d974eba3bad.zip newlib-8cf2dca12befe1242b21b5291caf0d974eba3bad.tar.gz newlib-8cf2dca12befe1242b21b5291caf0d974eba3bad.tar.bz2 |
2007-02-18 Aurimas Cernius <aurisc4@gmail.com>
* include/excpt.h: Replace "_try1" in comments with "__try1".
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/mingw/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/mingw/include/excpt.h | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 8106340..874bae3 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,7 @@ +2007-02-18 Aurimas Cernius <aurisc4@gmail.com> + + * include/excpt.h: Replace "_try1" in comments with "__try1". + 2007-02-15 Danny Smith <dannysmith@users.sourceforge.net> * Makefile.in (ALL_CFLAGS): Put W32API_INCLUDE after INCLUDES. @@ -864,7 +868,7 @@ 2004-07-15 Danny Smith <dannysmith@users.sourceforge.net> - * mingwex/complex/cargs.c: New file. + * mingwex/complex/carg.c: New file. * mingwex/Makefile.in: Really add carg.o to libmingwex.a. 2004-07-15 Corinna Vinschen <corinna@vinschen.de> diff --git a/winsup/mingw/include/excpt.h b/winsup/mingw/include/excpt.h index d46a1d9..e75ceb7 100644 --- a/winsup/mingw/include/excpt.h +++ b/winsup/mingw/include/excpt.h @@ -50,14 +50,14 @@ extern "C" { /* * The type of function that is expected as an exception handler to be - * installed with _try1. + * installed with __try1. */ typedef EXCEPTION_DISPOSITION (*PEXCEPTION_HANDLER) (struct _EXCEPTION_RECORD*, void*, struct _CONTEXT*, void*); /* * This is not entirely necessary, but it is the structure installed by - * the _try1 primitive below. + * the __try1 primitive below. */ typedef struct _EXCEPTION_REGISTRATION { @@ -87,7 +87,7 @@ typedef PEXCEPTION_REGISTRATION PEXCEPTION_REGISTRATION_RECORD; * then add 8 to the stack pointer to get rid of the space we * used when we pushed on our new reg. struct above. Notice that * the stack must be in the exact state at this point that it was - * after we did _try1 or this will smash things. + * after we did __try1 or this will smash things. */ #define __except1 \ __asm__ ("movl (%%esp),%%eax;movl %%eax,%%fs:0;addl $8,%%esp;" \ |