summaryrefslogtreecommitdiff
path: root/devdocs/c/numeric%2Ffenv%2Ffeholdexcept.html
diff options
context:
space:
mode:
Diffstat (limited to 'devdocs/c/numeric%2Ffenv%2Ffeholdexcept.html')
-rw-r--r--devdocs/c/numeric%2Ffenv%2Ffeholdexcept.html74
1 files changed, 74 insertions, 0 deletions
diff --git a/devdocs/c/numeric%2Ffenv%2Ffeholdexcept.html b/devdocs/c/numeric%2Ffenv%2Ffeholdexcept.html
new file mode 100644
index 00000000..bb870968
--- /dev/null
+++ b/devdocs/c/numeric%2Ffenv%2Ffeholdexcept.html
@@ -0,0 +1,74 @@
+ <h1 id="firstHeading" class="firstHeading">feholdexcept</h1> <table class="t-dcl-begin"> <tr class="t-dsc-header"> <th> Defined in header <code>&lt;fenv.h&gt;</code> </th> <th> </th> <th> </th> </tr> <tr class="t-dcl t-since-c99"> <td> <pre data-language="c">int feholdexcept( fenv_t* envp );</pre>
+</td> <td class="t-dcl-nopad"> </td> <td> <span class="t-mark-rev t-since-c99">(since C99)</span> </td> </tr> </table> <p>First, saves the current floating-point environment to the object pointed to by <code>envp</code> (similar to <code><a href="feenv" title="c/numeric/fenv/feenv">fegetenv</a></code>), then clears all floating-point status flags, and then installs the non-stop mode: future floating-point exceptions will not interrupt execution (will not trap), until the floating-point environment is restored by <code><a href="feupdateenv" title="c/numeric/fenv/feupdateenv">feupdateenv</a></code> or <code><a href="feenv" title="c/numeric/fenv/feenv">fesetenv</a></code>.</p>
+<p>This function may be used in the beginning of a subroutine that must hide the floating-point exceptions it may raise from the caller. If only some exceptions must be suppressed, while others must be reported, the non-stop mode is usually ended with a call to <code><a href="feupdateenv" title="c/numeric/fenv/feupdateenv">feupdateenv</a></code> after clearing the unwanted exceptions.</p>
+<h3 id="Parameters"> Parameters</h3> <table class="t-par-begin"> <tr class="t-par"> <td> envp </td> <td> - </td> <td> pointer to the object of type <code>fenv_t</code> where the floating-point environment will be stored </td>
+</tr>
+</table> <h3 id="Return_value"> Return value</h3> <p><code>​0​</code> on success, non-zero otherwise.</p>
+<h3 id="Example"> Example</h3> <div class="t-example"> <div class="c source-c"><pre data-language="c">#include &lt;stdio.h&gt;
+#include &lt;fenv.h&gt;
+#include &lt;float.h&gt;
+
+#pragma STDC FENV_ACCESS ON
+
+void show_fe_exceptions(void)
+{
+ printf("current exceptions raised: ");
+ if(fetestexcept(FE_DIVBYZERO)) printf(" FE_DIVBYZERO");
+ if(fetestexcept(FE_INEXACT)) printf(" FE_INEXACT");
+ if(fetestexcept(FE_INVALID)) printf(" FE_INVALID");
+ if(fetestexcept(FE_OVERFLOW)) printf(" FE_OVERFLOW");
+ if(fetestexcept(FE_UNDERFLOW)) printf(" FE_UNDERFLOW");
+ if(fetestexcept(FE_ALL_EXCEPT)==0) printf(" none");
+ printf("\n");
+}
+
+double x2 (double x) /* times two */
+{
+ fenv_t curr_excepts;
+
+ /* Save and clear current f-p environment. */
+ feholdexcept(&amp;curr_excepts);
+
+ /* Raise inexact and overflow exceptions. */
+ printf("In x2(): x = %f\n", x=x*2.0);
+ show_fe_exceptions();
+ feclearexcept(FE_INEXACT); /* hide inexact exception from caller */
+
+ /* Merge caller's exceptions (FE_INVALID) */
+ /* with remaining x2's exceptions (FE_OVERFLOW). */
+ feupdateenv(&amp;curr_excepts);
+ return x;
+}
+
+int main(void)
+{
+ feclearexcept(FE_ALL_EXCEPT);
+ feraiseexcept(FE_INVALID); /* some computation with invalid argument */
+ show_fe_exceptions();
+ printf("x2(DBL_MAX) = %f\n", x2(DBL_MAX));
+ show_fe_exceptions();
+
+ return 0;
+}</pre></div> <p>Output:</p>
+<div class="text source-text"><pre data-language="c">current exceptions raised: FE_INVALID
+In x2(): x = inf
+current exceptions raised: FE_INEXACT FE_OVERFLOW
+x2(DBL_MAX) = inf
+current exceptions raised: FE_INVALID FE_OVERFLOW</pre></div> </div> <h3 id="References"> References</h3> <ul>
+<li> C11 standard (ISO/IEC 9899:2011): </li>
+<ul><li> 7.6.4.2 The feholdexcept function (p: 213-214) </li></ul>
+<li> C99 standard (ISO/IEC 9899:1999): </li>
+<ul><li> 7.6.4.2 The feholdexcept function (p: 194-195) </li></ul>
+</ul> <h3 id="See_also"> See also</h3> <table class="t-dsc-begin"> <tr class="t-dsc"> <td> <div><a href="feupdateenv" title="c/numeric/fenv/feupdateenv"> <span class="t-lines"><span>feupdateenv</span></span></a></div>
+<div><span class="t-lines"><span><span class="t-mark-rev t-since-c99">(C99)</span></span></span></div> </td> <td> restores the floating-point environment and raises the previously raise exceptions <br> <span class="t-mark">(function)</span> </td>
+</tr> <tr class="t-dsc"> <td> <div><a href="feenv" title="c/numeric/fenv/feenv"> <span class="t-lines"><span>fegetenv</span><span>fesetenv</span></span></a></div>
+<div><span class="t-lines"><span><span class="t-mark-rev t-since-c99">(C99)</span></span></span></div> </td> <td> saves or restores the current floating-point environment <br> <span class="t-mark">(function)</span> </td>
+</tr> <tr class="t-dsc"> <td> <div><a href="fe_dfl_env" title="c/numeric/fenv/FE DFL ENV"> <span class="t-lines"><span>FE_DFL_ENV</span></span></a></div>
+<div><span class="t-lines"><span><span class="t-mark-rev t-since-c99">(C99)</span></span></span></div> </td> <td> default floating-point environment <br> <span class="t-mark">(macro constant)</span> </td>
+</tr> <tr class="t-dsc"> <td colspan="2"> <span><a href="https://en.cppreference.com/w/cpp/numeric/fenv/feholdexcept" title="cpp/numeric/fenv/feholdexcept">C++ documentation</a></span> for <code>feholdexcept</code> </td>
+</tr> </table> <div class="_attribution">
+ <p class="_attribution-p">
+ &copy; cppreference.com<br>Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.<br>
+ <a href="https://en.cppreference.com/w/c/numeric/fenv/feholdexcept" class="_attribution-link">https://en.cppreference.com/w/c/numeric/fenv/feholdexcept</a>
+ </p>
+</div>