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]

Move __wait



Ok to commit?

Andreas

2001-02-06  Andreas Jaeger  <aj@suse.de>

	* posix/sys/wait.h: Move __wait from here to...
	* include/sys/wait.h: ...here.

============================================================
Index: include/sys/wait.h
--- include/sys/wait.h	2000/12/27 17:17:41	1.6
+++ include/sys/wait.h	2001/02/06 09:02:59
@@ -6,6 +6,7 @@
 			  int __options);
 extern __pid_t __libc_waitpid (pid_t __pid, int *__stat_loc, int __options);
 extern __pid_t __libc_wait (int *__stat_loc);
+extern __pid_t __wait (__WAIT_STATUS __stat_loc);
 extern __pid_t __wait3 (__WAIT_STATUS __stat_loc,
 			int __options, struct rusage * __usage);
 extern __pid_t __wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc,
============================================================
Index: posix/sys/wait.h
--- posix/sys/wait.h	2001/01/28 04:12:09	1.33
+++ posix/sys/wait.h	2001/02/06 09:02:59
@@ -106,7 +106,6 @@
 
 /* Wait for a child to die.  When one does, put its status in *STAT_LOC
    and return its process ID.  For errors, return (pid_t) -1.  */
-extern __pid_t __wait (__WAIT_STATUS __stat_loc) __THROW;
 extern __pid_t wait (__WAIT_STATUS __stat_loc) __THROW;
 
 #ifdef	__USE_BSD

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj

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