commit 96a08c1698189baa01e051bcee2c488ba594fa0c (tree) parent c17396691ce116a949618cb03d740997c7e80788 Author: Al Hoang <3811822-hoanga@users.noreply.gitlab.com> Date: Sun, 17 Jan 2021 13:44:40 -0600 initial support for haiku defer debug Diffstat:
| M | lib/std/debug.zig | | | 9 | +-------- |
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/lib/std/debug.zig b/lib/std/debug.zig @@ -1341,14 +1341,7 @@ pub const DebugInfo = struct { } fn lookupModuleHaiku(self: *DebugInfo, address: usize) !*ModuleDebugInfo { - // TODO: implement me - var di = ModuleDebugInfo{ - .base_address = undefined, - .dwarf = undefined, - .mapped_memory = undefined, - }; - - return &di; + @panic("TODO implement lookup module for Haiku"); } };