You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rich Felker
8431d7972f
TLS (GNU/C11 thread-local storage) support for static-linked programs
the design for TLS in dynamic-linked programs is mostly complete too,
but I have not yet implemented it. cost is nonzero but still low for
programs which do not use TLS and/or do not use threads (a few hundred
bytes of new code, plus dependency on memcpy). i believe it can be
made smaller at some point by merging __init_tls and __init_security
into __libc_start_main and avoiding duplicate auxv-parsing code.
at the same time, I've also slightly changed the logic pthread_create
uses to allocate guard pages to ensure that guard pages are not
counted towards commit charge.
14 years ago
..
aio
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
complex
add creal/cimag macros in complex.h (and use them in the functions defs)
14 years ago
conf
let sysconf accurately report # of cpus available
14 years ago
crypt
add crypt_md5 password hash
14 years ago
ctype
fix argument type error on wcwidth function
14 years ago
dirent
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
env
TLS (GNU/C11 thread-local storage) support for static-linked programs
14 years ago
errno
better description for errno==0
14 years ago
exit
further use of _Noreturn, for non-plain-C functions
14 years ago
fcntl
move fallocate syscall wrapper to linux-specific syscalls dir
14 years ago
fenv
try fixing/optimizing x86_64 fenv exception code
14 years ago
internal
TLS (GNU/C11 thread-local storage) support for static-linked programs
14 years ago
ipc
fix remaining IPC_64 issue (shmctl)
14 years ago
ldso
TLS (GNU/C11 thread-local storage) support for static-linked programs
14 years ago
legacy
more close-on-exec fixes, mostly using new "e" flag to fopen
14 years ago
linux
move accept4, dup3, and pipe2 to non-linux-specific locations
14 years ago
locale
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
malloc
workaround gcc got-register-reload performance problems in malloc
14 years ago
math
Merge remote-tracking branch 'nsz/exp'
14 years ago
misc
add getopt reset support
14 years ago
mman
overhaul sem_open
14 years ago
mq
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
multibyte
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
network
fix some more O_CLOEXEC/SOCK_CLOEXEC issues
14 years ago
passwd
more close-on-exec fixes, mostly using new "e" flag to fopen
14 years ago
prng
ditch the priority inheritance locks; use malloc's version of lock
14 years ago
process
use vfork if possible in posix_spawn
14 years ago
regex
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
sched
avoid setting nondefault scheduler too
14 years ago
search
search: add comments to tsearch_avl.c
14 years ago
select
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
setjmp
microblaze port
14 years ago
signal
microblaze port
14 years ago
stat
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
stdio
add 'e' modifier (close-on-exec) to fopen and fdopen
14 years ago
stdlib
use restrict everywhere it's required by c99 and/or posix 2008
14 years ago
string
optimize strchrnul/strcspn not to scan string twice on no-match
14 years ago
temp
remove ugly prng from mk*temp and just re-poll time on retry
15 years ago
termios
legacy junk compatibility grab-bag
14 years ago
thread
TLS (GNU/C11 thread-local storage) support for static-linked programs
14 years ago
time
more close-on-exec fixes, mostly using new "e" flag to fopen
14 years ago
unistd
move accept4, dup3, and pipe2 to non-linux-specific locations
14 years ago