Function selfExePathAlloc [src]
selfExePath except allocates the result on the heap.
Caller owns returned memory.
Prototype
pub fn selfExePathAlloc(allocator: Allocator) ![]u8
Parameters
allocator: Allocator
Source
pub fn selfExePathAlloc(allocator: Allocator) ![]u8 {
// Use of max_path_bytes here is justified as, at least on one tested Linux
// system, readlink will completely fail to return a result larger than
// PATH_MAX even if given a sufficiently large buffer. This makes it
// fundamentally impossible to get the selfExePath of a program running in
// a very deeply nested directory chain in this way.
// TODO(#4812): Investigate other systems and whether it is possible to get
// this path by trying larger and larger buffers until one succeeds.
var buf: [max_path_bytes]u8 = undefined;
return allocator.dupe(u8, try selfExePath(&buf));
}