blob: 142ed3ab2dc2e8bc803e8a7de807c3fc90691628 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.
------------------------------------------- */
#pragma once
#include <NeKit/Defines.h>
#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
namespace Kernel {
typedef UInt32 SignalKind;
}
|