mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
feat(thread): implement CSRWLock::Enter and CSRWLock::Leave for windows (#1)
This commit is contained in:
parent
8210d368f6
commit
2fb9fd284c
5 changed files with 61 additions and 6 deletions
17
storm/thread/win/SRWLock.cpp
Normal file
17
storm/thread/win/SRWLock.cpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#include "storm/thread/win/SRWLock.hpp"
|
||||
|
||||
void SRWLock::SUNNLockEnter(volatile SUNNLOCK* sunnlock) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
void SRWLock::SUNNLockLeave(volatile SUNNLOCK* sunnlock) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
void SRWLock::SURWLockEnter(volatile SURWLOCK* surwlock, int32_t forwriting) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
void SRWLock::SURWLockLeave(volatile SURWLOCK* surwlock, int32_t fromwriting) {
|
||||
// TODO
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue