siglongjmp documentation fix

Hi,

I noticed a glitch in the documentation of libunwind-setjmp.
Attached the patch.

Thanks.
--
Patrick Marlier
This commit is contained in:
Patrick Marlier 2012-09-10 13:36:39 -04:00 committed by Arun Sharma
parent 9184535486
commit ec262e127b
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ _longjmp(jmp_buf env,
int val);
.br
int
setjmp(sigjmp_buf env,
sigsetjmp(sigjmp_buf env,
int savemask);
.br
void

View File

@ -17,7 +17,7 @@
\Type{void} \Func{longjmp}(\Type{jmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\
\Type{int} \Func{\_setjmp}(\Type{jmp\_buf}~\Var{env});\\
\Type{void} \Func{\_longjmp}(\Type{jmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\
\Type{int} \Func{setjmp}(\Type{sigjmp\_buf}~\Var{env}, \Type{int}~\Var{savemask});\\
\Type{int} \Func{sigsetjmp}(\Type{sigjmp\_buf}~\Var{env}, \Type{int}~\Var{savemask});\\
\Type{void} \Func{siglongjmp}(\Type{sigjmp\_buf}~\Var{env}, \Type{int}~\Var{val});\\
\section{Description}