1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
2001-01-08  Ulrich Drepper  <drepper@redhat.com>

	* libio/bits/stdio.h (printf): Define macro to map printf call to
	fprintf which gcc can optimize.
This commit is contained in:
Ulrich Drepper
2001-01-08 08:50:37 +00:00
parent bf2c10ded6
commit 9b2c75233e
4 changed files with 19 additions and 4 deletions

View File

@@ -740,7 +740,10 @@ static void pthread_exit_process(int retcode, void *arg)
/* Main thread should accumulate times for thread manager and its
children, so that timings for main thread account for all threads. */
if (self == __pthread_main_thread)
waitpid(__pthread_manager_thread.p_pid, NULL, __WCLONE);
{
waitpid(__pthread_manager_thread.p_pid, NULL, __WCLONE);
free (__pthread_manager_thread_bos);
}
}
}