diff options
author | Andreas Jaeger <aj@suse.de> | 2002-06-19 07:22:14 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2002-06-19 07:22:14 +0000 |
commit | e142f37a94778ba9af4cbeffcab2e12d6eab8551 (patch) | |
tree | 6e88229acbeaf37262b44565bd605b1de9fe2f1b /sysdeps | |
parent | 5b6cab3e1e9017020a5d2b3ddaab255ab50408c9 (diff) | |
download | glibc-e142f37a94778ba9af4cbeffcab2e12d6eab8551.tar.gz glibc-e142f37a94778ba9af4cbeffcab2e12d6eab8551.tar.xz glibc-e142f37a94778ba9af4cbeffcab2e12d6eab8551.zip |
(uc_sigmask): Fix typo: corresponding sigcontext field is called sc_mask, not sc_sigmask.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/sys/ucontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h b/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h index 740a33d6c6..1cb1ec5d24 100644 --- a/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -56,7 +56,7 @@ typedef struct ucontext ucontext_t; #define uc_mcontext _u._mc -#define uc_sigmask _u._mc.sc_sigmask +#define uc_sigmask _u._mc.sc_mask #define uc_stack _u._mc.sc_stack #define uc_link _u._uc._link |