Movatterモバイル変換


[0]ホーム

URL:


man7.org > Linux >man-pages

Linux/UNIX system programming training


fenv(3) — Linux manual page

NAME |LIBRARY |SYNOPSIS |DESCRIPTION |RETURN VALUE |ATTRIBUTES |STANDARDS |HISTORY |NOTES |BUGS |SEE ALSO |COLOPHON

fenv(3)                  Library Functions Manualfenv(3)

NAME        top

       feclearexcept, fegetexceptflag, feraiseexcept, fesetexceptflag,       fetestexcept, fegetenv, fegetround, feholdexcept, fesetround,       fesetenv, feupdateenv, feenableexcept, fedisableexcept,       fegetexcept - floating-point rounding and exception handling

LIBRARY        top

       Math library (libm,-lm)

SYNOPSIS        top

#include <fenv.h>int feclearexcept(intexcepts);int fegetexceptflag(fexcept_t *flagp, intexcepts);int feraiseexcept(intexcepts);int fesetexceptflag(const fexcept_t *flagp, intexcepts);int fetestexcept(intexcepts);int fegetround(void);int fesetround(introunding_mode);int fegetenv(fenv_t *envp);int feholdexcept(fenv_t *envp);int fesetenv(const fenv_t *envp);int feupdateenv(const fenv_t *envp);

DESCRIPTION        top

       These eleven functions were defined in C99, and describe the       handling of floating-point rounding and exceptions (overflow,       zero-divide, etc.).Exceptions       Thedivide-by-zero exception occurs when an operation on finite       numbers produces infinity as exact answer.       Theoverflow exception occurs when a result has to be represented       as a floating-point number, but has (much) larger absolute value       than the largest (finite) floating-point number that is       representable.       Theunderflow exception occurs when a result has to be represented       as a floating-point number, but has smaller absolute value than       the smallest positive normalized floating-point number (and would       lose much accuracy when represented as a denormalized number).       Theinexact exception occurs when the rounded result of an       operation is not equal to the infinite precision result.  It may       occur wheneveroverflow orunderflow occurs.       Theinvalid exception occurs when there is no well-defined result       for an operation, as for 0/0 or infinity - infinity or sqrt(-1).Exception handling       Exceptions are represented in two ways: as a single bit (exception       present/absent), and these bits correspond in some implementation-       defined way with bit positions in an integer, and also as an       opaque structure that may contain more information about the       exception (perhaps the code address where it occurred).       Each of the macrosFE_DIVBYZERO,FE_INEXACT,FE_INVALID,FE_OVERFLOW,FE_UNDERFLOWis defined when the implementation       supports handling of the corresponding exception, and if so then       defines the corresponding bit(s), so that one can call exception       handling functions, for example, using the integer argumentFE_OVERFLOW|FE_UNDERFLOW.  Other exceptions may be supported.  The       macroFE_ALL_EXCEPTis the bitwise OR of all bits corresponding to       supported exceptions.       Thefeclearexcept() function clears the supported exceptions       represented by the bits in its argument.       Thefegetexceptflag() function stores a representation of the       state of the exception flags represented by the argumentexcepts       in the opaque object*flagp.       Theferaiseexcept() function raises the supported exceptions       represented by the bits inexcepts.       Thefesetexceptflag() function sets the complete status for the       exceptions represented byexcepts to the value*flagp.  This value       must have been obtained by an earlier call offegetexceptflag()       with a last argument that contained all bits inexcepts.       Thefetestexcept() function returns a word in which the bits are       set that were set in the argumentexcepts and for which the       corresponding exception is currently set.Rounding mode       The rounding mode determines how the result of floating-point       operations is treated when the result cannot be exactly       represented in the significand.  Various rounding modes may be       provided: round to nearest (the default), round up (toward       positive infinity), round down (toward negative infinity), and       round toward zero.       Each of the macrosFE_TONEAREST,FE_UPWARD,FE_DOWNWARD, andFE_TOWARDZEROis defined when the implementation supports getting       and setting the corresponding rounding direction.       Thefegetround() function returns the macro corresponding to the       current rounding mode.       Thefesetround() function sets the rounding mode as specified by       its argument and returns zero when it was successful.       C99 and POSIX.1-2008 specify an identifier,FLT_ROUNDS, defined in<float.h>, which indicates the implementation-defined rounding       behavior for floating-point addition.  This identifier has one of       the following values:-1The rounding mode is not determinable.0Rounding is toward 0.1Rounding is toward nearest number.2Rounding is toward positive infinity.3Rounding is toward negative infinity.       Other values represent machine-dependent, nonstandard rounding       modes.       The value ofFLT_ROUNDSshould reflect the current rounding mode       as set byfesetround() (but see BUGS).Floating-point environment       The entire floating-point environment, including control modes and       status flags, can be handled as one opaque object, of typefenv_t.       The default environment is denoted byFE_DFL_ENV(of typeconstfenv_t *).  This is the environment setup at program start and it       is defined by ISO C to have round to nearest, all exceptions       cleared and a nonstop (continue on exceptions) mode.       Thefegetenv() function saves the current floating-point       environment in the object*envp.       Thefeholdexcept() function does the same, then clears all       exception flags, and sets a nonstop (continue on exceptions) mode,       if available.  It returns zero when successful.       Thefesetenv() function restores the floating-point environment       from the object*envp.  This object must be known to be valid, for       example, the result of a call tofegetenv() orfeholdexcept() or       equal toFE_DFL_ENV.  This call does not raise exceptions.       Thefeupdateenv() function installs the floating-point environment       represented by the object*envp, except that currently raised       exceptions are not cleared.  After calling this function, the       raised exceptions will be a bitwise OR of those previously set       with those in*envp.  As before, the object*envp must be known to       be valid.

RETURN VALUE        top

       These functions return zero on success and nonzero if an error       occurred.

ATTRIBUTES        top

       For an explanation of the terms used in this section, seeattributes(7).       ┌──────────────────────────────────────┬───────────────┬─────────┐       │InterfaceAttributeValue│       ├──────────────────────────────────────┼───────────────┼─────────┤       │feclearexcept(),fegetexceptflag(),  │ Thread safety │ MT-Safe │       │feraiseexcept(),fesetexceptflag(),  │               │         │       │fetestexcept(),fegetround(),        │               │         │       │fesetround(),fegetenv(),            │               │         │       │feholdexcept(),fesetenv(),          │               │         │       │feupdateenv(),feenableexcept(),     │               │         │       │fedisableexcept(),fegetexcept()     │               │         │       └──────────────────────────────────────┴───────────────┴─────────┘

STANDARDS        top

       C11, POSIX.1-2008, IEC 60559 (IEC 559:1989), ANSI/IEEE 854.

HISTORY        top

       C99, POSIX.1-2001.  glibc 2.1.

NOTES        top

glibc notes       If possible, the GNU C Library defines a macroFE_NOMASK_ENVwhich       represents an environment where every exception raised causes a       trap to occur.  You can test for this macro using#ifdef.  It is       defined only if_GNU_SOURCEis defined.  The C99 standard does not       define a way to set individual bits in the floating-point mask,       for example, to trap on specific flags.  Since glibc 2.2, glibc       supports the functionsfeenableexcept() andfedisableexcept() to       set individual floating-point traps, andfegetexcept() to query       the state.#define _GNU_SOURCE/* See feature_test_macros(7) */#include <fenv.h>int feenableexcept(intexcepts);int fedisableexcept(intexcepts);int fegetexcept(void);       Thefeenableexcept() andfedisableexcept() functions enable (dis‐       able) traps for each of the exceptions represented byexcepts and       return the previous set of enabled exceptions when successful, and       -1 otherwise.  Thefegetexcept() function returns the set of all       currently enabled exceptions.

BUGS        top

       C99 specifies that the value ofFLT_ROUNDSshould reflect changes       to the current rounding mode, as set byfesetround().  Currently,       this does not occur:FLT_ROUNDSalways has the value 1.

SEE ALSO        top

math_error(7)

COLOPHON        top

       This page is part of theman-pages (Linux kernel and C library       user-space interface documentation) project.  Information about       the project can be found at        ⟨https://www.kernel.org/doc/man-pages/⟩.  If you have a bug report       for this manual page, see       ⟨https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/CONTRIBUTING⟩.       This page was obtained from the tarball man-pages-6.15.tar.gz       fetched from       ⟨https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/⟩ on       2025-08-11.  If you discover any rendering problems in this HTML       version of the page, or you believe there is a better or more up-       to-date source for the page, or you have corrections or       improvements to the information in this COLOPHON (which isnot       part of the original manual page), send a mail to       man-pages@man7.orgLinux man-pages 6.15            2025-05-17fenv(3)

Pages that refer to this page:execve(2)fenv_t(3type)fma(3)j0(3)lrint(3)lround(3)matherr(3)pthread_create(3)remainder(3)rint(3)round(3)__setfpucw(3)y0(3)math_error(7)



HTML rendering created 2025-09-06 byMichael Kerrisk, author ofThe Linux Programming Interface.

For details of in-depthLinux/UNIX system programming training courses that I teach, lookhere.

Hosting byjambit GmbH.

Cover of TLPI


[8]ページ先頭

©2009-2025 Movatter.jp