1__SETFPUCW(3) Linux Programmer's Manual __SETFPUCW(3)
2
3
4
6 __setfpucw - set FPU control word on i386 architecture (obsolete)
7
9 #include <i386/fpu_control.h>
10
11 void __setfpucw(unsigned short control_word);
12
14 __setfpucw() transfers control_word to the registers of the FPU (float‐
15 ing-point unit) on the i386 architecture. This was used to control
16 floating-point precision, rounding and floating-point exceptions.
17
19 This function was a nonstandard GNU extension.
20
22 As of glibc 2.1 this function does not exist anymore. There are new
23 functions from C99, with prototypes in <fenv.h>, to control FPU round‐
24 ing modes, like fegetround(3), fesetround(3), and the floating-point
25 environment, like fegetenv(3), feholdexcept(3), fesetenv(3), feupda‐
26 teenv(3), and FPU exception handling, like feclearexcept(3), fegetex‐
27 ceptflag(3), feraiseexcept(3), fesetexceptflag(3), and fetestexcept(3).
28
29 If direct access to the FPU control word is still needed, the
30 _FPU_GETCW and _FPU_SETCW macros from <fpu_control.h> can be used.
31
33 __setfpucw(0x1372)
34
35 Set FPU control word on the i386 architecture to
36 - extended precision
37 - rounding to nearest
38 - exceptions on overflow, zero divide and NaN
39
41 feclearexcept(3)
42
43 <fpu_control.h>
44
46 This page is part of release 4.16 of the Linux man-pages project. A
47 description of the project, information about reporting bugs, and the
48 latest version of this page, can be found at
49 https://www.kernel.org/doc/man-pages/.
50
51
52
53Linux 2017-09-15 __SETFPUCW(3)