radare2/libr/include/r_util/r_signal.h

29 lines
593 B
C

#ifndef R_SIGNAL_H
#define R_SIGNAL_H
#if __UNIX__
#include <signal.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Returns atoi(str) if signal with `str` name not found. */
R_API int r_signal_from_string(const char *str);
/* Return NULL if signal with `code` not found. */
R_API const char* r_signal_to_string(int code);
R_API const char *r_signal_to_human(int signum);
// XXX this function should be portable, not-unix specific
#if __UNIX__
R_API void r_signal_sigmask(int how, const sigset_t *newmask, sigset_t *oldmask);
#endif
#ifdef __cplusplus
}
#endif
#endif // R_SIGNAL_H