Squash commits for public release

This commit is contained in:
2025-02-12 09:54:05 -05:00
commit 7118adc514
1108 changed files with 80873 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _KERNEL_TASKING_SIGNAL_H
#define _KERNEL_TASKING_SIGNAL_H
#include <libkern/bits/signal.h>
#include <libkern/types.h>
#define SIGNALS_CNT 32
enum SIGNAL_ACTION {
SIGNAL_ACTION_ABNORMAL_TERMINATE,
SIGNAL_ACTION_TERMINATE,
SIGNAL_ACTION_STOP,
SIGNAL_ACTION_CONTINUE,
SIGNAL_ACTION_IGNORE,
};
#endif // _KERNEL_TASKING_SIGNAL_H