关于STATUS_FLOAT_MULTIPLE_TRAPS(0xC00002B5)异常

简介

STATUS_FLOAT_MULTIPLE_TRAPS---浮点数多重陷阱异常。值为0xC00002B5。定义如下

//
// MessageId: STATUS_FLOAT_MULTIPLE_TRAPS
//
// MessageText:
//
// {EXCEPTION}
// Multiple floating point traps.
//
#define STATUS_FLOAT_MULTIPLE_TRAPS      ((NTSTATUS)0xC00002B5L)    // winnt

说明

当进行浮点数运算时,且设置了浮点异常模式,当遇到比如除0.0操作时,抛此异常。

异常结构说明

ExceptionAddress: 00f515dc
   ExceptionCode: c00002b5
  ExceptionFlags: 00000000
NumberParameters: 2
   Parameter[0]: 00000000
   Parameter[1]: 0000e144---浮点 MXCSR寄存器的值,包含设置的浮点异常掩码、当前异常状态值、清零模式和四舍五入模式等

为虫子生,为虫子死,为虫子奋斗一辈子
原文地址:https://www.cnblogs.com/yilang/p/15348995.html