diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-14 17:49:19 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-14 17:50:15 +0200 |
| commit | 9f031e69aace747feb5bac78eccb9a1d5df81f74 (patch) | |
| tree | 3cc53814499a1b2c2d44fdffc7f694732cd44a1f /dev/LibDebugger/src/NeKernelContract.cc | |
| parent | 94ceccd5acda2fd035eb55235126b944b0915576 (diff) | |
feat(cc): Rename Parser.h to CompilerFrontend.h, refactor codebase
accordingly.
why:
- To make its intent clearer, and avoid future confusions.
also:
- Ran ./format.sh to the codebase.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibDebugger/src/NeKernelContract.cc')
| -rw-r--r-- | dev/LibDebugger/src/NeKernelContract.cc | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/dev/LibDebugger/src/NeKernelContract.cc b/dev/LibDebugger/src/NeKernelContract.cc index e653d12..33c0c48 100644 --- a/dev/LibDebugger/src/NeKernelContract.cc +++ b/dev/LibDebugger/src/NeKernelContract.cc @@ -21,14 +21,24 @@ NeKernelContract::NeKernelContract() = default; NeKernelContract::~NeKernelContract() = default; -bool NeKernelContract::Attach(std::string path, std::string argv, ProcessID& pid) noexcept { return false; } +bool NeKernelContract::Attach(std::string path, std::string argv, ProcessID& pid) noexcept { + return false; +} -bool NeKernelContract::Breakpoint(std::string symbol) noexcept { return false; } +bool NeKernelContract::Breakpoint(std::string symbol) noexcept { + return false; +} -bool NeKernelContract::Break() noexcept { return false; } +bool NeKernelContract::Break() noexcept { + return false; +} -bool NeKernelContract::Continue() noexcept { return false; } +bool NeKernelContract::Continue() noexcept { + return false; +} -bool NeKernelContract::Detach() noexcept { return false; } +bool NeKernelContract::Detach() noexcept { + return false; +} -#endif // LD_NEKERNEL_DEBUGGER
\ No newline at end of file +#endif // LD_NEKERNEL_DEBUGGER
\ No newline at end of file |
