| author | |
| committer | |
| log | b2c23066c0431542cbc97aedadd9c8890c298e7b |
| tree | 813a6e3b8a6342e728fa1e2d326b2334b7327f9b |
| parent | 4711aa5be3f62f38467e7c256fa9c4a98be4bbc2 |
| signature |
2 files changed, 2 insertions(+), 2 deletions(-)
src/chrome.zig+1-1| ... | ... | @@ -27,7 +27,7 @@ pub fn init_thread(args: struct { nfs.Dir }) !void { |
| 27 | 27 | const dir = args[0]; |
| 28 | 28 | tid = linux.gettid(); |
| 29 | 29 | |
| 30 | path = try std.fmt.allocPrintZ(alloc, "trace.{d}.{d}.chrome.json", .{ pid, tid }); | |
| 30 | path = try nio.fmt.allocPrintZ(alloc, "trace.{d}.{d}.chrome.json", .{ pid, tid }); | |
| 31 | 31 | file = try dir.createFile(path, .{}); |
| 32 | 32 | buffered_writer = .init(file); |
| 33 | 33 |
src/spall.zig+1-1| ... | ... | @@ -27,7 +27,7 @@ pub fn init_thread(args: struct { nfs.Dir }) !void { |
| 27 | 27 | const dir = args[0]; |
| 28 | 28 | tid = linux.gettid(); |
| 29 | 29 | |
| 30 | path = try std.fmt.allocPrintZ(alloc, "{d}.{d}.spall", .{ pid, tid }); | |
| 30 | path = try nio.fmt.allocPrintZ(alloc, "{d}.{d}.spall", .{ pid, tid }); | |
| 31 | 31 | file = try dir.createFile(path, .{}); |
| 32 | 32 | buffered_writer = .init(file); |
| 33 | 33 |