diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 22:21:44 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 22:21:44 -0500 |
| commit | f900849f98bad9988805ec89c587395752490486 (patch) | |
| tree | df8f090049f9a3893da80ab7aae5bd001297cd5b /src/DebuggerKit/Config.h | |
| parent | 7a66458357d02a43d68a71e2b1152ada6b1ab481 (diff) | |
chore: API and system design update.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/DebuggerKit/Config.h')
| -rw-r--r-- | src/DebuggerKit/Config.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/DebuggerKit/Config.h b/src/DebuggerKit/Config.h new file mode 100644 index 0000000..2697832 --- /dev/null +++ b/src/DebuggerKit/Config.h @@ -0,0 +1,37 @@ +/* ======================================== + + Copyright (C) 2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license. + +======================================== */ + +#pragma once + +/// =========================================================== /// +/// @author Amlal El Mahrouss +/// =========================================================== /// + +#include <CompilerKit/Config.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 |
