blob: 684a8cedb249b6361b682b12459bfc443c4dcd50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -------------------------------------------
Copyright (C) 2024-2025, 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
|