mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
81700b5363
Continuing the corrections to which headers conformtest tests for which standards, this patch corrects conformtest mistakes regarding which headers to test for the remaining standards (XOPEN2K POSIX2008 XOPEN2K8). Tested x86_64. 2014-03-05 Joseph Myers <joseph@codesourcery.com> * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable whole file. * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable whole file. * conform/data/sys/uio.h-data [POSIX2008]: Likewise. * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
23 lines
597 B
Plaintext
23 lines
597 B
Plaintext
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined XPG3 && !defined POSIX2008 && !defined XOPEN2K8
|
|
type mcontext_t
|
|
|
|
type ucontext_t
|
|
|
|
element ucontext_t {ucontext_t*} uc_link
|
|
element ucontext_t sigset_t uc_sigmask
|
|
element ucontext_t stack_t uc_stack
|
|
element ucontext_t mcontext_t uc_mcontext
|
|
|
|
type sigset_t
|
|
type stack_t
|
|
|
|
function int getcontext (ucontext_t*)
|
|
function int setcontext (const ucontext_t*)
|
|
function void makecontext (ucontext_t*, void(*)(void), int, ...)
|
|
function int swapcontext (ucontext_t*, const ucontext_t*)
|
|
|
|
allow uc_*
|
|
allow ss_*
|
|
allow *_t
|
|
#endif
|