summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/tex/binary_mutex.tex4
-rw-r--r--docs/tex/core_process_scheduler.tex2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/tex/binary_mutex.tex b/docs/tex/binary_mutex.tex
index 583dffeb..66869fd2 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() noexcept;
+ bool Unlock() ;
public:
- BOOL WaitForProcess(const UInt32& sec) noexcept;
+ 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 4be38308..1722040e 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() noexcept;
+ ProcessID& Id() ;
public:
USER_PROCESS_ARRAY mProcessList;