mirror of git://sourceware.org/git/glibc.git
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:
parent
e33a23fbe8
commit
32daf20b54
|
@ -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>
|
||||
|
||||
* sysdeps/unix/sysdep.h (__INTERNAL_SYSCALL0): New macro.
|
||||
|
|
|
@ -74,14 +74,14 @@ typedef struct
|
|||
} mcontext_t;
|
||||
|
||||
/* Userlevel context. */
|
||||
struct ucontext
|
||||
typedef struct ucontext
|
||||
{
|
||||
unsigned long int uc_flags;
|
||||
struct ucontext *uc_link;
|
||||
stack_t uc_stack;
|
||||
mcontext_t uc_mcontext;
|
||||
__sigset_t uc_sigmask;
|
||||
};
|
||||
} ucontext_t;
|
||||
|
||||
|
||||
#endif /* sys/ucontext.h */
|
||||
|
|
Loading…
Reference in New Issue