blob: 526c2d65b39dfcf25415e194d0c5c63625dd2d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -------------------------------------------
Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
------------------------------------------- */
#pragma once
/** https://pubs.opengroup.org/onlinepubs/009695399/basedefs/signal.h.html */
#include <POSIXKit/POSIX.h>
typedef Kernel::UInt32 signal_t;
#define SIGKILL 0
#define SIGPAUS 1
#define SIGEXEC 2
#define SIGTRAP 3
#define SIGABRT 4
#define SIGCONT 5
|