diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/nu/simple_rwlock.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/nu/simple_rwlock.h')
-rw-r--r-- | Src/nu/simple_rwlock.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/Src/nu/simple_rwlock.h b/Src/nu/simple_rwlock.h new file mode 100644 index 00000000..f9952959 --- /dev/null +++ b/Src/nu/simple_rwlock.h @@ -0,0 +1,49 @@ +#pragma once + +/* +Simple Reader/Writer lock. Lets unlimited readers through but a writer will lock exclusively +not meant for high-throughput uses +this is useful when writes are very infrequent +*/ +#include <bfc/platform/types.h> +#include <windows.h> + +typedef size_t simple_rwlock_t; +static const size_t simple_rwlock_writer_active = 1; // writer active flag +static const size_t simple_rwlock_reader_increment= 2; // to adjust reader count + +static inline void simple_rwlock_write_lock(simple_rwlock_t *lock) +{ + while (InterlockedCompareExchangePointer((PVOID volatile*)lock, (PVOID)simple_rwlock_writer_active, 0)) + { + // nop + } +} + +static inline void simple_rwlock_write_unlock(simple_rwlock_t *lock) +{ +#ifdef _WIN64 + InterlockedExchangeAdd64((LONGLONG volatile*)lock, -simple_rwlock_writer_active); +#else + InterlockedExchangeAdd((LONG volatile*)lock, -simple_rwlock_writer_active); +#endif +} + + +static inline void simple_rwlock_read_lock(simple_rwlock_t *lock) +{ + InterlockedExchangeAdd((LONG volatile*)lock, simple_rwlock_reader_increment); + while ((*lock & simple_rwlock_writer_active)) + { + // nope + } +} + +static inline void simple_rwlock_read_unlock(simple_rwlock_t *lock) +{ + #ifdef _WIN64 + InterlockedExchangeAdd64((LONGLONG volatile*)lock, -simple_rwlock_reader_increment); +#else + InterlockedExchangeAdd((LONG volatile*)lock, -simple_rwlock_reader_increment); +#endif +} |