From 392447923f91ba4ae478cf7e131eee21250e7f49 Mon Sep 17 00:00:00 2001 From: Craig Rodrigues Date: Mon, 19 Nov 2001 00:24:52 +0000 Subject: [PATCH] re PR bootstrap/4448 (make bootstrap failed: gthr-win32.h erroneous) 2001-11-18 Craig Rodrigues 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 --- gcc/ChangeLog | 7 +++++++ gcc/gthr-win32.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cf222c33974..11dbf108a0c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2001-11-18 Craig Rodrigues + + 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 PR bootstrap/4020 diff --git a/gcc/gthr-win32.h b/gcc/gthr-win32.h index 97a50dab0bb..f432194f899 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; -- 2.30.2