sys: FspFileNodeSetFileInfo: make CcSetFileSizes failures benign

tst: fscrash: test huge allocation size failures
This commit is contained in:
Bill Zissimopoulos
2016-11-06 17:15:07 -08:00
parent 31c40d017d
commit aa2d70d8de
6 changed files with 145 additions and 31 deletions

View File

@@ -26,8 +26,10 @@ extern "C" {
enum
{
FspCrashInterceptAccessViolation = 0x01,
FspCrashInterceptTerminate = 0x02,
FspCrashInterceptMask = 0x0f,
FspCrashInterceptAccessViolation = 0x00,
FspCrashInterceptTerminate = 0x01,
FspCrashInterceptHugeAllocationSize = 0x02,
FspCrashInterceptEnter = 0x10,
FspCrashInterceptLeave = 0x20,
};