diff options
author | crupest <crupest@outlook.com> | 2021-06-10 11:35:29 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-10 11:35:29 +0800 |
commit | df97d69a45ba4e50114458e2b5c4185460f2d9f3 (patch) | |
tree | 6eeaab0f3877dd92af2d39812c63c7bb9e5bebd9 /operating-system-experiment/Mutex.h | |
parent | 3128281e50d30d12a053bc06018df4efcc8e988e (diff) | |
download | life-df97d69a45ba4e50114458e2b5c4185460f2d9f3.tar.gz life-df97d69a45ba4e50114458e2b5c4185460f2d9f3.tar.bz2 life-df97d69a45ba4e50114458e2b5c4185460f2d9f3.zip |
...
Diffstat (limited to 'operating-system-experiment/Mutex.h')
-rw-r--r-- | operating-system-experiment/Mutex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/operating-system-experiment/Mutex.h b/operating-system-experiment/Mutex.h index 163d9ca..d561f1a 100644 --- a/operating-system-experiment/Mutex.h +++ b/operating-system-experiment/Mutex.h @@ -35,6 +35,7 @@ private: private: #ifdef CRU_WINDOWS + HANDLE handle_; #else std::unique_ptr<pthread_mutex_t> mutex_; #endif |