aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/libc.abilist
AgeCommit message (Collapse)AuthorFilesLines
2022-05-17linux: Add pidfd_getfdAdhemerval Zanella1-0/+1
This was added on Linux 5.6 (8649c322f75c96e7ced2fec201e123b2b073bf09) as a way to retrieve a file descriptors for another process though pidfd (created either with CLONE_PIDFD or pidfd_getfd). The functionality is similar to recvmmsg SCM_RIGHTS. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
2021-05-13Make sysdeps/generic/libc.abilist emptyJoseph Myers1-1/+0
The __libc_single_threaded symbol was accidentally added to this file in commit 706ad1e7af37be1d25fc2359bda006d31fe0d11b.
2020-07-06Add the __libc_single_threaded variableFlorian Weimer1-0/+1
The variable is placed in libc.so, and it can be true only in an outer libc, not libcs loaded via dlmopen or static dlopen. Since thread creation from inner namespaces does not work, pthread_create can update __libc_single_threaded directly. Using __libc_early_init and its initial flag, implementation of this variable is very straightforward. A future version may reset the flag during fork (but not in an inner namespace), or after joining all threads except one. Reviewed-by: DJ Delorie <dj@redhat.com>
2015-11-06Simplify the abilist formatFlorian Weimer1-2/+0
The new format lists the version on each line, as in: VERSION SYMBOL TYPE [VALUE] This makes it easier to process the files with line-oriented tools. The abilist files were converted with this awk script: /^[^ ]/ { version = $1 } /^ / { print version, substr($0, 2) } And sorted under the "C" locale with sort.
2015-02-13Add placeholder c++-types.data and *.abilist files.Roland McGrath1-0/+2