Tagged Questions
6
votes
2answers
253 views
Third party code is modifying the FPU control word
The introduction - the long and boring part
(The question is at the end)
I am getting severe head aches over a third party COM component that keeps changing the FPU control word.
My development ...
1
vote
0answers
102 views
Setting FPU in Windows & OS X
I'm doing a program to set the precision control of the FPU to 24 bits and the rouding mode to "near" using the _controlfp_s function. I want to create a dll for Windows and a bundle for OS X.
I can't ...
0
votes
3answers
620 views
Handling fpu exception on windows
I would like to handle fpu exception on windows, something like:
#include <math.h>
#include <fenv.h>
#include <stdio.h>
int main()
{
double b = 0;
int raised;
...