1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
* csu/Makefile ($(objpfx)version-info.h): Get OS name from uname and
	only fall back on using Linux.
This commit is contained in:
Ulrich Drepper
2000-04-16 01:18:43 +00:00
parent 145b84138f
commit c269fdb42f
6 changed files with 30 additions and 1 deletions

View File

@ -634,6 +634,13 @@ int pthread_getschedparam(pthread_t thread, int *policy,
return 0;
}
int __pthread_yield ()
{
/* For now this is equivalent with the POSIX call. */
return sched_yield ();
}
weak_alias (__pthread_yield, pthread_yield)
/* Process-wide exit() request */
static void pthread_exit_process(int retcode, void *arg)