commit b2c62bcbf64a3ffa2af6a8e441f1c12e10c598ec (tree)
parent 73dcd1914071984c5a2e7c195212404824dbfb9e
Author: Scott Redig <git@scottredig.com>
Date: Mon, 7 Oct 2024 01:16:20 -0700
add assertLocked to std.debug.SafetyLock
Diffstat:
2 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
@@ -1531,9 +1531,9 @@ pub fn ConfigurableTrace(comptime size: usize, comptime stack_frame_count: usize
}
pub const SafetyLock = struct {
- state: State = .unlocked,
+ state: State = if (runtime_safety) .unlocked else .unknown,
- pub const State = if (runtime_safety) enum { unlocked, locked } else enum { unlocked };
+ pub const State = if (runtime_safety) enum { unlocked, locked } else enum { unknown };
pub fn lock(l: *SafetyLock) void {
if (!runtime_safety) return;
@@ -1551,8 +1551,22 @@ pub const SafetyLock = struct {
if (!runtime_safety) return;
assert(l.state == .unlocked);
}
+
+ pub fn assertLocked(l: SafetyLock) void {
+ if (!runtime_safety) return;
+ assert(l.state == .locked);
+ }
};
+test SafetyLock {
+ var safety_lock: SafetyLock = .{};
+ safety_lock.assertUnlocked();
+ safety_lock.lock();
+ safety_lock.assertLocked();
+ safety_lock.unlock();
+ safety_lock.assertUnlocked();
+}
+
/// Detect whether the program is being executed in the Valgrind virtual machine.
///
/// When Valgrind integrations are disabled, this returns comptime-known false.
diff --git a/lib/std/hash_map.zig b/lib/std/hash_map.zig
@@ -1692,7 +1692,7 @@ pub fn HashMapUnmanaged(
}
self.size = 0;
- self.pointer_stability = .{ .state = .unlocked };
+ self.pointer_stability = .{};
std.mem.swap(Self, self, &map);
map.deinit(allocator);
}