diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-22 09:59:41 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-22 09:59:41 +0100 |
| commit | b5adf16a96b9cbb80c74cf30404ed5bcff03ac34 (patch) | |
| tree | e1be4c79f2c7e878d162c23d5c0518c350b00724 /dev/DebuggerKit/Platform.h | |
| parent | b8e6e1492ed14e270b1061809b0569b8d2f4c0ec (diff) | |
chore: DebuggerKit cleanup.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/DebuggerKit/Platform.h')
| -rw-r--r-- | dev/DebuggerKit/Platform.h | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/dev/DebuggerKit/Platform.h b/dev/DebuggerKit/Platform.h index 26f47ff..f878845 100644 --- a/dev/DebuggerKit/Platform.h +++ b/dev/DebuggerKit/Platform.h @@ -1,9 +1,8 @@ -/*** - DebuggerKit - (C) 2025 Amlal El Mahrouss, licensed under Apache-2.0. - File: Platform.h - Purpose: NeCTI Debugger Platform headers. -*/ +/* ======================================== + + Copyright (C) 2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license. + +======================================== */ #pragma once @@ -11,8 +10,28 @@ /// @author Amlal El Mahrouss /// =========================================================== /// +#include <CompilerKit/Defines.h> + #include <arpa/inet.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/un.h> + +#include <sys/ptrace.h> +#include <sys/types.h> +#include <sys/user.h> +#include <sys/wait.h> #include <unistd.h> + +#include <filesystem> +#include <iostream> + +#include <dlfcn.h> +#include <mach-o/dyld.h> +#include <mach/mach.h> +#include <mach/mach_error.h> +#include <signal.h> + +#include <cstdint> +#include <string> +#include <unordered_map>
\ No newline at end of file |
