blob: 09d392f6ddd9039dc9d662069d69b60ba3912906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.
------------------------------------------- */
#pragma once
#include <NewKit/Defines.h>
typedef NeOS::UInt32 SignalKind;
#define SIGKILL 0
#define SIGPAUS 1
#define SIGEXEC 2
#define SIGTRAP 3
#define SIGABRT 4
#define SIGCONT 5
#define SIGBREK 666
#define SIGATCH 661
#define SIGDTCH 662
|