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


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

bsd-_setjmp


This fixes a fairly obvious little bug.  setjmp is the sigsetjmp (.., 1)
variant, _setjmp the sigsetjmp (.., 0) variant.  We don't want two
setjmp's.

	* sysdeps/generic/bsd-_setjmp.c (setjmp): Rename to _setjmp.

Alan Modra
-- 
Linuxcare.  Support for the Revolution.

--- sysdeps/generic/bsd-_setjmp.c~	Sat Jun 19 00:00:00 1999
+++ sysdeps/generic/bsd-_setjmp.c	Tue Nov 21 14:02:03 2000
@@ -28,7 +28,7 @@
    immediate unwinds.  */
 
 int
-setjmp (jmp_buf env)
+_setjmp (jmp_buf env)
 {
   return __sigsetjmp (env, 0);
 }



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