Commit 39244792 by Craig Rodrigues

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
parent 8aeb42d0
2001-11-18 Craig Rodrigues <rodrigc@gcc.gnu.org> 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 PR bootstrap/4020
* mklibgcc.in: Add missing semi-colons. * mklibgcc.in: Add missing semi-colons.
* Makefile.in: Same. * Makefile.in: Same.
......
...@@ -181,7 +181,7 @@ int ...@@ -181,7 +181,7 @@ int
__gthread_objc_thread_exit(void) __gthread_objc_thread_exit(void)
{ {
/* exit the thread */ /* exit the thread */
ExitThread(__gthread_objc_thread_exit_status); ExitThread(__objc_thread_exit_status);
/* Failed if we reached here */ /* Failed if we reached here */
return -1; return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment