summaryrefslogtreecommitdiffhomepage
path: root/docs/tex/binary_mutex.tex
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-20 21:22:16 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-20 21:22:16 +0200
commite5edad799f0f8dbe0b34baf55c30849c941a43f9 (patch)
tree4ba49ec8e0d795e1d5e9a1638870ca4bf691bfa7 /docs/tex/binary_mutex.tex
parent89b938bcfb5ed69b639f363c91c4054e8d369e76 (diff)
feat: Heavily reworked the SMP subsystem paper.
refactor: BinaryMutex implementation and paper has been reworked as well using LockAndWait instead of LockOrWait. other: Reworked tooling macros. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'docs/tex/binary_mutex.tex')
-rw-r--r--docs/tex/binary_mutex.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tex/binary_mutex.tex b/docs/tex/binary_mutex.tex
index 9b8a1c40..1b5a59c2 100644
--- a/docs/tex/binary_mutex.tex
+++ b/docs/tex/binary_mutex.tex
@@ -51,7 +51,7 @@ class BinaryMutex final {
public:
bool Lock(USER_PROCESS* process);
- bool LockOrWait(USER_PROCESS* process, TimerInterface* timer);
+ bool LockAndWait(USER_PROCESS* process, TimerInterface* timer);
public:
NE_COPY_DEFAULT(BinaryMutex)