| author | |
| committer | |
| log | d9e46dceeca3f66b87e6b2e36415417495d2d2a0 |
| tree | 5b07bed9459cb86280a86d0af4d0c47d48e0aa40 |
| parent | 0aef1faa820e29a9eceb51a2048977d7be938f2a |
Fixes ziglang#80521 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Thread/Semaphore.zig+1-1| ... | ... | @@ -13,7 +13,7 @@ cond: Condition = .{}, |
| 13 | 13 | //! It is OK to initialize this field to any value. |
| 14 | 14 | permits: usize = 0, |
| 15 | 15 | |
| 16 | const RwLock = @This(); | |
| 16 | const Semaphore = @This(); | |
| 17 | 17 | const std = @import("../std.zig"); |
| 18 | 18 | const Mutex = std.Thread.Mutex; |
| 19 | 19 | const Condition = std.Thread.Condition; |