diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-01 02:39:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-01 02:39:24 -0500 |
| commit | cd0c176275687a552bc546395bd2a39c92a3dd1b (patch) | |
| tree | d6ddc16fd59d851a093700bad8dd8baca1c914dc /docs | |
| parent | 82f7d186848681e2530c9fa8b196b55fad0f4823 (diff) | |
| parent | 9c3de597257be9911a5eeb86c33962b15d87a701 (diff) | |
Merge pull request #98 from nekernel-org/develop
Develop: Updated paper, containers, and container types.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tex/binary_mutex.tex | 4 | ||||
| -rw-r--r-- | docs/tex/core_process_scheduler.tex | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/tex/binary_mutex.tex b/docs/tex/binary_mutex.tex index 66869fd2..f5d54743 100644 --- a/docs/tex/binary_mutex.tex +++ b/docs/tex/binary_mutex.tex @@ -44,10 +44,10 @@ class BinaryMutex final { public: bool IsLocked() const; - bool Unlock() ; + bool Unlock(); public: - BOOL WaitForProcess(const UInt32& sec) ; + BOOL WaitForProcess(const UInt32& sec); public: bool Lock(USER_PROCESS* process); diff --git a/docs/tex/core_process_scheduler.tex b/docs/tex/core_process_scheduler.tex index 1722040e..a19267a3 100644 --- a/docs/tex/core_process_scheduler.tex +++ b/docs/tex/core_process_scheduler.tex @@ -55,7 +55,7 @@ class UserProcessTeam final { Array<USER_PROCESS, kSchedProcessLimitPerTeam>& AsArray(); Ref<USER_PROCESS>& AsRef(); - ProcessID& Id() ; + ProcessID& Id(); public: USER_PROCESS_ARRAY mProcessList; |
