diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-25 13:02:30 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-01-25 13:02:30 +0100 |
| commit | ede6c1e0fd670d5af1c62ab52847fc518cfd4e9c (patch) | |
| tree | 6c06cd1239bf279ed94623146b9606669da98a1e /dev/Kernel/POSIXKit | |
| parent | bd2b4ed76032cbfb997a9452bdd221dfab9edd82 (diff) | |
NeKernel 1.0.0
- SMP scheduling.
- Ne Filesystem.
- Functional microkernel.
- Working AMD64 support.
- WiP ARM64 support.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/POSIXKit')
| -rw-r--r-- | dev/Kernel/POSIXKit/POSIX.h (renamed from dev/Kernel/POSIXKit/unix_layer.h) | 4 | ||||
| -rw-r--r-- | dev/Kernel/POSIXKit/Signals.h (renamed from dev/Kernel/POSIXKit/signal.h) | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/dev/Kernel/POSIXKit/unix_layer.h b/dev/Kernel/POSIXKit/POSIX.h index f543ed41..2142f2a1 100644 --- a/dev/Kernel/POSIXKit/unix_layer.h +++ b/dev/Kernel/POSIXKit/POSIX.h @@ -6,8 +6,6 @@ #pragma once
-#include <NewKit/Defines.h>
#include <KernelKit/UserProcessScheduler.h>
#include <KernelKit/PEFCodeMgr.h>
-#include <SystemKit/TeamScheduler.h>
-#include <SystemKit/SwapDisk.h>
\ No newline at end of file +#include <SystemKit/SwapDisk.h>
diff --git a/dev/Kernel/POSIXKit/signal.h b/dev/Kernel/POSIXKit/Signals.h index 75e6bf59..526c2d65 100644 --- a/dev/Kernel/POSIXKit/signal.h +++ b/dev/Kernel/POSIXKit/Signals.h @@ -8,7 +8,7 @@ /** https://pubs.opengroup.org/onlinepubs/009695399/basedefs/signal.h.html */ -#include <POSIXKit/unix_layer.h> +#include <POSIXKit/POSIX.h> typedef Kernel::UInt32 signal_t; |
