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
This commit is contained in:
Craig Rodrigues 2001-11-19 00:24:52 +00:00
parent 8aeb42d06b
commit 392447923f
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
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

View File

@ -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;