blob: aaa93d4d09b060f5acabc5a59fec66345319a18a (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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;
|