OSDN Git Service

add C11 thread functions operating on tss_t and once_flag
authorJens Gustedt <Jens.Gustedt@inria.fr>
Sun, 7 Sep 2014 01:32:53 +0000 (21:32 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 7 Sep 2014 01:38:04 +0000 (21:38 -0400)
commite16f70f45210294321a88f23c85ac45046577adc
tree57372bee85877809503cd09dd9b79f0da6e3fc48
parentb7cf71a190813590860af25b32532b6c360ac502
add C11 thread functions operating on tss_t and once_flag

These all have POSIX equivalents, but aside from tss_get, they all
have minor changes to the signature or return value and thus need to
exist as separate functions.
src/thread/call_once.c [new file with mode: 0644]
src/thread/pthread_getspecific.c
src/thread/tss_create.c [new file with mode: 0644]
src/thread/tss_delete.c [new file with mode: 0644]
src/thread/tss_set.c [new file with mode: 0644]