eliminate attempts at clever read-only synchronization in file stream & ctrl layer, just fall back to simple locking mechanism

This commit is contained in:
Ryan Fleury
2024-11-10 11:25:55 -08:00
parent bd4f82c8e8
commit 31f25d0fe7
4 changed files with 18 additions and 25 deletions
+1 -2
View File
@@ -50,8 +50,7 @@ struct FS_Stripe
{
Arena *arena;
OS_Handle cv;
OS_Handle r_mutex;
OS_Handle w_mutex;
OS_Handle rw_mutex;
};
////////////////////////////////