MCPcopy Create free account
hub / github.com/beefytech/Beef / Internal_FatalError

Function Internal_FatalError

BeefRT/rt/Internal.cpp:226–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

224static void TestReadCmd(Beefy::String& str);
225
226static void Internal_FatalError(const char* error)
227{
228 if (gBfRtCallbacks.CheckErrorHandler != NULL)
229 gBfRtCallbacks.CheckErrorHandler("FatalError", error, NULL, 0);
230
231 if (gClientPipeErrorFunc != NULL)
232 gClientPipeErrorFunc(error, 0);
233 else
234 BfpSystem_FatalError(error, "BEEF FATAL ERROR");
235}
236
237extern "C" BFRT_EXPORT int BF_CALLTYPE ftoa(float val, char* str)
238{

Callers 6

InitMethod · 0.85
ThrowIndexOutOfRangeMethod · 0.85
FatalErrorMethod · 0.85
Test_ErrorMethod · 0.85
ReportFailureMethod · 0.85

Calls 1

BfpSystem_FatalErrorFunction · 0.50

Tested by 1

Test_ErrorMethod · 0.68