mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
11 lines
231 B
C
11 lines
231 B
C
#include <ucontext.h>
|
|
/*
|
|
* The thread context: specific to GNU/Linux.
|
|
*
|
|
* We use the type ucontext_t, which includes all registers;
|
|
* Note that signal mask is also included in ucontext_t.
|
|
*
|
|
*/
|
|
|
|
typedef ucontext_t tcontext_t;
|