mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 22:35:24 +00:00
Revert "std.os: selfExePath implementation for haiku"
This reverts commit 7439eb5e99ba98bbdb2a0d0d71535e57d13f3c6e.
This commit is contained in:
parent
ddd7b0ea9e
commit
6bb776bb73
@ -2934,7 +2934,6 @@ pub const OpenSelfExeError = error{
|
||||
/// On Windows, file paths cannot contain these characters:
|
||||
/// '/', '*', '?', '"', '<', '>', '|'
|
||||
BadPathName,
|
||||
Overflow,
|
||||
Unexpected,
|
||||
} || os.OpenError || SelfExePathError || os.FlockError;
|
||||
|
||||
@ -3014,15 +3013,7 @@ pub fn selfExePath(out_buffer: []u8) SelfExePathError![]u8 {
|
||||
// TODO could this slice from 0 to out_len instead?
|
||||
return mem.sliceTo(out_buffer, 0);
|
||||
},
|
||||
.haiku => {
|
||||
// The only possible issue when looking for the self image path is
|
||||
// when the buffer is too short.
|
||||
// TODO replace with proper constants
|
||||
if (os.find_path(null, 1000, null, out_buffer.ptr, out_buffer.len) != 0)
|
||||
return error.Overflow;
|
||||
return mem.sliceTo(out_buffer, 0);
|
||||
},
|
||||
.openbsd => {
|
||||
.openbsd, .haiku => {
|
||||
// OpenBSD doesn't support getting the path of a running process, so try to guess it
|
||||
if (os.argv.len == 0)
|
||||
return error.FileNotFound;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user