blob: 2859ab227a0a903132e037542772e0f801c9ce4e (
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
25
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.
------------------------------------------- */
#pragma once
#include <NewKit/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;
}
|