| 1030 | } |
| 1031 | |
| 1032 | BFP_EXPORT void BFP_CALLTYPE BfpSystem_ShutdownCrashCatcher() |
| 1033 | { |
| 1034 | if (CrashCatcher::Shutdown()) |
| 1035 | { |
| 1036 | _set_purecall_handler(nullptr); |
| 1037 | _set_invalid_parameter_handler(nullptr); |
| 1038 | signal(SIGABRT, sOldSIGABRTHandler); |
| 1039 | } |
| 1040 | } |
| 1041 | |
| 1042 | BFP_EXPORT uint32 BFP_CALLTYPE BfpSystem_TickCount() |
| 1043 | { |
no test coverage detected