Remove "[Add new features here]" for 2.27
[glibc.git] / conform / data / ucontext.h-data
bloba840f464fc03531eb75f0255de9b47563916b71b
1 #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined XPG4 && !defined POSIX2008 && !defined XOPEN2K8
2 type mcontext_t
4 type ucontext_t
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
13 type sigset_t
14 type stack_t
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*)
21 allow uc_*
22 allow ss_*
23 allow *_t
24 #endif