XenevaOS
Loading...
Searching...
No Matches
signal.h
Go to the documentation of this file.
1
30#ifndef __SIGNAL_H__
31#define __SIGNAL_H__
32
33#include <sys/_kesignal.h>
34#include <sys/_keproc.h>
35
36
43#define signal(signum,handler) _KeSetSignal(signum,handler)
44
45/* @brief kill system call
46 * @param pid -- process id
47 * @param signum -- signal number
48 */
49#define kill(pid,signum) _KeSendSignal(pid,signum)
50
51#endif