ΒΆvoid SetInfoSignalFunction(void (*)() Handler)

Description

Registers a function to be called when an "info" signal is delivered to the process. On POSIX systems, this will be SIGUSR1; on systems that have it, SIGINFO will also be used (typically ctrl-t). Note that signal handlers are not allowed to call any non-reentrant functions. An null function pointer disables the current installed function. Note also that the handler may be executed on a different thread on some platforms.

Declared at: llvm/include/llvm/Support/Signals.h:89

Parameters

void (*)() Handler