| xf.li | bdd93d5 | 2023-05-12 07:10:14 -0700 | [diff] [blame] | 1 | @node POSIX Threads | 
|  | 2 | @c @node POSIX Threads, Internal Probes, Cryptographic Functions, Top | 
|  | 3 | @chapter POSIX Threads | 
|  | 4 | @c %MENU% POSIX Threads | 
|  | 5 | @cindex pthreads | 
|  | 6 |  | 
|  | 7 | This chapter describes the @glibcadj{} POSIX Thread implementation. | 
|  | 8 |  | 
|  | 9 | @menu | 
|  | 10 | * Thread-specific Data::          Support for creating and | 
|  | 11 | managing thread-specific data | 
|  | 12 | * Non-POSIX Extensions::          Additional functions to extend | 
|  | 13 | POSIX Thread functionality | 
|  | 14 | @end menu | 
|  | 15 |  | 
|  | 16 | @node Thread-specific Data | 
|  | 17 | @section Thread-specific Data | 
|  | 18 |  | 
|  | 19 | The @glibcadj{} implements functions to allow users to create and manage | 
|  | 20 | data specific to a thread.  Such data may be destroyed at thread exit, | 
|  | 21 | if a destructor is provided.  The following functions are defined: | 
|  | 22 |  | 
|  | 23 | @comment pthread.h | 
|  | 24 | @comment POSIX | 
|  | 25 | @deftypefun int pthread_key_create (pthread_key_t *@var{key}, void (*@var{destructor})(void*)) | 
|  | 26 | @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} | 
|  | 27 | @c pthread_key_create ok | 
|  | 28 | @c  KEY_UNUSED ok | 
|  | 29 | @c  KEY_USABLE ok | 
|  | 30 | Create a thread-specific data key for the calling thread, referenced by | 
|  | 31 | @var{key}. | 
|  | 32 |  | 
|  | 33 | Objects declared with the C++11 @code{thread_local} keyword are destroyed | 
|  | 34 | before thread-specific data, so they should not be used in thread-specific | 
|  | 35 | data destructors or even as members of the thread-specific data, since the | 
|  | 36 | latter is passed as an argument to the destructor function. | 
|  | 37 | @end deftypefun | 
|  | 38 |  | 
|  | 39 | @comment pthread.h | 
|  | 40 | @comment POSIX | 
|  | 41 | @deftypefun int pthread_key_delete (pthread_key_t @var{key}) | 
|  | 42 | @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} | 
|  | 43 | @c pthread_key_delete ok | 
|  | 44 | @c   This uses atomic compare and exchange to increment the seq number | 
|  | 45 | @c   after testing it's not a KEY_UNUSED seq number. | 
|  | 46 | @c  KEY_UNUSED dup ok | 
|  | 47 | Destroy the thread-specific data @var{key} in the calling thread.  The | 
|  | 48 | destructor for the thread-specific data is not called during destruction, nor | 
|  | 49 | is it called during thread exit. | 
|  | 50 | @end deftypefun | 
|  | 51 |  | 
|  | 52 | @comment pthread.h | 
|  | 53 | @comment POSIX | 
|  | 54 | @deftypefun void *pthread_getspecific (pthread_key_t @var{key}) | 
|  | 55 | @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} | 
|  | 56 | @c pthread_getspecific ok | 
|  | 57 | Return the thread-specific data associated with @var{key} in the calling | 
|  | 58 | thread. | 
|  | 59 | @end deftypefun | 
|  | 60 |  | 
|  | 61 | @comment pthread.h | 
|  | 62 | @comment POSIX | 
|  | 63 | @deftypefun int pthread_setspecific (pthread_key_t @var{key}, const void *@var{value}) | 
|  | 64 | @safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}} | 
|  | 65 | @c pthread_setspecific @asucorrupt @ascuheap @acucorrupt @acsmem | 
|  | 66 | @c   a level2 block may be allocated by a signal handler after | 
|  | 67 | @c   another call already made a decision to allocate it, thus losing | 
|  | 68 | @c   the allocated value.  the seq number is updated before the | 
|  | 69 | @c   value, which might cause an earlier-generation value to seem | 
|  | 70 | @c   current if setspecific is cancelled or interrupted by a signal | 
|  | 71 | @c  KEY_UNUSED ok | 
|  | 72 | @c  calloc dup @ascuheap @acsmem | 
|  | 73 | Associate the thread-specific @var{value} with @var{key} in the calling thread. | 
|  | 74 | @end deftypefun | 
|  | 75 |  | 
|  | 76 |  | 
|  | 77 | @node Non-POSIX Extensions | 
|  | 78 | @section Non-POSIX Extensions | 
|  | 79 |  | 
|  | 80 | In addition to implementing the POSIX API for threads, @theglibc{} provides | 
|  | 81 | additional functions and interfaces to provide functionality not specified in | 
|  | 82 | the standard. | 
|  | 83 |  | 
|  | 84 | @menu | 
|  | 85 | * Default Thread Attributes::             Setting default attributes for | 
|  | 86 | threads in a process. | 
|  | 87 | @end menu | 
|  | 88 |  | 
|  | 89 | @node Default Thread Attributes | 
|  | 90 | @subsection Setting Process-wide defaults for thread attributes | 
|  | 91 |  | 
|  | 92 | @Theglibc{} provides non-standard API functions to set and get the default | 
|  | 93 | attributes used in the creation of threads in a process. | 
|  | 94 |  | 
|  | 95 | @comment pthread.h | 
|  | 96 | @comment GNU | 
|  | 97 | @deftypefun int pthread_getattr_default_np (pthread_attr_t *@var{attr}) | 
|  | 98 | @safety{@prelim{}@mtsafe{}@asunsafe{@asulock{}}@acunsafe{@aculock{}}} | 
|  | 99 | @c Takes lock around read from default_pthread_attr. | 
|  | 100 | Get the default attribute values and set @var{attr} to match.  This | 
|  | 101 | function returns @math{0} on success and a non-zero error code on | 
|  | 102 | failure. | 
|  | 103 | @end deftypefun | 
|  | 104 |  | 
|  | 105 | @comment pthread.h | 
|  | 106 | @comment GNU | 
|  | 107 | @deftypefun int pthread_setattr_default_np (pthread_attr_t *@var{attr}) | 
|  | 108 | @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@aculock{} @acsmem{}}} | 
|  | 109 | @c pthread_setattr_default_np @ascuheap @asulock @aculock @acsmem | 
|  | 110 | @c  check_sched_policy_attr ok | 
|  | 111 | @c  check_sched_priority_attr ok | 
|  | 112 | @c   sched_get_priority_min dup ok | 
|  | 113 | @c   sched_get_priority_max dup ok | 
|  | 114 | @c  check_stacksize_attr ok | 
|  | 115 | @c  lll_lock @asulock @aculock | 
|  | 116 | @c  free dup @ascuheap @acsmem | 
|  | 117 | @c  realloc dup @ascuheap @acsmem | 
|  | 118 | @c  memcpy dup ok | 
|  | 119 | @c  lll_unlock @asulock @aculock | 
|  | 120 | Set the default attribute values to match the values in @var{attr}.  The | 
|  | 121 | function returns @math{0} on success and a non-zero error code on failure. | 
|  | 122 | The following error codes are defined for this function: | 
|  | 123 |  | 
|  | 124 | @table @code | 
|  | 125 | @item EINVAL | 
|  | 126 | At least one of the values in @var{attr} does not qualify as valid for the | 
|  | 127 | attributes or the stack address is set in the attribute. | 
|  | 128 | @item ENOMEM | 
|  | 129 | The system does not have sufficient memory. | 
|  | 130 | @end table | 
|  | 131 | @end deftypefun | 
|  | 132 |  | 
|  | 133 | @c FIXME these are undocumented: | 
|  | 134 | @c pthread_atfork | 
|  | 135 | @c pthread_attr_destroy | 
|  | 136 | @c pthread_attr_getaffinity_np | 
|  | 137 | @c pthread_attr_getdetachstate | 
|  | 138 | @c pthread_attr_getguardsize | 
|  | 139 | @c pthread_attr_getinheritsched | 
|  | 140 | @c pthread_attr_getschedparam | 
|  | 141 | @c pthread_attr_getschedpolicy | 
|  | 142 | @c pthread_attr_getscope | 
|  | 143 | @c pthread_attr_getstack | 
|  | 144 | @c pthread_attr_getstackaddr | 
|  | 145 | @c pthread_attr_getstacksize | 
|  | 146 | @c pthread_attr_init | 
|  | 147 | @c pthread_attr_setaffinity_np | 
|  | 148 | @c pthread_attr_setdetachstate | 
|  | 149 | @c pthread_attr_setguardsize | 
|  | 150 | @c pthread_attr_setinheritsched | 
|  | 151 | @c pthread_attr_setschedparam | 
|  | 152 | @c pthread_attr_setschedpolicy | 
|  | 153 | @c pthread_attr_setscope | 
|  | 154 | @c pthread_attr_setstack | 
|  | 155 | @c pthread_attr_setstackaddr | 
|  | 156 | @c pthread_attr_setstacksize | 
|  | 157 | @c pthread_barrierattr_destroy | 
|  | 158 | @c pthread_barrierattr_getpshared | 
|  | 159 | @c pthread_barrierattr_init | 
|  | 160 | @c pthread_barrierattr_setpshared | 
|  | 161 | @c pthread_barrier_destroy | 
|  | 162 | @c pthread_barrier_init | 
|  | 163 | @c pthread_barrier_wait | 
|  | 164 | @c pthread_cancel | 
|  | 165 | @c pthread_cleanup_push | 
|  | 166 | @c pthread_cleanup_pop | 
|  | 167 | @c pthread_condattr_destroy | 
|  | 168 | @c pthread_condattr_getclock | 
|  | 169 | @c pthread_condattr_getpshared | 
|  | 170 | @c pthread_condattr_init | 
|  | 171 | @c pthread_condattr_setclock | 
|  | 172 | @c pthread_condattr_setpshared | 
|  | 173 | @c pthread_cond_broadcast | 
|  | 174 | @c pthread_cond_destroy | 
|  | 175 | @c pthread_cond_init | 
|  | 176 | @c pthread_cond_signal | 
|  | 177 | @c pthread_cond_timedwait | 
|  | 178 | @c pthread_cond_wait | 
|  | 179 | @c pthread_create | 
|  | 180 | @c pthread_detach | 
|  | 181 | @c pthread_equal | 
|  | 182 | @c pthread_exit | 
|  | 183 | @c pthread_getaffinity_np | 
|  | 184 | @c pthread_getattr_np | 
|  | 185 | @c pthread_getconcurrency | 
|  | 186 | @c pthread_getcpuclockid | 
|  | 187 | @c pthread_getname_np | 
|  | 188 | @c pthread_getschedparam | 
|  | 189 | @c pthread_join | 
|  | 190 | @c pthread_kill | 
|  | 191 | @c pthread_kill_other_threads_np | 
|  | 192 | @c pthread_mutexattr_destroy | 
|  | 193 | @c pthread_mutexattr_getkind_np | 
|  | 194 | @c pthread_mutexattr_getprioceiling | 
|  | 195 | @c pthread_mutexattr_getprotocol | 
|  | 196 | @c pthread_mutexattr_getpshared | 
|  | 197 | @c pthread_mutexattr_getrobust | 
|  | 198 | @c pthread_mutexattr_getrobust_np | 
|  | 199 | @c pthread_mutexattr_gettype | 
|  | 200 | @c pthread_mutexattr_init | 
|  | 201 | @c pthread_mutexattr_setkind_np | 
|  | 202 | @c pthread_mutexattr_setprioceiling | 
|  | 203 | @c pthread_mutexattr_setprotocol | 
|  | 204 | @c pthread_mutexattr_setpshared | 
|  | 205 | @c pthread_mutexattr_setrobust | 
|  | 206 | @c pthread_mutexattr_setrobust_np | 
|  | 207 | @c pthread_mutexattr_settype | 
|  | 208 | @c pthread_mutex_consistent | 
|  | 209 | @c pthread_mutex_consistent_np | 
|  | 210 | @c pthread_mutex_destroy | 
|  | 211 | @c pthread_mutex_getprioceiling | 
|  | 212 | @c pthread_mutex_init | 
|  | 213 | @c pthread_mutex_lock | 
|  | 214 | @c pthread_mutex_setprioceiling | 
|  | 215 | @c pthread_mutex_timedlock | 
|  | 216 | @c pthread_mutex_trylock | 
|  | 217 | @c pthread_mutex_unlock | 
|  | 218 | @c pthread_once | 
|  | 219 | @c pthread_rwlockattr_destroy | 
|  | 220 | @c pthread_rwlockattr_getkind_np | 
|  | 221 | @c pthread_rwlockattr_getpshared | 
|  | 222 | @c pthread_rwlockattr_init | 
|  | 223 | @c pthread_rwlockattr_setkind_np | 
|  | 224 | @c pthread_rwlockattr_setpshared | 
|  | 225 | @c pthread_rwlock_destroy | 
|  | 226 | @c pthread_rwlock_init | 
|  | 227 | @c pthread_rwlock_rdlock | 
|  | 228 | @c pthread_rwlock_timedrdlock | 
|  | 229 | @c pthread_rwlock_timedwrlock | 
|  | 230 | @c pthread_rwlock_tryrdlock | 
|  | 231 | @c pthread_rwlock_trywrlock | 
|  | 232 | @c pthread_rwlock_unlock | 
|  | 233 | @c pthread_rwlock_wrlock | 
|  | 234 | @c pthread_self | 
|  | 235 | @c pthread_setaffinity_np | 
|  | 236 | @c pthread_setcancelstate | 
|  | 237 | @c pthread_setcanceltype | 
|  | 238 | @c pthread_setconcurrency | 
|  | 239 | @c pthread_setname_np | 
|  | 240 | @c pthread_setschedparam | 
|  | 241 | @c pthread_setschedprio | 
|  | 242 | @c pthread_sigmask | 
|  | 243 | @c pthread_sigqueue | 
|  | 244 | @c pthread_spin_destroy | 
|  | 245 | @c pthread_spin_init | 
|  | 246 | @c pthread_spin_lock | 
|  | 247 | @c pthread_spin_trylock | 
|  | 248 | @c pthread_spin_unlock | 
|  | 249 | @c pthread_testcancel | 
|  | 250 | @c pthread_timedjoin_np | 
|  | 251 | @c pthread_tryjoin_np | 
|  | 252 | @c pthread_yield |