PatchworkOS  da8a090
A non-POSIX operating system.
Loading...
Searching...
No Matches
tid_t.h
Go to the documentation of this file.
1#ifndef _AUX_TID_T_H
2#define _AUX_TID_T_H 1
3
4/**
5 * @brief Thread Identifier.
6 * @ingroup libstd
7 *
8 * The `tid_t` type is used to store thread identifiers, note that these id's are only used by the kernel and its system
9 * calls, for libstd threading found in `thread.h` the `thrd_t` type should be used.
10 *
11 */
12typedef __UINT64_TYPE__ tid_t;
13
14#endif
__UINT64_TYPE__ tid_t
Thread Identifier.
Definition tid_t.h:12