diff options
author | Andreas Tobler <a.tobler@schweiz.org> | 2007-01-15 21:24:42 +0000 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2007-01-15 22:24:42 +0100 |
commit | 52bdc5310c2cdcc68ea7a98445860853d63e51b9 (patch) | |
tree | 5ef2d884374063f47931053079a5f57ee1213c90 /boehm-gc/os_dep.c | |
parent | bc31cbf4a5126a58237991238411b09df982a655 (diff) | |
download | gcc-52bdc5310c2cdcc68ea7a98445860853d63e51b9.tar.gz |
os_dep.c (defined(MPROTECT_VDB) && defined(DARWIN)): Adjust mail reference.
2007-01-15 Andreas Tobler <a.tobler@schweiz.org>
* os_dep.c (defined(MPROTECT_VDB) && defined(DARWIN)): Adjust mail
reference.
(catch_exception_raise): Fix typo in the I386 exc_state.
From-SVN: r120801
Diffstat (limited to 'boehm-gc/os_dep.c')
-rw-r--r-- | boehm-gc/os_dep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boehm-gc/os_dep.c b/boehm-gc/os_dep.c index 5a0e59fefb7..de7cdd57b0d 100644 --- a/boehm-gc/os_dep.c +++ b/boehm-gc/os_dep.c @@ -3371,7 +3371,7 @@ GC_bool is_ptrfree; 1. Apple's mach/xnu documentation 2. Timothy J. Wood's "Mach Exception Handlers 101" post to the omnigroup's macosx-dev list. - www.omnigroup.com/mailman/archive/macosx-dev/2000-June/002030.html + www.omnigroup.com/mailman/archive/macosx-dev/2000-June/014178.html 3. macosx-nat.c from Apple's GDB source code. */ @@ -3806,7 +3806,7 @@ catch_exception_raise( # if CPP_WORDSZ == 32 thread_state_flavor_t flavor = x86_EXCEPTION_STATE32; mach_msg_type_number_t exc_state_count = x86_EXCEPTION_STATE32_COUNT; - x86_exception_state_t exc_state; + x86_exception_state32_t exc_state; # else thread_state_flavor_t flavor = x86_EXCEPTION_STATE64; mach_msg_type_number_t exc_state_count = x86_EXCEPTION_STATE64_COUNT; |