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