nu_fatal

Called internally by numem if a fatal error occured.

This function should exit the application and if possible, print an error. But it may not print an error.

Notes: This function may trigger a trap to alert a debugger to create a breakpoint.

export extern (C) @nogc nothrow @system pure
@weak
void
nu_fatal
(
const(char)[] errMsg
)

Parameters

errMsg const(char)[]

A D string containing the error in question.

Return Value

Type: void

Never returns, the application should crash at this point.

Meta