◐ Shell
clean mode source ↗

Thread support library – cppreference.com

Aus cppreference.com

<metanoindex/>

Wenn das Makro konstanten __STDC_NO_THREADS__(C11) durch den Compiler definiert ist, werden die Header <threads.h> und alle hier aufgeführten Namen nicht vorgesehen .

Original:

If the macro constant __STDC_NO_THREADS__(C11) is defined by the compiler, the header <threads.h> and all of the names listed here are not provided.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Threads

definiert in Header <threads.h>

thrd_t

eine Art Identifizierung eines Thread

Original:

a type identifying a thread

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[edit]

ein Thread erstellt

Original:

creates a thread

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

prüft, ob zwei Kennungen zum gleichen Thema verweisen

Original:

checks if two identifiers refer to the same thread

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

erhält die aktuelle Thread-Kennung

Original:

obtains the current thread identifier

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

unterbricht die Ausführung des aufrufenden Threads für die gegebene Zeitspanne

Original:

suspends execution of the calling thread for the given period of time

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]
yields the current time slice
(Funktion) [edit]

beendet den aufrufenden Thread

Original:

terminates the calling thread

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

löst einen Faden

Original:

detaches a thread

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

blockiert, bis ein Thread beendet wird

Original:

blocks until a thread terminates

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

zeigt einen Thread Fehlerstatus

Original:

indicates a thread error status

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(konstanten) [edit]

thrd_start_t

(C11)

Funktion Zeigertyp übergeben thrd_create

Original:

function pointer type passed to thrd_create

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(typedef) [edit]

Gegenseitigen Ausschluss

definiert in Header <threads.h>

mtx_t

Mutex-Kennung

Original:

mutex identifier

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[edit]

schafft eine Mutex

Original:

creates a mutex

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

Blöcke bis Schleusen ein Mutex

Original:

blocks until locks a mutex

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

Blöcke bis sperrt ein Mutex oder mal aus

Original:

blocks until locks a mutex or times out

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

sperrt ein Mutex oder kehrt, ohne zu blockieren, wenn bereits gesperrt

Original:

locks a mutex or returns without blocking if already locked

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

entsperrt eine Mutex

Original:

unlocks a mutex

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

zerstört ein Mutex

Original:

destroys a mutex

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

definiert die Art eines Mutex

Original:

defines the type of a mutex

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(enum) [edit]

Rufen Sie einmal

Original:

Call once

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

once_flag the type of the flag used by call_once [edit]

initialisiert eine once_flag

Original:

initializes a once_flag

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Makro konstant) [edit]

ruft eine Funktion genau einmal

Original:

calls a function exactly once

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

Zustand Variablen

definiert in Header <threads.h>

cnd_t

Zustandsgröße Kennung

Original:

condition variable identifier

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

schafft eine Zustandsgröße

Original:

creates a condition variable

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

freigibt einem Thread auf einer Bedingung variable blockiert

Original:

unblocks one thread blocked on a condition variable

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

entsperrt alle Themen von einer Bedingung variable blockiert

Original:

unblocks all threads blocked on a condition variable

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

Blöcke auf einer Zustandsgröße

Original:

blocks on a condition variable

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

Blöcke auf einer Zustandsgröße, mit einem Timeout

Original:

blocks on a condition variable, with a timeout

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

zerstört eine Zustandsgröße

Original:

destroys a condition variable

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

Thread-lokalen Speicher

definiert in Header <threads.h>

lokalen Thread-Makros

Original:

thread local type macro

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Makro konstant) [edit]
tss_t

Thread-spezifische Speicher-Zeiger

Original:

thread-specific storage pointer

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[edit]

maximale Anzahl von Malen Destruktoren genannt werden

Original:

maximum number of times destructors are called

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Makro konstant) [edit]
tss_dtor_t function pointer type used for TSS destructor [edit]
creates thread-specific storage pointer with a given destructor
(Funktion) [edit]

liest aus Thread-spezifische Speicher

Original:

reads from thread-specific storage

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

schreiben, um Thread-spezifische Speicher

Original:

write to thread-specific storage

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

gibt die Ressourcen von einem bestimmten Thread-spezifische Zeiger statt

Original:

releases the resources held by a given thread-specific pointer

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]