]> git.ipfire.org Git - thirdparty/glibc.git/blame - nptl/pthread_create.c
Pass -mtune=i686 to assembler when compiling for i686
[thirdparty/glibc.git] / nptl / pthread_create.c
CommitLineData
e965d514 1/* Copyright (C) 2002-2007,2008,2009 Free Software Foundation, Inc.
76a50749
UD
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
19
20#include <errno.h>
21#include <stdbool.h>
22#include <stdlib.h>
23#include <string.h>
24#include "pthreadP.h"
25#include <hp-timing.h>
26#include <ldsodefs.h>
3e4fc359 27#include <atomic.h>
12d7ca07 28#include <libc-internal.h>
0e9d6240 29#include <resolv.h>
f8de5057 30#include <kernel-features.h>
76a50749
UD
31
32#include <shlib-compat.h>
33
34
35/* Local function to start thread and handle cleanup. */
36static int start_thread (void *arg);
76a50749
UD
37
38
39/* Nozero if debugging mode is enabled. */
40int __pthread_debug;
41
42/* Globally enabled events. */
e965d514 43static td_thr_events_t __nptl_threads_events __attribute_used__;
76a50749
UD
44
45/* Pointer to descriptor with the last event. */
e965d514 46static struct pthread *__nptl_last_event __attribute_used__;
76a50749 47
47202270
UD
48/* Number of threads running. */
49unsigned int __nptl_nthreads = 1;
50
76a50749
UD
51
52/* Code to allocate and deallocate a stack. */
76a50749
UD
53#include "allocatestack.c"
54
55/* Code to create the thread. */
8dea90aa 56#include <createthread.c>
76a50749
UD
57
58
76a50749 59struct pthread *
90491dc4 60internal_function
76a50749
UD
61__find_in_stack_list (pd)
62 struct pthread *pd;
63{
64 list_t *entry;
65 struct pthread *result = NULL;
66
e51deae7 67 lll_lock (stack_cache_lock, LLL_PRIVATE);
76a50749
UD
68
69 list_for_each (entry, &stack_used)
70 {
71 struct pthread *curp;
72
d4f64e1a 73 curp = list_entry (entry, struct pthread, list);
76a50749
UD
74 if (curp == pd)
75 {
76 result = curp;
77 break;
78 }
79 }
80
81 if (result == NULL)
82 list_for_each (entry, &__stack_user)
83 {
84 struct pthread *curp;
85
d4f64e1a 86 curp = list_entry (entry, struct pthread, list);
76a50749
UD
87 if (curp == pd)
88 {
89 result = curp;
90 break;
91 }
92 }
93
e51deae7 94 lll_unlock (stack_cache_lock, LLL_PRIVATE);
76a50749
UD
95
96 return result;
97}
98
99
100/* Deallocate POSIX thread-local-storage. */
3fa21fd8
UD
101void
102attribute_hidden
103__nptl_deallocate_tsd (void)
76a50749 104{
877e51b2
UD
105 struct pthread *self = THREAD_SELF;
106
76a50749
UD
107 /* Maybe no data was ever allocated. This happens often so we have
108 a flag for this. */
877e51b2 109 if (THREAD_GETMEM (self, specific_used))
76a50749
UD
110 {
111 size_t round;
6b4686a5 112 size_t cnt;
76a50749 113
6b4686a5
UD
114 round = 0;
115 do
76a50749 116 {
76a50749
UD
117 size_t idx;
118
c5acd3d7 119 /* So far no new nonzero data entry. */
877e51b2 120 THREAD_SETMEM (self, specific_used, false);
c5acd3d7 121
76a50749 122 for (cnt = idx = 0; cnt < PTHREAD_KEY_1STLEVEL_SIZE; ++cnt)
6b4686a5
UD
123 {
124 struct pthread_key_data *level2;
125
877e51b2 126 level2 = THREAD_GETMEM_NC (self, specific, cnt);
6b4686a5
UD
127
128 if (level2 != NULL)
129 {
130 size_t inner;
131
132 for (inner = 0; inner < PTHREAD_KEY_2NDLEVEL_SIZE;
133 ++inner, ++idx)
134 {
135 void *data = level2[inner].data;
136
877e51b2
UD
137 if (data != NULL)
138 {
139 /* Always clear the data. */
140 level2[inner].data = NULL;
141
6b4686a5
UD
142 /* Make sure the data corresponds to a valid
143 key. This test fails if the key was
144 deallocated and also if it was
145 re-allocated. It is the user's
146 responsibility to free the memory in this
147 case. */
877e51b2
UD
148 if (level2[inner].seq
149 == __pthread_keys[idx].seq
150 /* It is not necessary to register a destructor
151 function. */
152 && __pthread_keys[idx].destr != NULL)
153 /* Call the user-provided destructor. */
154 __pthread_keys[idx].destr (data);
6b4686a5
UD
155 }
156 }
157 }
158 else
159 idx += PTHREAD_KEY_1STLEVEL_SIZE;
160 }
877e51b2
UD
161
162 if (THREAD_GETMEM (self, specific_used) == 0)
163 /* No data has been modified. */
164 goto just_free;
76a50749 165 }
877e51b2
UD
166 /* We only repeat the process a fixed number of times. */
167 while (__builtin_expect (++round < PTHREAD_DESTRUCTOR_ITERATIONS, 0));
76a50749 168
877e51b2
UD
169 /* Just clear the memory of the first block for reuse. */
170 memset (&THREAD_SELF->specific_1stblock, '\0',
171 sizeof (self->specific_1stblock));
6b4686a5 172
877e51b2 173 just_free:
6b4686a5
UD
174 /* Free the memory for the other blocks. */
175 for (cnt = 1; cnt < PTHREAD_KEY_1STLEVEL_SIZE; ++cnt)
176 {
177 struct pthread_key_data *level2;
178
877e51b2 179 level2 = THREAD_GETMEM_NC (self, specific, cnt);
6b4686a5
UD
180 if (level2 != NULL)
181 {
182 /* The first block is allocated as part of the thread
183 descriptor. */
184 free (level2);
877e51b2 185 THREAD_SETMEM_NC (self, specific, cnt, NULL);
6b4686a5
UD
186 }
187 }
188
877e51b2 189 THREAD_SETMEM (self, specific_used, false);
76a50749
UD
190 }
191}
192
193
194/* Deallocate a thread's stack after optionally making sure the thread
195 descriptor is still valid. */
196void
90491dc4 197internal_function
76a50749
UD
198__free_tcb (struct pthread *pd)
199{
200 /* The thread is exiting now. */
ba25bb0f
UD
201 if (__builtin_expect (atomic_bit_test_set (&pd->cancelhandling,
202 TERMINATED_BIT) == 0, 1))
76a50749
UD
203 {
204 /* Remove the descriptor from the list. */
205 if (DEBUGGING_P && __find_in_stack_list (pd) == NULL)
206 /* Something is really wrong. The descriptor for a still
207 running thread is gone. */
208 abort ();
209
f17efcb4
UD
210 /* Free TPP data. */
211 if (__builtin_expect (pd->tpp != NULL, 0))
212 {
213 struct priority_protection_data *tpp = pd->tpp;
214
215 pd->tpp = NULL;
216 free (tpp);
217 }
218
76a50749
UD
219 /* Queue the stack memory block for reuse and exit the process. The
220 kernel will signal via writing to the address returned by
221 QUEUE-STACK when the stack is available. */
222 __deallocate_stack (pd);
223 }
224}
225
226
227static int
228start_thread (void *arg)
229{
230 struct pthread *pd = (struct pthread *) arg;
231
232#if HP_TIMING_AVAIL
233 /* Remember the time when the thread was started. */
234 hp_timing_t now;
235 HP_TIMING_NOW (now);
236 THREAD_SETMEM (pd, cpuclock_offset, now);
237#endif
238
0e9d6240
UD
239 /* Initialize resolver state pointer. */
240 __resp = &pd->res;
241
0f6699ea
UD
242#ifdef __NR_set_robust_list
243# ifndef __ASSUME_SET_ROBUST_LIST
244 if (__set_robust_list_avail >= 0)
245# endif
246 {
247 INTERNAL_SYSCALL_DECL (err);
248 /* This call should never fail because the initial call in init.c
249 succeeded. */
250 INTERNAL_SYSCALL (set_robust_list, err, 2, &pd->robust_head,
251 sizeof (struct robust_list_head));
252 }
253#endif
254
b051fc44
UD
255 /* If the parent was running cancellation handlers while creating
256 the thread the new thread inherited the signal mask. Reset the
257 cancellation signal mask. */
258 if (__builtin_expect (pd->parent_cancelhandling & CANCELING_BITMASK, 0))
259 {
260 INTERNAL_SYSCALL_DECL (err);
261 sigset_t mask;
262 __sigemptyset (&mask);
263 __sigaddset (&mask, SIGCANCEL);
264 (void) INTERNAL_SYSCALL (rt_sigprocmask, err, 4, SIG_UNBLOCK, &mask,
265 NULL, _NSIG / 8);
266 }
267
76a50749
UD
268 /* This is where the try/finally block should be created. For
269 compilers without that support we do use setjmp. */
877e51b2
UD
270 struct pthread_unwind_buf unwind_buf;
271
272 /* No previous handlers. */
273 unwind_buf.priv.data.prev = NULL;
274 unwind_buf.priv.data.cleanup = NULL;
275
276 int not_first_call;
277 not_first_call = setjmp ((struct __jmp_buf_tag *) unwind_buf.cancel_jmp_buf);
18d009ca 278 if (__builtin_expect (! not_first_call, 1))
76a50749 279 {
877e51b2
UD
280 /* Store the new cleanup handler info. */
281 THREAD_SETMEM (pd, cleanup_jmp_buf, &unwind_buf);
282
5f66b766
UD
283 if (__builtin_expect (pd->stopped_start, 0))
284 {
285 int oldtype = CANCEL_ASYNC ();
362038b0 286
5f66b766 287 /* Get the lock the parent locked to force synchronization. */
e51deae7 288 lll_lock (pd->lock, LLL_PRIVATE);
5f66b766 289 /* And give it up right away. */
e51deae7 290 lll_unlock (pd->lock, LLL_PRIVATE);
362038b0 291
5f66b766
UD
292 CANCEL_RESET (oldtype);
293 }
362038b0 294
76a50749 295 /* Run the code the user provided. */
42c8f44c
UD
296#ifdef CALL_THREAD_FCT
297 THREAD_SETMEM (pd, result, CALL_THREAD_FCT (pd));
298#else
cc775edf 299 THREAD_SETMEM (pd, result, pd->start_routine (pd->arg));
42c8f44c 300#endif
76a50749
UD
301 }
302
6b4686a5 303 /* Run the destructor for the thread-local data. */
3fa21fd8 304 __nptl_deallocate_tsd ();
6b4686a5 305
12d7ca07
RM
306 /* Clean up any state libc stored in thread-local variables. */
307 __libc_thread_freeres ();
76a50749 308
47202270
UD
309 /* If this is the last thread we terminate the process now. We
310 do not notify the debugger, it might just irritate it if there
311 is no thread left. */
729924a0 312 if (__builtin_expect (atomic_decrement_and_test (&__nptl_nthreads), 0))
47202270
UD
313 /* This was the last thread. */
314 exit (0);
315
76a50749
UD
316 /* Report the death of the thread if this is wanted. */
317 if (__builtin_expect (pd->report_events, 0))
318 {
319 /* See whether TD_DEATH is in any of the mask. */
320 const int idx = __td_eventword (TD_DEATH);
321 const uint32_t mask = __td_eventmask (TD_DEATH);
322
323 if ((mask & (__nptl_threads_events.event_bits[idx]
324 | pd->eventbuf.eventmask.event_bits[idx])) != 0)
325 {
326 /* Yep, we have to signal the death. Add the descriptor to
327 the list but only if it is not already on it. */
328 if (pd->nextevent == NULL)
329 {
330 pd->eventbuf.eventnum = TD_DEATH;
331 pd->eventbuf.eventdata = pd;
332
333 do
334 pd->nextevent = __nptl_last_event;
5a3ab2fc
UD
335 while (atomic_compare_and_exchange_bool_acq (&__nptl_last_event,
336 pd, pd->nextevent));
76a50749
UD
337 }
338
339 /* Now call the function to signal the event. */
340 __nptl_death_event ();
341 }
342 }
343
6461e577
RM
344 /* The thread is exiting now. Don't set this bit until after we've hit
345 the event-reporting breakpoint, so that td_thr_get_info on us while at
346 the breakpoint reports TD_THR_RUN state rather than TD_THR_ZOMBIE. */
347 atomic_bit_set (&pd->cancelhandling, EXITING_BIT);
76a50749 348
0f6699ea 349#ifndef __ASSUME_SET_ROBUST_LIST
1bcfb5a5 350 /* If this thread has any robust mutexes locked, handle them now. */
0f6699ea
UD
351# if __WORDSIZE == 64
352 void *robust = pd->robust_head.list;
353# else
b007ce7c 354 __pthread_slist_t *robust = pd->robust_list.__next;
0f6699ea 355# endif
df47504c
UD
356 /* We let the kernel do the notification if it is able to do so.
357 If we have to do it here there for sure are no PI mutexes involved
358 since the kernel support for them is even more recent. */
0f6699ea 359 if (__set_robust_list_avail < 0
df47504c 360 && __builtin_expect (robust != (void *) &pd->robust_head, 0))
1bcfb5a5
UD
361 {
362 do
363 {
b007ce7c 364 struct __pthread_mutex_s *this = (struct __pthread_mutex_s *)
0f6699ea
UD
365 ((char *) robust - offsetof (struct __pthread_mutex_s,
366 __list.__next));
367 robust = *((void **) robust);
d804f5df 368
0f6699ea 369# ifdef __PTHREAD_MUTEX_HAVE_PREV
b007ce7c 370 this->__list.__prev = NULL;
0f6699ea
UD
371# endif
372 this->__list.__next = NULL;
1bcfb5a5 373
e51deae7 374 lll_robust_dead (this->__lock, /* XYZ */ LLL_SHARED);
1bcfb5a5 375 }
df47504c 376 while (robust != (void *) &pd->robust_head);
1bcfb5a5 377 }
0f6699ea 378#endif
1bcfb5a5 379
b42a214c
UD
380 /* Mark the memory of the stack as usable to the kernel. We free
381 everything except for the space used for the TCB itself. */
382 size_t pagesize_m1 = __getpagesize () - 1;
383#ifdef _STACK_GROWS_DOWN
384 char *sp = CURRENT_STACK_FRAME;
385 size_t freesize = (sp - (char *) pd->stackblock) & ~pagesize_m1;
386#else
387# error "to do"
388#endif
389 assert (freesize < pd->stackblock_size);
390 if (freesize > PTHREAD_STACK_MIN)
391 madvise (pd->stackblock, freesize - PTHREAD_STACK_MIN, MADV_DONTNEED);
392
76a50749
UD
393 /* If the thread is detached free the TCB. */
394 if (IS_DETACHED (pd))
395 /* Free the TCB. */
396 __free_tcb (pd);
dff9a7a1
UD
397 else if (__builtin_expect (pd->cancelhandling & SETXID_BITMASK, 0))
398 {
399 /* Some other thread might call any of the setXid functions and expect
400 us to reply. In this case wait until we did that. */
401 do
085a4412 402 lll_futex_wait (&pd->setxid_futex, 0, LLL_PRIVATE);
dff9a7a1
UD
403 while (pd->cancelhandling & SETXID_BITMASK);
404
405 /* Reset the value so that the stack can be reused. */
406 pd->setxid_futex = 0;
407 }
76a50749
UD
408
409 /* We cannot call '_exit' here. '_exit' will terminate the process.
410
411 The 'exit' implementation in the kernel will signal when the
412 process is really dead since 'clone' got passed the CLONE_CLEARTID
413 flag. The 'tid' field in the TCB will be set to zero.
414
415 The exit code is zero since in case all threads exit by calling
416 'pthread_exit' the exit status must be 0 (zero). */
417 __exit_thread_inline (0);
418
419 /* NOTREACHED */
420 return 0;
421}
422
423
76a50749
UD
424/* Default thread attributes for the case when the user does not
425 provide any. */
426static const struct pthread_attr default_attr =
427 {
428 /* Just some value > 0 which gets rounded to the nearest page size. */
429 .guardsize = 1,
430 };
431
432
433int
434__pthread_create_2_1 (newthread, attr, start_routine, arg)
435 pthread_t *newthread;
436 const pthread_attr_t *attr;
437 void *(*start_routine) (void *);
438 void *arg;
439{
440 STACK_VARIABLES;
76a50749 441
1e6da2b0 442 const struct pthread_attr *iattr = (struct pthread_attr *) attr;
76a50749
UD
443 if (iattr == NULL)
444 /* Is this the best idea? On NUMA machines this could mean
445 accessing far-away memory. */
446 iattr = &default_attr;
447
dff9a7a1 448 struct pthread *pd = NULL;
1e6da2b0 449 int err = ALLOCATE_STACK (iattr, &pd);
729924a0 450 if (__builtin_expect (err != 0, 0))
76a50749
UD
451 /* Something went wrong. Maybe a parameter of the attributes is
452 invalid or we could not allocate memory. */
453 return err;
454
455
456 /* Initialize the TCB. All initializations with zero should be
457 performed in 'get_cached_stack'. This way we avoid doing this if
458 the stack freshly allocated with 'mmap'. */
459
5d5d5969 460#ifdef TLS_TCB_AT_TP
76a50749 461 /* Reference to the TCB itself. */
55c11fbd 462 pd->header.self = pd;
76a50749 463
d4f64e1a 464 /* Self-reference for TLS. */
55c11fbd 465 pd->header.tcb = pd;
76a50749
UD
466#endif
467
468 /* Store the address of the start routine and the parameter. Since
469 we do not start the function directly the stillborn thread will
470 get the information from its thread descriptor. */
471 pd->start_routine = start_routine;
472 pd->arg = arg;
473
474 /* Copy the thread attribute flags. */
14ffbc83
UD
475 struct pthread *self = THREAD_SELF;
476 pd->flags = ((iattr->flags & ~(ATTR_FLAG_SCHED_SET | ATTR_FLAG_POLICY_SET))
477 | (self->flags & (ATTR_FLAG_SCHED_SET | ATTR_FLAG_POLICY_SET)));
76a50749
UD
478
479 /* Initialize the field for the ID of the thread which is waiting
480 for us. This is a self-reference in case the thread is created
481 detached. */
482 pd->joinid = iattr->flags & ATTR_FLAG_DETACHSTATE ? pd : NULL;
483
484 /* The debug events are inherited from the parent. */
14ffbc83
UD
485 pd->eventbuf = self->eventbuf;
486
76a50749 487
14ffbc83
UD
488 /* Copy the parent's scheduling parameters. The flags will say what
489 is valid and what is not. */
490 pd->schedpolicy = self->schedpolicy;
491 pd->schedparam = self->schedparam;
76a50749 492
35f1e827
UD
493 /* Copy the stack guard canary. */
494#ifdef THREAD_COPY_STACK_GUARD
495 THREAD_COPY_STACK_GUARD (pd);
496#endif
497
827b7087
UD
498 /* Copy the pointer guard value. */
499#ifdef THREAD_COPY_POINTER_GUARD
500 THREAD_COPY_POINTER_GUARD (pd);
501#endif
502
14ffbc83
UD
503 /* Determine scheduling parameters for the thread. */
504 if (attr != NULL
505 && __builtin_expect ((iattr->flags & ATTR_FLAG_NOTINHERITSCHED) != 0, 0)
506 && (iattr->flags & (ATTR_FLAG_SCHED_SET | ATTR_FLAG_POLICY_SET)) != 0)
76a50749 507 {
1e6da2b0 508 INTERNAL_SYSCALL_DECL (scerr);
14ffbc83
UD
509
510 /* Use the scheduling parameters the user provided. */
511 if (iattr->flags & ATTR_FLAG_POLICY_SET)
512 pd->schedpolicy = iattr->schedpolicy;
513 else if ((pd->flags & ATTR_FLAG_POLICY_SET) == 0)
76a50749 514 {
1e6da2b0 515 pd->schedpolicy = INTERNAL_SYSCALL (sched_getscheduler, scerr, 1, 0);
14ffbc83 516 pd->flags |= ATTR_FLAG_POLICY_SET;
76a50749 517 }
14ffbc83
UD
518
519 if (iattr->flags & ATTR_FLAG_SCHED_SET)
520 memcpy (&pd->schedparam, &iattr->schedparam,
521 sizeof (struct sched_param));
522 else if ((pd->flags & ATTR_FLAG_SCHED_SET) == 0)
523 {
1e6da2b0 524 INTERNAL_SYSCALL (sched_getparam, scerr, 2, 0, &pd->schedparam);
14ffbc83
UD
525 pd->flags |= ATTR_FLAG_SCHED_SET;
526 }
527
528 /* Check for valid priorities. */
1e6da2b0 529 int minprio = INTERNAL_SYSCALL (sched_get_priority_min, scerr, 1,
14ffbc83 530 iattr->schedpolicy);
1e6da2b0 531 int maxprio = INTERNAL_SYSCALL (sched_get_priority_max, scerr, 1,
14ffbc83
UD
532 iattr->schedpolicy);
533 if (pd->schedparam.sched_priority < minprio
534 || pd->schedparam.sched_priority > maxprio)
76a50749 535 {
14ffbc83
UD
536 err = EINVAL;
537 goto errout;
76a50749
UD
538 }
539 }
540
541 /* Pass the descriptor to the caller. */
542 *newthread = (pthread_t) pd;
543
ebfa58bb
UD
544 /* Remember whether the thread is detached or not. In case of an
545 error we have to free the stacks of non-detached stillborn
546 threads. */
547 bool is_detached = IS_DETACHED (pd);
548
76a50749 549 /* Start the thread. */
80f536db 550 err = create_thread (pd, iattr, STACK_VARIABLES_ARGS);
76a50749
UD
551 if (err != 0)
552 {
553 /* Something went wrong. Free the resources. */
ebfa58bb 554 if (!is_detached)
a1fbd858
UD
555 {
556 errout:
557 __deallocate_stack (pd);
558 }
76a50749
UD
559 return err;
560 }
561
562 return 0;
563}
564versioned_symbol (libpthread, __pthread_create_2_1, pthread_create, GLIBC_2_1);
565
566
567#if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)
568int
569__pthread_create_2_0 (newthread, attr, start_routine, arg)
570 pthread_t *newthread;
571 const pthread_attr_t *attr;
572 void *(*start_routine) (void *);
573 void *arg;
574{
575 /* The ATTR attribute is not really of type `pthread_attr_t *'. It has
576 the old size and access to the new members might crash the program.
577 We convert the struct now. */
578 struct pthread_attr new_attr;
579
580 if (attr != NULL)
581 {
582 struct pthread_attr *iattr = (struct pthread_attr *) attr;
583 size_t ps = __getpagesize ();
584
585 /* Copy values from the user-provided attributes. */
586 new_attr.schedparam = iattr->schedparam;
587 new_attr.schedpolicy = iattr->schedpolicy;
588 new_attr.flags = iattr->flags;
589
590 /* Fill in default values for the fields not present in the old
591 implementation. */
592 new_attr.guardsize = ps;
593 new_attr.stackaddr = NULL;
594 new_attr.stacksize = 0;
ca85ede0 595 new_attr.cpuset = NULL;
76a50749
UD
596
597 /* We will pass this value on to the real implementation. */
598 attr = (pthread_attr_t *) &new_attr;
599 }
600
601 return __pthread_create_2_1 (newthread, attr, start_routine, arg);
602}
603compat_symbol (libpthread, __pthread_create_2_0, pthread_create,
604 GLIBC_2_0);
605#endif
7f08f55a
RM
606\f
607/* Information for libthread_db. */
608
609#include "../nptl_db/db_info.c"
b639d0c9
UD
610\f
611/* If pthread_create is present, libgcc_eh.a and libsupc++.a expects some other POSIX thread
612 functions to be present as well. */
613PTHREAD_STATIC_FN_REQUIRE (pthread_mutex_lock)
6c30d38f 614PTHREAD_STATIC_FN_REQUIRE (pthread_mutex_trylock)
b639d0c9
UD
615PTHREAD_STATIC_FN_REQUIRE (pthread_mutex_unlock)
616
617PTHREAD_STATIC_FN_REQUIRE (pthread_once)
ef2bb413 618PTHREAD_STATIC_FN_REQUIRE (pthread_cancel)
b639d0c9
UD
619
620PTHREAD_STATIC_FN_REQUIRE (pthread_key_create)
6c30d38f 621PTHREAD_STATIC_FN_REQUIRE (pthread_key_delete)
b639d0c9
UD
622PTHREAD_STATIC_FN_REQUIRE (pthread_setspecific)
623PTHREAD_STATIC_FN_REQUIRE (pthread_getspecific)