authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-19 18:33:54 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-19 18:33:54 -08:00
loga715c0c693801013e99801c92f7500d2fcb97229
treee5d83c58c3f2438791d8094befac05c15008255c
parentbf4bf92cb2914c4b451e2aec44b04d2fffd643af

started should be threadlocal


1 files changed, 1 insertions(+), 1 deletions(-)

src/mod.zig+1-1
...@@ -2,7 +2,7 @@ const std = @import("std");...@@ -2,7 +2,7 @@ const std = @import("std");
2const root = @import("root");2const root = @import("root");
3const impl = std.meta.globalOption("tracer_impl", type) orelse none;3const impl = std.meta.globalOption("tracer_impl", type) orelse none;
44
5var started = false;5threadlocal var started = false;
66
7pub const none = @import("./none.zig");7pub const none = @import("./none.zig");
8pub const log = @import("./log.zig");8pub const log = @import("./log.zig");