mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Minor correction to the "installed header hygiene" patches.
* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally- deleted typedef ucontext_t.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2016-09-28 Zack Weinberg <zackw@panix.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally-
|
||||||
|
deleted typedef ucontext_t.
|
||||||
|
|
||||||
2016-09-26 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
2016-09-26 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||||
|
|
||||||
* sysdeps/unix/sysdep.h (__INTERNAL_SYSCALL0): New macro.
|
* sysdeps/unix/sysdep.h (__INTERNAL_SYSCALL0): New macro.
|
||||||
|
@ -74,14 +74,14 @@ typedef struct
|
|||||||
} mcontext_t;
|
} mcontext_t;
|
||||||
|
|
||||||
/* Userlevel context. */
|
/* Userlevel context. */
|
||||||
struct ucontext
|
typedef struct ucontext
|
||||||
{
|
{
|
||||||
unsigned long int uc_flags;
|
unsigned long int uc_flags;
|
||||||
struct ucontext *uc_link;
|
struct ucontext *uc_link;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
__sigset_t uc_sigmask;
|
__sigset_t uc_sigmask;
|
||||||
};
|
} ucontext_t;
|
||||||
|
|
||||||
|
|
||||||
#endif /* sys/ucontext.h */
|
#endif /* sys/ucontext.h */
|
||||||
|
Reference in New Issue
Block a user