mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
add a new function proto
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22577 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
07cd0ff298
commit
e62321ac41
@ -36,6 +36,15 @@ namespace sys {
|
|||||||
/// @brief Print a stack trace if a fatal signal occurs.
|
/// @brief Print a stack trace if a fatal signal occurs.
|
||||||
void PrintStackTraceOnErrorSignal();
|
void PrintStackTraceOnErrorSignal();
|
||||||
|
|
||||||
|
/// This function registers a function to be called when the user "interrupts"
|
||||||
|
/// the program (typically by pressing ctrl-c). When the user interrupts the
|
||||||
|
/// program, the specified interrupt function is called instead of the program
|
||||||
|
/// being killed, and the interrupt function automatically disabled. Note
|
||||||
|
/// that interrupt functions are not allowed to call any non-reentrant
|
||||||
|
/// functions. An null interrupt function pointer disables the current
|
||||||
|
/// installed function.
|
||||||
|
/// @brief Register a function to be called when ctrl-c is pressed.
|
||||||
|
void SetInterruptFunction(void (*IF)());
|
||||||
} // End sys namespace
|
} // End sys namespace
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user