Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
pthread.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_POSIX_PTHREAD_H_
8#define ZEPHYR_INCLUDE_POSIX_PTHREAD_H_
9
10#include <stdlib.h>
11#include <string.h>
12
13#include <zephyr/kernel.h>
14#include <zephyr/posix/time.h>
15#include <zephyr/posix/unistd.h>
16#include <zephyr/posix/sched.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22/*
23 * Pthread detach/joinable
24 * Undefine possibly predefined values by external toolchain headers
25 */
26#undef PTHREAD_CREATE_DETACHED
27#define PTHREAD_CREATE_DETACHED 1
28#undef PTHREAD_CREATE_JOINABLE
29#define PTHREAD_CREATE_JOINABLE 0
30
31/* Pthread resource visibility */
32#define PTHREAD_PROCESS_PRIVATE 0
33#define PTHREAD_PROCESS_SHARED 1
34
35/* Pthread cancellation */
36#define PTHREAD_CANCELED ((void *)-1)
37#define PTHREAD_CANCEL_ENABLE 0
38#define PTHREAD_CANCEL_DISABLE 1
39#define PTHREAD_CANCEL_DEFERRED 0
40#define PTHREAD_CANCEL_ASYNCHRONOUS 1
41
42/* Passed to pthread_once */
43#define PTHREAD_ONCE_INIT {0}
44
45/* The minimum allowable stack size */
46#define PTHREAD_STACK_MIN Z_KERNEL_STACK_SIZE_ADJUST(0)
47
53#define PTHREAD_COND_INITIALIZER (-1)
54
60int pthread_cond_init(pthread_cond_t *cv, const pthread_condattr_t *att);
61
68
75
82
89
96 const struct timespec *abstime);
97
104int pthread_condattr_init(pthread_condattr_t *att);
105
112int pthread_condattr_destroy(pthread_condattr_t *att);
113
120int pthread_condattr_getclock(const pthread_condattr_t *ZRESTRICT att,
121 clockid_t *ZRESTRICT clock_id);
122
130int pthread_condattr_setclock(pthread_condattr_t *att, clockid_t clock_id);
131
137#define PTHREAD_MUTEX_INITIALIZER (-1)
138
144#define PTHREAD_RWLOCK_INITIALIZER (-1)
145
146/*
147 * Mutex attributes - type
148 *
149 * PTHREAD_MUTEX_NORMAL: Owner of mutex cannot relock it. Attempting
150 * to relock will cause deadlock.
151 * PTHREAD_MUTEX_RECURSIVE: Owner can relock the mutex.
152 * PTHREAD_MUTEX_ERRORCHECK: If owner attempts to relock the mutex, an
153 * error is returned.
154 *
155 */
156#define PTHREAD_MUTEX_NORMAL 0
157#define PTHREAD_MUTEX_RECURSIVE 1
158#define PTHREAD_MUTEX_ERRORCHECK 2
159#define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_NORMAL
160
161/*
162 * Mutex attributes - protocol
163 *
164 * PTHREAD_PRIO_NONE: Ownership of mutex does not affect priority.
165 * PTHREAD_PRIO_INHERIT: Owner's priority is boosted to the priority of
166 * highest priority thread blocked on the mutex.
167 * PTHREAD_PRIO_PROTECT: Mutex has a priority ceiling. The owner's
168 * priority is boosted to the highest priority ceiling of all mutexes
169 * owned (regardless of whether or not other threads are blocked on
170 * any of these mutexes).
171 * FIXME: Only PRIO_NONE is supported. Implement other protocols.
172 */
173#define PTHREAD_PRIO_NONE 0
174
181
188
195
203 const struct timespec *abstime);
204
211
218 const pthread_mutexattr_t *att);
219
225int pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr, int protocol);
226
232int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type);
233
239int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr,
240 int *protocol);
241
247int pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *type);
248
256static inline int pthread_mutexattr_init(pthread_mutexattr_t *m)
257{
258 ARG_UNUSED(m);
259
260 return 0;
261}
262
270static inline int pthread_mutexattr_destroy(pthread_mutexattr_t *m)
271{
272 ARG_UNUSED(m);
273
274 return 0;
275}
276
289#define PTHREAD_BARRIER_DEFINE(name, count) pthread_barrier_t name = -1 __DEPRECATED_MACRO
290
291#define PTHREAD_BARRIER_SERIAL_THREAD 1
292
293/*
294 * Barrier attributes - type
295 */
296#define PTHREAD_PROCESS_PRIVATE 0
297#define PTHREAD_PROCESS_PUBLIC 1
298
305
312 unsigned int count);
313
320
327
334
341
348 int *ZRESTRICT pshared);
349
350/* Predicates and setters for various pthread attribute values that we
351 * don't support (or always support: the "process shared" attribute
352 * can only be true given the way Zephyr implements these
353 * objects). Leave these undefined for simplicity instead of defining
354 * stubs to return an error that would have to be logged and
355 * interpreted just to figure out that we didn't support it in the
356 * first place. These APIs are very rarely used even in production
357 * Unix code. Leave the declarations here so they can be easily
358 * uncommented and implemented as needed.
359
360int pthread_condattr_getpshared(const pthread_condattr_t * int *);
361int pthread_condattr_setpshared(pthread_condattr_t *, int);
362int pthread_mutex_consistent(pthread_mutex_t *);
363int pthread_mutex_getprioceiling(const pthread_mutex_t * int *);
364int pthread_mutex_setprioceiling(pthread_mutex_t *, int int *);
365int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *, int *);
366int pthread_mutexattr_getpshared(const pthread_mutexattr_t * int *);
367int pthread_mutexattr_getrobust(const pthread_mutexattr_t * int *);
368int pthread_mutexattr_setprioceiling(pthread_mutexattr_t *, int);
369int pthread_mutexattr_setpshared(pthread_mutexattr_t *, int);
370int pthread_mutexattr_setrobust(pthread_mutexattr_t *, int);
371*/
372
373/* Base Pthread related APIs */
374
384
391
398{
399 ARG_UNUSED(attr);
400 return 0;
401}
402
409{
410 ARG_UNUSED(attr);
411 return 0;
412}
413
414int pthread_attr_getguardsize(const pthread_attr_t *ZRESTRICT attr, size_t *ZRESTRICT guardsize);
415int pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize);
416int pthread_attr_setguardsize(pthread_attr_t *attr, size_t guardsize);
417int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize);
418int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy);
419int pthread_attr_getschedpolicy(const pthread_attr_t *attr, int *policy);
420int pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate);
421int pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate);
422int pthread_attr_init(pthread_attr_t *attr);
423int pthread_attr_destroy(pthread_attr_t *attr);
424int pthread_attr_getschedparam(const pthread_attr_t *attr,
425 struct sched_param *schedparam);
426int pthread_getschedparam(pthread_t pthread, int *policy,
427 struct sched_param *param);
428int pthread_attr_getstack(const pthread_attr_t *attr,
429 void **stackaddr, size_t *stacksize);
430int pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr,
431 size_t stacksize);
432#ifdef CONFIG_PTHREAD_IPC
433int pthread_once(pthread_once_t *once, void (*initFunc)(void));
434#endif
435FUNC_NORETURN void pthread_exit(void *retval);
436int pthread_join(pthread_t thread, void **status);
439int pthread_create(pthread_t *newthread, const pthread_attr_t *attr,
440 void *(*threadroutine)(void *), void *arg);
441int pthread_setcancelstate(int state, int *oldstate);
442int pthread_setcanceltype(int type, int *oldtype);
444int pthread_attr_setschedparam(pthread_attr_t *attr,
445 const struct sched_param *schedparam);
446int pthread_setschedparam(pthread_t pthread, int policy,
447 const struct sched_param *param);
450 const pthread_rwlockattr_t *attr);
453 const struct timespec *abstime);
455 const struct timespec *abstime);
460int pthread_key_create(pthread_key_t *key,
461 void (*destructor)(void *));
462int pthread_key_delete(pthread_key_t key);
463int pthread_setspecific(pthread_key_t key, const void *value);
464void *pthread_getspecific(pthread_key_t key);
465int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void));
467int pthread_setconcurrency(int new_level);
468
469void __z_pthread_cleanup_push(void *cleanup[3], void (*routine)(void *arg), void *arg);
470void __z_pthread_cleanup_pop(int execute);
471
472#define pthread_cleanup_push(_rtn, _arg) \
473 do /* enforce '{'-like behaviour */ { \
474 void *_z_pthread_cleanup[3]; \
475 __z_pthread_cleanup_push(_z_pthread_cleanup, _rtn, _arg)
476
477#define pthread_cleanup_pop(_ex) \
478 __z_pthread_cleanup_pop(_ex); \
479 } /* enforce '}'-like behaviour */ while (0)
480
481/* Glibc / Oracle Extension Functions */
482
497int pthread_setname_np(pthread_t thread, const char *name);
498
514int pthread_getname_np(pthread_t thread, char *name, size_t len);
515
516#ifdef CONFIG_PTHREAD_IPC
517
523int pthread_spin_destroy(pthread_spinlock_t *lock);
524
530int pthread_spin_init(pthread_spinlock_t *lock, int pshared);
531
537int pthread_spin_lock(pthread_spinlock_t *lock);
538
544int pthread_spin_trylock(pthread_spinlock_t *lock);
545
551int pthread_spin_unlock(pthread_spinlock_t *lock);
552
553#endif
554
555#ifdef __cplusplus
556}
557#endif
558
559#endif /* ZEPHYR_INCLUDE_POSIX_PTHREAD_H_ */
#define ZRESTRICT
Definition: common.h:36
Public kernel APIs.
state
Definition: parser_state.h:29
uint32_t pthread_cond_t
Definition: posix_types.h:72
uint32_t pthread_spinlock_t
Definition: posix_types.h:54
uint32_t pthread_t
Definition: posix_types.h:53
uint32_t pthread_mutex_t
Definition: posix_types.h:60
uint32_t pthread_rwlockattr_t
Definition: posix_types.h:91
uint32_t clockid_t
Definition: posix_types.h:33
uint32_t pthread_rwlock_t
Definition: posix_types.h:93
uint32_t pthread_barrier_t
Definition: posix_types.h:85
int pthread_condattr_init(pthread_condattr_t *att)
POSIX threading compatibility API.
int pthread_mutex_unlock(pthread_mutex_t *m)
POSIX threading compatibility API.
int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock)
int pthread_attr_init(pthread_attr_t *attr)
int pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr)
int pthread_rwlock_timedwrlock(pthread_rwlock_t *rwlock, const struct timespec *abstime)
int pthread_attr_setschedparam(pthread_attr_t *attr, const struct sched_param *schedparam)
int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr, int *protocol)
POSIX threading compatibility API.
int pthread_setspecific(pthread_key_t key, const void *value)
int pthread_equal(pthread_t pt1, pthread_t pt2)
Compare thread IDs.
int pthread_cond_init(pthread_cond_t *cv, const pthread_condattr_t *att)
POSIX threading compatibility API.
int pthread_setcancelstate(int state, int *oldstate)
int pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate)
int pthread_setconcurrency(int new_level)
int pthread_attr_destroy(pthread_attr_t *attr)
pthread_t pthread_self(void)
Obtain ID of the calling thread.
int pthread_attr_setguardsize(pthread_attr_t *attr, size_t guardsize)
int pthread_barrierattr_getpshared(const pthread_barrierattr_t *ZRESTRICT attr, int *ZRESTRICT pshared)
POSIX threading compatibility API.
int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock)
int pthread_barrierattr_destroy(pthread_barrierattr_t *b)
POSIX threading compatibility API.
static int pthread_mutexattr_init(pthread_mutexattr_t *m)
POSIX threading compatibility API.
Definition: pthread.h:256
int pthread_cond_wait(pthread_cond_t *cv, pthread_mutex_t *mut)
POSIX threading compatibility API.
static int pthread_mutexattr_destroy(pthread_mutexattr_t *m)
POSIX threading compatibility API.
Definition: pthread.h:270
int pthread_cancel(pthread_t pthread)
int pthread_join(pthread_t thread, void **status)
int pthread_condattr_getclock(const pthread_condattr_t *ZRESTRICT att, clockid_t *ZRESTRICT clock_id)
POSIX threading comatibility API.
static int pthread_rwlockattr_init(pthread_rwlockattr_t *attr)
initialize the read-write lock attributes object.
Definition: pthread.h:408
int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *att)
POSIX threading compatibility API.
int pthread_rwlock_destroy(pthread_rwlock_t *rwlock)
int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy)
int pthread_detach(pthread_t thread)
int pthread_rwlock_unlock(pthread_rwlock_t *rwlock)
int pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *type)
POSIX threading compatibility API.
int pthread_atfork(void(*prepare)(void), void(*parent)(void), void(*child)(void))
int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type)
POSIX threading compatibility API.
int pthread_cond_destroy(pthread_cond_t *cv)
POSIX threading compatibility API.
int pthread_getname_np(pthread_t thread, char *name, size_t len)
Get name of POSIX thread and store in name buffer that is of size len.
int pthread_cond_broadcast(pthread_cond_t *cv)
POSIX threading compatibility API.
int pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr, size_t stacksize)
int pthread_setname_np(pthread_t thread, const char *name)
Set name of POSIX thread.
int pthread_barrierattr_setpshared(pthread_barrierattr_t *attr, int pshared)
POSIX threading compatibility API.
int pthread_setcanceltype(int type, int *oldtype)
int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock)
int pthread_barrier_destroy(pthread_barrier_t *b)
POSIX threading compatibility API.
FUNC_NORETURN void pthread_exit(void *retval)
int pthread_mutex_timedlock(pthread_mutex_t *m, const struct timespec *abstime)
POSIX threading compatibility API.
int pthread_attr_getschedparam(const pthread_attr_t *attr, struct sched_param *schedparam)
int pthread_attr_getguardsize(const pthread_attr_t *ZRESTRICT attr, size_t *ZRESTRICT guardsize)
int pthread_condattr_setclock(pthread_condattr_t *att, clockid_t clock_id)
POSIX threading compatibility API.
static int pthread_rwlockattr_destroy(pthread_rwlockattr_t *attr)
Destroy the read-write lock attributes object.
Definition: pthread.h:397
int pthread_getschedparam(pthread_t pthread, int *policy, struct sched_param *param)
int pthread_create(pthread_t *newthread, const pthread_attr_t *attr, void *(*threadroutine)(void *), void *arg)
int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock)
int pthread_mutex_trylock(pthread_mutex_t *m)
POSIX threading compatibility API.
void * pthread_getspecific(pthread_key_t key)
int pthread_barrierattr_init(pthread_barrierattr_t *b)
POSIX threading compatibility API.
int pthread_rwlock_timedrdlock(pthread_rwlock_t *rwlock, const struct timespec *abstime)
int pthread_setschedparam(pthread_t pthread, int policy, const struct sched_param *param)
int pthread_cond_signal(pthread_cond_t *cv)
POSIX threading compatibility API.
int pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize)
int pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate)
int pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr, int protocol)
POSIX threading compatibility API.
int pthread_attr_getstack(const pthread_attr_t *attr, void **stackaddr, size_t *stacksize)
int pthread_barrier_init(pthread_barrier_t *b, const pthread_barrierattr_t *attr, unsigned int count)
POSIX threading compatibility API.
int pthread_cond_timedwait(pthread_cond_t *cv, pthread_mutex_t *mut, const struct timespec *abstime)
POSIX threading compatibility API.
int pthread_key_delete(pthread_key_t key)
int pthread_attr_getschedpolicy(const pthread_attr_t *attr, int *policy)
void pthread_testcancel(void)
int pthread_condattr_destroy(pthread_condattr_t *att)
POSIX threading compatibility API.
int pthread_key_create(pthread_key_t *key, void(*destructor)(void *))
int pthread_barrier_wait(pthread_barrier_t *b)
POSIX threading compatibility API.
int pthread_mutex_destroy(pthread_mutex_t *m)
POSIX threading compatibility API.
int pthread_getconcurrency(void)
int pthread_mutex_lock(pthread_mutex_t *m)
POSIX threading compatibility API.
Definition: posix_types.h:87
Definition: posix_types.h:95
Definition: _timespec.h:22