summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-15 21:24:42 +0000
committerguest <ivmai@mail.ru>2011-07-29 10:54:27 +0400
commita75657e9061e6a4498cf87846c3e542548322aeb (patch)
tree45375cbfe98ec9f44338659c8b88ed4c39e7120b
parent494f1b7a456e751d04491e19b37d3b0d97d3cf8f (diff)
downloadbdwgc-a75657e9061e6a4498cf87846c3e542548322aeb.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120801 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog6
-rw-r--r--os_dep.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9fd2d4bd..1c8ce532 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
2007-01-11 Andreas Tobler <a.tobler@schweiz.org>
* configure.ac: Replaced HAS_I386_THREAD_STATE_* with
diff --git a/os_dep.c b/os_dep.c
index 5a0e59fe..de7cdd57 100644
--- a/os_dep.c
+++ b/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;