initial commit
[glibc.git] / conform / data / ucontext.h-data
1 #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined XPG4 && !defined POSIX2008 && !defined XOPEN2K8
2 type mcontext_t
3
4 type ucontext_t
5
6 element ucontext_t {ucontext_t*} uc_link
7 // Bug 21634: uc_sigmask has wrong type.
8 xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
9 element ucontext_t stack_t uc_stack
10 // Bug 21635: uc_mcontext has wrong type.
11 xfail[powerpc32-linux]-element ucontext_t mcontext_t uc_mcontext
12
13 type sigset_t
14 type stack_t
15
16 function int getcontext (ucontext_t*)
17 function int setcontext (const ucontext_t*)
18 function void makecontext (ucontext_t*, void(*)(void), int, ...)
19 function int swapcontext (ucontext_t*, const ucontext_t*)
20
21 allow uc_*
22 allow ss_*
23 allow *_t
24 #endif