/*
* Copyright ( C ) 2019 The Android Open Source Project
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
* * Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* * Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in
* the documentation and / or other materials provided with the
* distribution .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* " AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING ,
* BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS
* OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY ,
* OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE .
*/
#pragma once
/**
* @ file threads . h
* @ brief C11 threads .
*/
#include <sys/cdefs.h>
#include <pthread.h>
#include <time.h>
#include <bits/call_once.h>
__BEGIN_DECLS
#define TSS_DTOR_ITERATIONS PTHREAD_DESTRUCTOR_ITERATIONS
/** The type for a condition variable. */
typedef pthread_cond_t cnd_t;
/** The type for a thread. */
typedef pthread_t thrd_t;
/** The type for a thread-specific storage key. */
typedef pthread_key_t tss_t;
/** The type for a mutex. */
typedef pthread_mutex_t mtx_t;
/** The type for a thread-specific storage destructor. */
typedef void (*tss_dtor_t)(void * _Nullable);
/** The type of the function passed to thrd_create() to create a new thread. */
typedef int (*thrd_start_t)(void * _Nullable);
enum {
mtx_plain = 0 x1,
mtx_recursive = 0 x2,
mtx_timed = 0 x4,
};
enum {
thrd_success = 0 ,
thrd_busy = 1 ,
thrd_error = 2 ,
thrd_nomem = 3 ,
thrd_timedout = 4 ,
};
/* `thread_local` is a keyword in C++11 and C23; C11 had `_Thread_local` instead. */
#if !defined (__cplusplus) && (__STDC_VERSION__ >= 201112 L && __STDC_VERSION__ < 202311 L)
# undef thread_local
# define thread_local _Thread_local
#endif
#if __ANDROID_API__ >= 30
// This file is implemented as static inlines before API level 30.
/**
* Unblocks all threads blocked on ` _ _ cond ` .
*/
int cnd_broadcast(cnd_t* _Nonnull __cond) __INTRODUCED_IN(30 );
/**
* Destroys a condition variable .
*/
void cnd_destroy(cnd_t* _Nonnull __cond) __INTRODUCED_IN(30 );
/**
* Creates a condition variable .
*/
int cnd_init(cnd_t* _Nonnull __cond) __INTRODUCED_IN(30 );
/**
* Unblocks one thread blocked on ` _ _ cond ` .
*/
int cnd_signal(cnd_t* _Nonnull __cond) __INTRODUCED_IN(30 );
/**
* Unlocks ` _ _ mutex ` and blocks until ` _ _ cond ` is signaled or ` _ _ timeout ` occurs .
*/
int cnd_timedwait(cnd_t* _Nonnull __cond, mtx_t* _Nonnull __mutex, const struct timespec* _Nonnull __timeout)
__INTRODUCED_IN(30 );
/**
* Unlocks ` _ _ mutex ` and blocks until ` _ _ cond ` is signaled .
*/
int cnd_wait(cnd_t* _Nonnull __cond, mtx_t* _Nonnull __mutex) __INTRODUCED_IN(30 );
/**
* Destroys a mutex .
*/
void mtx_destroy(mtx_t* _Nonnull __mutex) __INTRODUCED_IN(30 );
/**
* Creates a mutex .
*/
int mtx_init(mtx_t* _Nonnull __mutex, int __type) __INTRODUCED_IN(30 );
/**
* Blocks until ` _ _ mutex ` is acquired .
*/
int mtx_lock(mtx_t* _Nonnull __mutex) __INTRODUCED_IN(30 );
/**
* Blocks until ` _ _ mutex ` is acquired or ` _ _ timeout ` expires .
*/
int mtx_timedlock(mtx_t* _Nonnull __mutex, const struct timespec* _Nonnull __timeout) __INTRODUCED_IN(30 );
/**
* Acquires ` _ _ mutex ` or returns ` thrd_busy ` .
*/
int mtx_trylock(mtx_t* _Nonnull __mutex) __INTRODUCED_IN(30 );
/**
* Unlocks ` _ _ mutex ` .
*/
int mtx_unlock(mtx_t* _Nonnull __mutex) __INTRODUCED_IN(30 );
/**
* Creates a new thread running ` _ _ function ( _ _ arg ) ` , and sets ` * _ _ thrd ` to
* the new thread .
*/
int thrd_create(thrd_t* _Nonnull __thrd, thrd_start_t _Nonnull __function, void * _Nullable __arg) __INTRODUCED_IN(30 );
/**
* Returns the ` thrd_t ` corresponding to the caller .
*/
thrd_t thrd_current(void ) __INTRODUCED_IN(30 );
/**
* Tells the OS to automatically dispose of ` _ _ thrd ` when it exits .
*/
int thrd_detach(thrd_t __thrd) __INTRODUCED_IN(30 );
/**
* Tests whether two threads are the same thread .
*/
int thrd_equal(thrd_t __lhs, thrd_t __rhs) __INTRODUCED_IN(30 );
/**
* Terminates the calling thread , setting its result to ` _ _ result ` .
*/
void thrd_exit(int __result) __noreturn __INTRODUCED_IN(30 );
/**
* Blocks until ` _ _ thrd ` terminates . If ` _ _ result ` is not null , ` * _ _ result `
* is set to the exiting thread ' s result .
*/
int thrd_join(thrd_t __thrd, int * _Nullable __result) __INTRODUCED_IN(30 );
/**
* Blocks the caller for at least ` _ _ duration ` unless a signal is delivered .
* If a signal causes the sleep to end early and ` _ _ remaining ` is not null ,
* ` * _ _ remaining ` is set to the time remaining .
*
* Returns 0 on success , or - 1 if a signal was delivered .
*/
int thrd_sleep(const struct timespec* _Nonnull __duration, struct timespec* _Nullable __remaining) __INTRODUCED_IN(30 );
/**
* Request that other threads should be scheduled .
*/
void thrd_yield(void ) __INTRODUCED_IN(30 );
/**
* Creates a thread - specific storage key with the associated destructor ( which
* may be null ) .
*/
int tss_create(tss_t* _Nonnull __key, tss_dtor_t _Nullable __dtor) __INTRODUCED_IN(30 );
/**
* Destroys a thread - specific storage key .
*/
void tss_delete(tss_t __key) __INTRODUCED_IN(30 );
/**
* Returns the value for the current thread held in the thread - specific storage
* identified by ` _ _ key ` .
*/
void * _Nullable tss_get(tss_t __key) __INTRODUCED_IN(30 );
/**
* Sets the current thread ' s value for the thread - specific storage identified
* by ` _ _ key ` to ` _ _ value ` .
*/
int tss_set(tss_t __key, void * _Nonnull __value) __INTRODUCED_IN(30 );
#endif
__END_DECLS
#include <android/legacy_threads_inlines.h>
Messung V0.5 in Prozent C=89 H=93 G=90
¤ Dauer der Verarbeitung: 0.2 Sekunden
(vorverarbeitet am 2026-06-28)
¤
*© Formatika GbR, Deutschland