PATH:
usr
/
include
/* ISO C11 Standard: 7.26 - Thread support library <threads.h>. Copyright (C) 2018 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ #ifndef _THREADS_H #define _THREADS_H 1 #include <features.h> #include <time.h> __BEGIN_DECLS #include <bits/pthreadtypes-arch.h> #include <bits/types/struct_timespec.h> #ifndef __cplusplus # define thread_local _Thread_local #endif #define TSS_DTOR_ITERATIONS 4 typedef unsigned int tss_t; typedef void (*tss_dtor_t) (void*); typedef unsigned long int thrd_t; typedef int (*thrd_start_t) (void*); /* Exit and error codes. */ enum { thrd_success = 0, thrd_busy = 1, thrd_error = 2, thrd_nomem = 3, thrd_timedout = 4 }; /* Mutex types. */ enum { mtx_plain = 0, mtx_recursive = 1, mtx_timed = 2 }; typedef struct { int __data __ONCE_ALIGNMENT; } once_flag; #define ONCE_FLAG_INIT { 0 } typedef union { char __size[__SIZEOF_PTHREAD_MUTEX_T]; long int __align __LOCK_ALIGNMENT; } mtx_t; typedef union { char __size[__SIZEOF_PTHREAD_COND_T]; __extension__ long long int __align __LOCK_ALIGNMENT; } cnd_t; /* Threads functions. */ /* Create a new thread executing the function __FUNC. Arguments for __FUNC are passed through __ARG. If succesful, __THR is set to new thread identifier. */ extern int thrd_create (thrd_t *__thr, thrd_start_t __func, void *__arg); /* Check if __LHS and __RHS point to the same thread. */ extern int thrd_equal (thrd_t __lhs, thrd_t __rhs); /* Return current thread identifier. */ extern thrd_t thrd_current (void); /* Block current thread execution for at least the time pointed by __TIME_POINT. The current thread may resume if receives a signal. In that case, if __REMAINING is not NULL, the remaining time is stored in the object pointed by it. */ extern int thrd_sleep (const struct timespec *__time_point, struct timespec *__remaining); /* Terminate current thread execution, cleaning up any thread local storage and freeing resources. Returns the value specified in __RES. */ extern void thrd_exit (int __res) __attribute__ ((__noreturn__)); /* Detach the thread identified by __THR from the current environment (it does not allow join or wait for it). */ extern int thrd_detach (thrd_t __thr); /* Block current thread until execution of __THR is complete. In case that __RES is not NULL, will store the return value of __THR when exiting. */ extern int thrd_join (thrd_t __thr, int *__res); /* Stop current thread execution and call the scheduler to decide which thread should execute next. The current thread may be selected by the scheduler to keep running. */ extern void thrd_yield (void); #ifdef __USE_EXTERN_INLINES /* Optimizations. */ __extern_inline int thrd_equal (thrd_t __thread1, thrd_t __thread2) { return __thread1 == __thread2; } #endif /* Mutex functions. */ /* Creates a new mutex object with type __TYPE. If successful the new object is pointed by __MUTEX. */ extern int mtx_init (mtx_t *__mutex, int __type); /* Block the current thread until the mutex pointed to by __MUTEX is unlocked. In that case current thread will not be blocked. */ extern int mtx_lock (mtx_t *__mutex); /* Block the current thread until the mutex pointed by __MUTEX is unlocked or time pointed by __TIME_POINT is reached. In case the mutex is unlock, the current thread will not be blocked. */ extern int mtx_timedlock (mtx_t *__restrict __mutex, const struct timespec *__restrict __time_point); /* Try to lock the mutex pointed by __MUTEX without blocking. If the mutex is free the current threads takes control of it, otherwise it returns immediately. */ extern int mtx_trylock (mtx_t *__mutex); /* Unlock the mutex pointed by __MUTEX. It may potentially awake other threads waiting on this mutex. */ extern int mtx_unlock (mtx_t *__mutex); /* Destroy the mutex object pointed by __MUTEX. */ extern void mtx_destroy (mtx_t *__mutex); /* Call function __FUNC exactly once, even if invoked from several threads. All calls must be made with the same __FLAGS object. */ extern void call_once (once_flag *__flag, void (*__func)(void)); /* Condition variable functions. */ /* Initialize new condition variable pointed by __COND. */ extern int cnd_init (cnd_t *__cond); /* Unblock one thread that currently waits on condition variable pointed by __COND. */ extern int cnd_signal (cnd_t *__cond); /* Unblock all threads currently waiting on condition variable pointed by __COND. */ extern int cnd_broadcast (cnd_t *__cond); /* Block current thread on the condition variable pointed by __COND. */ extern int cnd_wait (cnd_t *__cond, mtx_t *__mutex); /* Block current thread on the condition variable until condition variable pointed by __COND is signaled or time pointed by __TIME_POINT is reached. */ extern int cnd_timedwait (cnd_t *__restrict __cond, mtx_t *__restrict __mutex, const struct timespec *__restrict __time_point); /* Destroy condition variable pointed by __cond and free all of its resources. */ extern void cnd_destroy (cnd_t *__COND); /* Thread specific storage functions. */ /* Create new thread-specific storage key and stores it in the object pointed by __TSS_ID. If __DESTRUCTOR is not NULL, the function will be called when the thread terminates. */ extern int tss_create (tss_t *__tss_id, tss_dtor_t __destructor); /* Return the value held in thread-specific storage for the current thread identified by __TSS_ID. */ extern void *tss_get (tss_t __tss_id); /* Sets the value of the thread-specific storage identified by __TSS_ID for the current thread to __VAL. */ extern int tss_set (tss_t __tss_id, void *__val); /* Destroys the thread-specific storage identified by __TSS_ID. The destructor is not called until thrd_exit is called. */ extern void tss_delete (tss_t __tss_id); __END_DECLS #endif /* _THREADS_H */
[+]
..
[-] malloc.h
[edit]
[-] gnumake.h
[edit]
[-] syslog.h
[edit]
[-] gnu-versions.h
[edit]
[-] sysexits.h
[edit]
[-] fstrm.h
[edit]
[+]
gdb
[+]
libdb
[-] monetary.h
[edit]
[-] gettext-po.h
[edit]
[-] gdfx.h
[edit]
[-] shadow.h
[edit]
[-] gpgrt.h
[edit]
[-] term_entry.h
[edit]
[-] evrpc.h
[edit]
[-] sgtty.h
[edit]
[-] libintl.h
[edit]
[-] jconfig.h
[edit]
[-] lber_types.h
[edit]
[-] ar.h
[edit]
[+]
c++
[-] expat.h
[edit]
[+]
netinet
[+]
openssl
[-] unctrl.h
[edit]
[-] gpg-error.h
[edit]
[-] wchar.h
[edit]
[-] stdlib.h
[edit]
[-] tic.h
[edit]
[-] zstd_errors.h
[edit]
[-] alloca.h
[edit]
[-] langinfo.h
[edit]
[-] nl_types.h
[edit]
[-] paths.h
[edit]
[+]
netash
[-] utmp.h
[edit]
[-] gdcache.h
[edit]
[-] ifaddrs.h
[edit]
[-] tiffvers.h
[edit]
[-] mqueue.h
[edit]
[-] pcre2.h
[edit]
[+]
nfs
[+]
xen
[-] threads.h
[edit]
[-] gdfontg.h
[edit]
[-] jpegint.h
[edit]
[-] spawn.h
[edit]
[-] printf.h
[edit]
[-] cursesp.h
[edit]
[-] a.out.h
[edit]
[+]
fontconfig
[+]
libpng16
[+]
perf
[-] keyutils.h
[edit]
[-] ldap.h
[edit]
[-] krb5.h
[edit]
[-] string.h
[edit]
[+]
ext2fs
[-] argz.h
[edit]
[-] autosprintf.h
[edit]
[-] errno.h
[edit]
[-] zdict.h
[edit]
[-] values.h
[edit]
[-] argp.h
[edit]
[+]
fstrm
[-] pcreposix.h
[edit]
[+]
sound
[-] ldif.h
[edit]
[+]
criu
[-] unistd.h
[edit]
[-] fstab.h
[edit]
[-] ctype.h
[edit]
[-] menu.h
[edit]
[-] gd_errors.h
[edit]
[-] ldap_cdefs.h
[edit]
[+]
mysql
[-] libaio.h
[edit]
[-] termcap.h
[edit]
[+]
netiucv
[-] complex.h
[edit]
[-] aio.h
[edit]
[-] db.h
[edit]
[+]
e2p
[-] features.h
[edit]
[-] gdfontl.h
[edit]
[-] cursesf.h
[edit]
[-] pcrecpparg.h
[edit]
[-] krad.h
[edit]
[-] utmpx.h
[edit]
[-] gdbm.h
[edit]
[-] glob.h
[edit]
[+]
sasl
[+]
arpa
[-] jpeglib.h
[edit]
[-] tgmath.h
[edit]
[-] ldap_utf8.h
[edit]
[-] ttyent.h
[edit]
[-] evutil.h
[edit]
[-] expat_external.h
[edit]
[-] re_comp.h
[edit]
[-] fenv.h
[edit]
[+]
libexslt
[-] cpuidle.h
[edit]
[-] locale.h
[edit]
[-] gcrypt.h
[edit]
[-] fmtmsg.h
[edit]
[+]
event2
[-] lber.h
[edit]
[-] zstd.h
[edit]
[+]
apache2
[+]
sys
[+]
lua-5.1
[+]
sepol
[-] jmorecfg.h
[edit]
[+]
gssapi
[-] idn-free.h
[edit]
[-] setjmp.h
[edit]
[-] zbuff.h
[edit]
[-] fpu_control.h
[edit]
[-] fnmatch.h
[edit]
[-] tar.h
[edit]
[-] time.h
[edit]
[-] tiffconf-64.h
[edit]
[+]
python3.6m
[+]
scsi
[+]
lzma
[-] ndbm.h
[edit]
[-] jerror.h
[edit]
[-] search.h
[edit]
[-] thread_db.h
[edit]
[-] dlfcn.h
[edit]
[+]
netatalk
[-] panel.h
[edit]
[+]
mtd
[-] grp.h
[edit]
[+]
webp
[-] gelf.h
[edit]
[-] slapi-plugin.h
[edit]
[-] math.h
[edit]
[-] pwd.h
[edit]
[-] stab.h
[edit]
[-] limits.h
[edit]
[-] gdfonts.h
[edit]
[-] pngconf.h
[edit]
[+]
linux
[+]
json-c
[-] tiff.h
[edit]
[-] ieee754.h
[edit]
[-] expat_config.h
[edit]
[-] verto.h
[edit]
[-] mntent.h
[edit]
[-] link.h
[edit]
[+]
google
[+]
libltdl
[-] stringprep.h
[edit]
[+]
net
[-] etip.h
[edit]
[-] ltdl.h
[edit]
[-] wctype.h
[edit]
[-] stdio_ext.h
[edit]
[-] idna.h
[edit]
[-] stdint.h
[edit]
[-] gdpp.h
[edit]
[-] cursslk.h
[edit]
[-] term.h
[edit]
[+]
libxml2
[-] dirent.h
[edit]
[-] semaphore.h
[edit]
[+]
libxslt
[-] ncurses.h
[edit]
[-] getopt.h
[edit]
[-] magic.h
[edit]
[+]
misc
[-] syscall.h
[edit]
[-] tiffconf.h
[edit]
[-] elf.h
[edit]
[-] ucontext.h
[edit]
[-] tiffio.h
[edit]
[-] cursesw.h
[edit]
[-] execinfo.h
[edit]
[-] poll.h
[edit]
[-] endian.h
[edit]
[-] stdio.h
[edit]
[-] libelf.h
[edit]
[+]
bsock
[-] libgen.h
[edit]
[-] cpio.h
[edit]
[-] gssapi.h
[edit]
[-] cursesm.h
[edit]
[-] fts.h
[edit]
[-] inttypes.h
[edit]
[-] netdb.h
[edit]
[+]
video
[+]
python2.7
[-] tiffio.hxx
[edit]
[-] gd_io.h
[edit]
[-] utime.h
[edit]
[-] err.h
[edit]
[+]
kadm5
[-] verto-module.h
[edit]
[+]
xcb
[-] regexp.h
[edit]
[+]
netrom
[-] envz.h
[edit]
[-] zconf.h
[edit]
[+]
neteconet
[+]
curl
[-] aliases.h
[edit]
[-] punycode.h
[edit]
[+]
bind9
[+]
krb5
[-] ulimit.h
[edit]
[-] zlib.h
[edit]
[-] signal.h
[edit]
[+]
freetype2
[+]
netax25
[-] termio.h
[edit]
[-] kdb.h
[edit]
[-] ncurses_dll.h
[edit]
[-] error.h
[edit]
[-] pcre_scanner.h
[edit]
[-] com_err.h
[edit]
[-] nss.h
[edit]
[-] tld.h
[edit]
[+]
bits
[-] entities.h
[edit]
[+]
rdma
[+]
rpc
[+]
drm
[+]
gdbm
[+]
uuid
[-] bzlib.h
[edit]
[-] pnglibconf.h
[edit]
[-] nc_tparm.h
[edit]
[-] stdc-predef.h
[edit]
[-] byteswap.h
[edit]
[-] gd.h
[edit]
[+]
security
[-] termios.h
[edit]
[-] pthread.h
[edit]
[-] jconfig-64.h
[edit]
[+]
et
[+]
jemalloc
[-] wait.h
[edit]
[-] lastlog.h
[edit]
[-] dbm.h
[edit]
[-] crypt.h
[edit]
[+]
ncurses
[-] lzma.h
[edit]
[-] proc_service.h
[edit]
[+]
finclude
[-] memory.h
[edit]
[-] obstack.h
[edit]
[-] regex.h
[edit]
[+]
protobuf-c
[-] sched.h
[edit]
[+]
X11
[-] pcrecpp.h
[edit]
[+]
protocols
[+]
netrose
[-] assert.h
[edit]
[+]
GL
[-] ldap_schema.h
[edit]
[-] iconv.h
[edit]
[+]
ncursesw
[-] nlist.h
[edit]
[+]
python3.8
[-] gshadow.h
[edit]
[-] strings.h
[edit]
[-] gconv.h
[edit]
[-] ldap_features.h
[edit]
[-] gd_color_map.h
[edit]
[-] evdns.h
[edit]
[+]
asm-generic
[+]
asm
[-] ftw.h
[edit]
[-] pcre.h
[edit]
[-] gdfontt.h
[edit]
[-] profile.h
[edit]
[-] idn-int.h
[edit]
[-] FlexLexer.h
[edit]
[-] pcre_stringpiece.h
[edit]
[+]
netpacket
[-] pcre2posix.h
[edit]
[+]
selinux
[+]
netipx
[-] evhttp.h
[edit]
[-] pr29.h
[edit]
[-] form.h
[edit]
[-] event.h
[edit]
[-] resolv.h
[edit]
[-] uchar.h
[edit]
[+]
gssrpc
[-] mcheck.h
[edit]
[-] eti.h
[edit]
[-] curses.h
[edit]
[-] pty.h
[edit]
[-] db_185.h
[edit]
[-] gdfontmb.h
[edit]
[-] wordexp.h
[edit]
[-] fcntl.h
[edit]
[-] png.h
[edit]
[-] cursesapp.h
[edit]
[+]
gnu