[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r3407 - in glibc-package/trunk/debian: . patches/kfreebsd



Author: ps-guest
Date: 2009-04-16 06:18:16 +0000 (Thu, 16 Apr 2009)
New Revision: 3407

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
Log:
kfreebsd/local-sysdeps.diff: update to revision 2450 (from glibc-bsd).



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2009-04-14 07:16:50 UTC (rev 3406)
+++ glibc-package/trunk/debian/changelog	2009-04-16 06:18:16 UTC (rev 3407)
@@ -7,7 +7,7 @@
   * Update Swedish debconf translation, by Martin Bagger.  Closes: #522982.
 
   [ Petr Salinger ]
-  * kfreebsd/local-sysdeps.diff: update to revision 2449 (from glibc-bsd).
+  * kfreebsd/local-sysdeps.diff: update to revision 2450 (from glibc-bsd).
     Closes: #522686. Thanks to Jan Christoph Nordholz.
 
  -- Aurelien Jarno <aurel32@debian.org>  Wed, 08 Apr 2009 10:42:05 +0200

Modified: glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
===================================================================
--- glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff	2009-04-14 07:16:50 UTC (rev 3406)
+++ glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff	2009-04-16 06:18:16 UTC (rev 3407)
@@ -6523,7 +6523,7 @@
 +#endif
 --- /dev/null
 +++ b/ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/waitstatus.h
-@@ -0,0 +1,108 @@
+@@ -0,0 +1,105 @@
 +/* Definitions of status bits for `wait' et al.
 +   Copyright (C) 1992,1994,1996,1997,2000,2004 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -6548,9 +6548,6 @@
 +#endif
 +
 +
-+/* Everything extant so far uses these same bits.  */
-+
-+
 +/* If WIFEXITED(STATUS), the low-order 8 bits of the status.  */
 +#define	__WEXITSTATUS(status)	(((status) & 0xff00) >> 8)
 +
@@ -6568,7 +6565,7 @@
 +  (((signed char) (((status) & 0x7f) + 1) >> 1) > 0)
 +
 +/* Nonzero if STATUS indicates the child is stopped.  */
-+#define	__WIFSTOPPED(status)	(((status) & 0xff) == 0x7f)
++#define	__WIFSTOPPED(status)	(((status) & 0x7f) == 0x7f)
 +
 +/* Nonzero if STATUS indicates the child continued after a stop.  We only
 +   define this if <bits/waitflags.h> provides the WCONTINUED flag bit.  */


Reply to: