annotate doc/posix-functions/_longjmp.texi @ 10876:c83dc7e8df57

Refer to new POSIX:2008 standard.
author Bruno Haible <bruno@clisp.org>
date Sun, 14 Dec 2008 14:38:13 +0100
parents 7239ee79f3fa
children bb0ceefd22dc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9638
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 @node _longjmp
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 @section @code{_longjmp}
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 @findex _longjmp
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4
10876
c83dc7e8df57 Refer to new POSIX:2008 standard.
Bruno Haible <bruno@clisp.org>
parents: 10167
diff changeset
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_longjmp.html}
9638
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 Gnulib module: ---
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 Portability problems fixed by Gnulib:
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 @itemize
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 @end itemize
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 Portability problems not fixed by Gnulib:
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 @itemize
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 @item
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 This function is missing on some platforms:
070329237839 Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 Solaris 2.5.1, mingw.
10167
7239ee79f3fa Fix doc about _setjmp.
Bruno Haible <bruno@clisp.org>
parents: 10165
diff changeset
18 @end itemize
10165
ce916d729e43 Document abort() bugs.
Eric Blake <ebb9@byu.net>
parents: 9638
diff changeset
19
10167
7239ee79f3fa Fix doc about _setjmp.
Bruno Haible <bruno@clisp.org>
parents: 10165
diff changeset
20 Note: A future revision of POSIX later than the 2008/2009 one may drop the
7239ee79f3fa Fix doc about _setjmp.
Bruno Haible <bruno@clisp.org>
parents: 10165
diff changeset
21 functions @code{_setjmp} and @code{_longjmp}. Still, in 2008, on all
7239ee79f3fa Fix doc about _setjmp.
Bruno Haible <bruno@clisp.org>
parents: 10165
diff changeset
22 systems which have @code{_setjmp}, it is the fastest way to save the
7239ee79f3fa Fix doc about _setjmp.
Bruno Haible <bruno@clisp.org>
parents: 10165
diff changeset
23 registers but not the signal mask (up to 30 times faster than @code{setjmp}
7239ee79f3fa Fix doc about _setjmp.
Bruno Haible <bruno@clisp.org>
parents: 10165
diff changeset
24 on some systems).