feat(thread): add missing ctor/dtor to CSRWLock

This commit is contained in:
fallenoak 2025-09-01 19:35:57 -05:00
parent 8ba9a76bde
commit 048dab15cd
4 changed files with 34 additions and 0 deletions

View file

@ -23,6 +23,8 @@ class CSRWLock {
#endif
// Member functions
CSRWLock();
~CSRWLock();
void Enter(int32_t forwriting);
void Leave(int32_t fromwriting);
};