diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-04 17:15:05 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-04 17:15:05 +0100 |
| commit | e272dd8e4d2437423b5140ad76cb690f4e182d76 (patch) | |
| tree | 711387f3e53ded6e557cab3be202dc05782a314f /dev/DebuggerKit/Platform.h | |
| parent | 71f3aa93062d7eef5a3e4d4aea81e9b6dc77d427 (diff) | |
wip: DebuggerKit: implementation of the NeKernel debugging protocol.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/DebuggerKit/Platform.h')
| -rw-r--r-- | dev/DebuggerKit/Platform.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev/DebuggerKit/Platform.h b/dev/DebuggerKit/Platform.h new file mode 100644 index 0000000..b24c5d9 --- /dev/null +++ b/dev/DebuggerKit/Platform.h @@ -0,0 +1,17 @@ +/*** + DebuggerKit + (C) 2025 Amlal El Mahrouss + File: NeKernelContract.cc + Purpose: NeKernel Debugger +*/ + +#pragma once + +#ifdef DEBUGGERKIT_POSIX +#include <sys/socket.h> +#include <sys/types.h> +#include <sys/un.h> +#include <unistd.h> +#else +#error !!! DebuggerKit needs a networking backend !!! +#endif
\ No newline at end of file |
