From: Roland McGrath Date: Wed, 20 Mar 1996 17:01:27 +0000 (+0000) Subject: * sysdeps/unix/bsd/waitflags.h (WNOREAP): New macro. X-Git-Tag: upstream/2.30~29604 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7193325fcd37097d80961e0731de03765f6b5ec;p=external%2Fglibc.git * sysdeps/unix/bsd/waitflags.h (WNOREAP): New macro. --- diff --git a/ChangeLog b/ChangeLog index c059c09..3f261a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Wed Mar 20 09:42:11 1996 Roland McGrath + * sysdeps/unix/bsd/waitflags.h (WNOREAP): New macro. + * elf/dl-load.c (_dl_map_object_from_fd): Always set L->l_type; if not lt_executable, then lt_library. * elf/rtld.c (dl_main): Don't set NEW->l_type after _dl_map_object. diff --git a/sysdeps/generic/signame.c b/sysdeps/generic/signame.c index 96a6cfe..0db511c 100644 --- a/sysdeps/generic/signame.c +++ b/sysdeps/generic/signame.c @@ -1,5 +1,5 @@ /* Convert between signal names and numbers. - Copyright (C) 1990, 1992, 1993, 1995 Free Software Foundation, Inc. + Copyright (C) 1990, 1992, 1993, 1995, 1996 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,6 +23,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include /* Some systems need this for . */ #include +#ifdef HAVE_STRING_H +#include +#endif + /* Some systems declare `sys_siglist in ; if configure defined SYS_SIGLIST_DECLARED, it may expect to find the declaration there. */ @@ -239,7 +243,7 @@ sig_abbrev (number) if (sig_table_nelts == 0) signame_init (); - + for (i = 0; i < sig_table_nelts; i++) if (sig_table[i].number == number) return (char *)sig_table[i].abbrev; @@ -293,10 +297,10 @@ strsignal (signal) int signal; { static char buf[] = "Signal 12345678901234567890"; - + if (signal > 0 || signal < NSIG) return (char *) sys_siglist[signal]; - + sprintf (buf, "Signal %d", signal); return buf; } diff --git a/sysdeps/unix/bsd/waitflags.h b/sysdeps/unix/bsd/waitflags.h index 52e4f80..b5b4932 100644 --- a/sysdeps/unix/bsd/waitflags.h +++ b/sysdeps/unix/bsd/waitflags.h @@ -1,5 +1,5 @@ -/* Definitions of flag bits for `waitpid' et al. -Copyright (C) 1992 Free Software Foundation, Inc. +/* Definitions of flag bits for `waitpid' et al. Hurd version. +Copyright (C) 1992, 1996 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 @@ -24,5 +24,8 @@ Cambridge, MA 02139, USA. */ /* Bits in the third argument to `waitpid'. */ #define WNOHANG 1 /* Don't block waiting. */ #define WUNTRACED 2 /* Report status of stopped children. */ +#ifdef __USE_GNU +#define WNOREAP 4 /* Don't remove record of child reported. */ +#endif #endif /* waitflags.h */