aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@gcc.gnu.org>2001-11-19 00:24:52 +0000
committerCraig Rodrigues <rodrigc@gcc.gnu.org>2001-11-19 00:24:52 +0000
commit392447923f91ba4ae478cf7e131eee21250e7f49 (patch)
treee5fc14c5df9380787eb5bba2dfa97fffd6d19492 /gcc
parent8aeb42d06b31988d1cae8c5c8200fc2650d3e16a (diff)
downloadgcc-392447923f91ba4ae478cf7e131eee21250e7f49.zip
gcc-392447923f91ba4ae478cf7e131eee21250e7f49.tar.gz
gcc-392447923f91ba4ae478cf7e131eee21250e7f49.tar.bz2
re PR bootstrap/4448 (make bootstrap failed: gthr-win32.h erroneous)
2001-11-18 Craig Rodrigues <rodrigc@gcc.gnu.org> PR c/4448 * gthr-win32.h: (__gthread_objc_thread_exit): Fix variable name __objc_thread_exit_status so that it matches the variable defined in objc/thr.h. From-SVN: r47157
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/gthr-win32.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cf222c3..11dbf10 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,12 @@
2001-11-18 Craig Rodrigues <rodrigc@gcc.gnu.org>
+ PR c/4448
+ * gthr-win32.h: (__gthread_objc_thread_exit): Fix variable
+ name __objc_thread_exit_status so that it matches the
+ variable defined in objc/thr.h.
+
+2001-11-18 Craig Rodrigues <rodrigc@gcc.gnu.org>
+
PR bootstrap/4020
* mklibgcc.in: Add missing semi-colons.
* Makefile.in: Same.
diff --git a/gcc/gthr-win32.h b/gcc/gthr-win32.h
index 97a50da..f432194 100644
--- a/gcc/gthr-win32.h
+++ b/gcc/gthr-win32.h
@@ -181,7 +181,7 @@ int
__gthread_objc_thread_exit(void)
{
/* exit the thread */
- ExitThread(__gthread_objc_thread_exit_status);
+ ExitThread(__objc_thread_exit_status);
/* Failed if we reached here */
return -1;