mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* csu/Makefile ($(objpfx)version-info.h): Get OS name from uname and only fall back on using Linux.
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user