swan
swan
@cbarrett Are you able to confirm whether this is working for you now?
I also hit a crash on this same callstack by having RadDbg open while updating graphics drivers
```Zig pub fn threadAllocWorker(allocator: std.mem.Allocator, queue: *Queue) !void { if (use_rpmalloc) try rp.RPMalloc(.{}).initThread(); while (true) { const alloc = try allocator.alloc(u8, alloc_size); while (!queue.tryWrite(alloc)) {} } } pub fn threadFreeWorker(allocator:...
I think personally my preference would be that `@src()` always gives you a `SourceLocation` with an absolute path to the file -- I think this is more useful as it...
@rohlem I'd be fine with that too, so long as there's a builtin for getting the cache path(s) too, so that the developer can construct an absolute path to the...
Ignore my initial comment, I agree that relative paths should be the preference. I'm trying to think about this from the angle that you might want to use src paths...