diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-25 07:59:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-25 07:59:22 +0000 |
commit | 76c23bacd8d180c7955668fc0d181522f7b80d37 (patch) | |
tree | 26f35893b857c0f19f537afaa9a3369a133b8d0f /manual/setjmp.texi | |
parent | 8d2d51e373dd7c6c4a9b417a5bb7bdda3fe09b5f (diff) | |
download | glibc-76c23bacd8d180c7955668fc0d181522f7b80d37.tar.gz glibc-76c23bacd8d180c7955668fc0d181522f7b80d37.tar.xz glibc-76c23bacd8d180c7955668fc0d181522f7b80d37.zip |
Update.
* manual/setjmp.texi: Many changes to correct bad English introduced mainly by me. * manual/time.texi: Likewise. Patches by Neil Booth <neil@rosenet.ne.jp>.
Diffstat (limited to 'manual/setjmp.texi')
-rw-r--r-- | manual/setjmp.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/setjmp.texi b/manual/setjmp.texi index f6799912eb..6f3adeea93 100644 --- a/manual/setjmp.texi +++ b/manual/setjmp.texi @@ -12,7 +12,7 @@ functions. @menu * Intro: Non-Local Intro. When and how to use these facilities. -* Details: Non-Local Details. Functions for nonlocal exits. +* Details: Non-Local Details. Functions for non-local exits. * Non-Local Exits and Signals:: Portability issues. @end menu @@ -44,11 +44,11 @@ only a single function call, transferring control back to the point at which it was called, a non-local exit can potentially abandon many levels of nested function calls. -You identify return points for non-local exits calling the function +You identify return points for non-local exits by calling the function @code{setjmp}. This function saves information about the execution environment in which the call to @code{setjmp} appears in an object of type @code{jmp_buf}. Execution of the program continues normally after -the call to @code{setjmp}, but if a exit is later made to this return +the call to @code{setjmp}, but if an exit is later made to this return point by calling @code{longjmp} with the corresponding @w{@code{jmp_buf}} object, control is transferred back to the point where @code{setjmp} was called. The return value from @code{setjmp} is used to distinguish |