1FEHOLDEXCEPT(P) POSIX Programmer's Manual FEHOLDEXCEPT(P)
2
3
4
6 feholdexcept - save current floating-point environment
7
9 #include <fenv.h>
10
11 int feholdexcept(fenv_t *envp);
12
13
15 The feholdexcept() function shall save the current floating-point envi‐
16 ronment in the object pointed to by envp, clear the floating-point sta‐
17 tus flags, and then install a non-stop (continue on floating-point
18 exceptions) mode, if available, for all floating-point exceptions.
19
21 The feholdexcept() function shall return zero if and only if non-stop
22 floating-point exception handling was successfully installed.
23
25 No errors are defined.
26
27 The following sections are informative.
28
30 None.
31
33 None.
34
36 The feholdexcept() function should be effective on typical
37 IEC 60559:1989 standard implementations which have the default non-stop
38 mode and at least one other mode for trap handling or aborting. If the
39 implementation provides only the non-stop mode, then installing the
40 non-stop mode is trivial.
41
43 None.
44
46 fegetenv() , fesetenv() , feupdateenv() , the Base Definitions volume
47 of IEEE Std 1003.1-2001, <fenv.h>
48
50 Portions of this text are reprinted and reproduced in electronic form
51 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
52 -- Portable Operating System Interface (POSIX), The Open Group Base
53 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
54 Electrical and Electronics Engineers, Inc and The Open Group. In the
55 event of any discrepancy between this version and the original IEEE and
56 The Open Group Standard, the original IEEE and The Open Group Standard
57 is the referee document. The original Standard can be obtained online
58 at http://www.opengroup.org/unix/online.html .
59
60
61
62IEEE/The Open Group 2003 FEHOLDEXCEPT(P)