aboutsummaryrefslogtreecommitdiff
path: root/lib/std/debug.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/debug.zig')
-rw-r--r--lib/std/debug.zig6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
index da78d4ee95..c48324422d 100644
--- a/lib/std/debug.zig
+++ b/lib/std/debug.zig
@@ -761,14 +761,12 @@ fn printLineInfo(
}
}
-// TODO use this
pub const OpenSelfDebugInfoError = error{
MissingDebugInfo,
- OutOfMemory,
UnsupportedOperatingSystem,
};
-pub fn openSelfDebugInfo(allocator: mem.Allocator) anyerror!DebugInfo {
+pub fn openSelfDebugInfo(allocator: mem.Allocator) OpenSelfDebugInfoError!DebugInfo {
nosuspend {
if (builtin.strip_debug_info)
return error.MissingDebugInfo;
@@ -785,7 +783,7 @@ pub fn openSelfDebugInfo(allocator: mem.Allocator) anyerror!DebugInfo {
.windows,
.solaris,
=> return DebugInfo.init(allocator),
- else => return error.UnsupportedDebugInfo,
+ else => return error.UnsupportedOperatingSystem,
}
}
}