Update test-gencat.sh and tst-langinfo.sh
[glibc.git] / conform / data / ucontext.h-data
blob2b5f3b4a6f1b5a173c5d44321e35920afa1b30ed
1 #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX
2 type mcontext_t
4 type ucontext_t
6 element ucontext_t {ucontext_t*} uc_link
7 element ucontext_t sigset_t uc_sigmask
8 element ucontext_t stack_t uc_stack
9 element ucontext_t mcontext_t uc_mcontext
11 type sigset_t
12 type stack_t
14 function int getcontext (ucontext_t*)
15 function int setcontext (const ucontext_t*)
16 function void makecontext (ucontext_t*, void(*)(void), int, ...)
17 function int swapcontext (ucontext_t*, const ucontext_t*)
19 allow uc_*
20 allow ss_*
21 allow *_t
22 #endif