New repo setup

This commit is contained in:
2024-05-28 14:26:46 -05:00
commit 9ee197f57b
97 changed files with 11047 additions and 0 deletions

33
src/sched/signaltype.h Normal file
View File

@@ -0,0 +1,33 @@
#ifndef KERNEL_SIGNALTYPE_H
#define KERNEL_SIGNALTYPE_H
namespace kernel::sched
{
enum class SignalType
{
Unknown = 0,
Hangup,
Interrupt,
Quit,
IllegalInstruction,
Trap,
Abort,
Bus,
FloatingPoint,
Kill,
User_1,
Segfault,
User_2,
Pipe,
Alarm,
Terminate,
StackFault,
Child,
Continue,
Stop
};
}
#endif