diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-29 15:56:44 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-29 15:56:44 -0400 |
commit | 9beb2334930db81ceada5aa6051fe5ac0554db32 (patch) | |
tree | ea9a41e1e9e0c00875a3fed96e23cd6b80903587 /posix | |
parent | c2b18f7a0efcf5c6abffba3d6f9b9d708a55c5b6 (diff) |
Mark a few more functions with __THROWNL.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/sys/wait.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/sys/wait.h b/posix/sys/wait.h index 6d7f0684c1..a5fd58f9d2 100644 --- a/posix/sys/wait.h +++ b/posix/sys/wait.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-1994,1996-2001,2003,2004,2005,2007,2009,2010 +/* Copyright (C) 1991-1994,1996-2001,2003,2004,2005,2007,2009,2010,2011 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -167,13 +167,13 @@ struct rusage; WUNTRACED bit is set in OPTIONS, return status for stopped children; otherwise don't. */ extern __pid_t wait3 (__WAIT_STATUS __stat_loc, int __options, - struct rusage * __usage) __THROW; + struct rusage * __usage) __THROWNL; #endif #ifdef __USE_BSD /* PID is like waitpid. Other args are like wait3. */ extern __pid_t wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc, int __options, - struct rusage *__usage) __THROW; + struct rusage *__usage) __THROWNL; #endif /* Use BSD. */ |