This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch]: Trivial fix for typo in ia64/sys/ucontext.h


Hi Uli,

This fixes a typo in the ia64 version of ucontext.h.  Could you apply this?

Thanks,

	--david

2002-06-17  David Mosberger  <davidm@hpl.hp.com>

	* sysdeps/unix/sysv/linux/ia64/sys/ucontext.h (uc_sigmask): Fix
	typo: corresponding sigcontext field is called sc_mask, not sc_sigmask.
	Reported by Peter A. Buhr.

Index: sysdeps/unix/sysv/linux/ia64/sys/ucontext.h
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h,v
retrieving revision 1.6
diff -u -r1.6 ucontext.h
--- sysdeps/unix/sysv/linux/ia64/sys/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h	6 Jul 2001 04:56:17 -0000	1.6
+++ sysdeps/unix/sysv/linux/ia64/sys/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h	17 Jun 2002 18:46:34 -0000
@@ -56,7 +56,7 @@
 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
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]