diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-02-11 14:12:47 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-02-11 14:16:43 -0800 |
commit | 8ded91fb377ad48c66e8b44929af7214f40f3557 (patch) | |
tree | 1500db52510dba70137440de0b3635d75a8e91fa /manual/signal.texi | |
parent | fe77fe6d5155d224edfebbccdbfbc68f62e750dc (diff) | |
download | glibc-8ded91fb377ad48c66e8b44929af7214f40f3557.zip glibc-8ded91fb377ad48c66e8b44929af7214f40f3557.tar.gz glibc-8ded91fb377ad48c66e8b44929af7214f40f3557.tar.bz2 |
Fix some errors in declarations in the manual.
Diffstat (limited to 'manual/signal.texi')
-rw-r--r-- | manual/signal.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/signal.texi b/manual/signal.texi index 18db3d2..adcda37 100644 --- a/manual/signal.texi +++ b/manual/signal.texi @@ -2921,7 +2921,7 @@ you use it. @comment unistd.h @comment POSIX.1 -@deftypefun int pause () +@deftypefun int pause (void) The @code{pause} function suspends program execution until a signal arrives whose action is either to execute a handler function, or to terminate the process. @@ -3195,7 +3195,7 @@ This field is true if the process is currently using this stack. @comment signal.h @comment BSD -@deftypefun int sigstack (const struct sigstack *@var{stack}, struct sigstack *@var{oldstack}) +@deftypefun int sigstack (struct sigstack *@var{stack}, struct sigstack *@var{oldstack}) The @code{sigstack} function specifies an alternate stack for use during signal handling. When a signal is received by the process and its action indicates that the signal stack is used, the system arranges a |