diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-29 22:26:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-29 22:26:33 -0500 |
| commit | db929ce81ca026cabb6d61d3c7b80190262d3c83 (patch) | |
| tree | df8f090049f9a3893da80ab7aae5bd001297cd5b /src/DebuggerKit/Config.h | |
| parent | 0c8f94db58637420fa3b9513823a3cdb3e92bf38 (diff) | |
| parent | f900849f98bad9988805ec89c587395752490486 (diff) | |
Merge pull request #40 from nekernel-org/developv0.0.7
chore: API and system design update.
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 |
