diff options
author | Liam <byteslice@airmail.cc> | 2022-06-13 18:36:30 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-06-14 10:04:11 -0400 |
commit | 888f499188cb869dc8f8f1597c46add65c005324 (patch) | |
tree | 2abcaaf69fcb2c15352c99add7a97c9eea567486 /src/core/core.h | |
parent | c6e7ca562ac4c8957d64f7d9161aa53ca43a96ff (diff) |
kernel: implement KProcess suspension
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index 5c367349e2..60efe44103 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -163,8 +163,8 @@ public: /// Forcibly detach the debugger if it is running. void DetachDebugger(); - std::unique_lock<std::mutex> StallCPU(); - void UnstallCPU(); + std::unique_lock<std::mutex> StallProcesses(); + void UnstallProcesses(); /** * Initialize the debugger. |