diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-03 09:23:17 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-03 09:23:44 +0200 |
commit | c2fd60a5861efef48252f5cc7efc70e1d8a0da9a (patch) | |
tree | 73039b111fb8f291dfcd4cc91b9f037f82ceda93 /NEWS | |
parent | 0505ae4e3b6d18b7ed1ec4c9b2d7e890acadec93 (diff) | |
download | glibc-c2fd60a5861efef48252f5cc7efc70e1d8a0da9a.zip glibc-c2fd60a5861efef48252f5cc7efc70e1d8a0da9a.tar.gz glibc-c2fd60a5861efef48252f5cc7efc70e1d8a0da9a.tar.bz2 |
nptl: Move pthread_yield into libc, as a compatibility symbol
And deprecate it in <pthread.h>, redirecting it to sched_yield
for the time being.
The symbol was moved using scripts/move-symbol-to-libc.py.
No GLIBC_2.34 symbol version is added because of the compatibility
symbol status.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -32,6 +32,9 @@ Deprecated and removed features, and other changes affecting compatibility: programs should use the equivalent standard function pthread_mutexattr_setrobust instead. +* The function pthread_yield has been deprecated; programs should use + the equivalent standard function sched_yield instead. + Changes to build and runtime requirements: * On Linux, the shm_open, sem_open, and related functions now expect the |