System.Math.GetFPUExceptionMask

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetFPUExceptionMask: TFPUExceptionMask;

C++

extern DELPHI_PACKAGE TFPUExceptionMask __fastcall GetFPUExceptionMask(void);

Properties

Type Visibility Source Unit Parent
function public
System.Math.pas
System.Math.hpp
System.Math System.Math

Description

Returns the set of masked FPU floating-point arithmetic exceptions.

This is Intel platform depended function.

GetFPUExceptionMask returns the TFPUExceptionMask set of masked FPU arithmetic exceptions. GetFPUExceptionMask retrieves the set of masked floating point arithmetic exceptions from the FPU control word (see Set8087CW).

GetSSEExceptionMask is considered obsolete (Windows only, not cross-platform) and it is not available for NEXTGEN compilers.

Please use GetExceptionMask instead of GetFPUExceptionMask.

See Also