std: restructure child process namespace

This commit is contained in:
Andrew Kelley
2024-05-23 11:25:41 -07:00
parent 793f820b39
commit f47824f24d
24 changed files with 2048 additions and 2048 deletions

View File

@@ -257,7 +257,7 @@ pub fn main() !void {
"arch/arm64/include/uapi/asm/unistd.h",
};
const child_result = try std.ChildProcess.run(.{
const child_result = try std.process.Child.run(.{
.allocator = allocator,
.argv = &child_args,
.cwd = linux_path,
@@ -318,7 +318,7 @@ pub fn main() !void {
"arch/riscv/include/uapi/asm/unistd.h",
};
const child_result = try std.ChildProcess.run(.{
const child_result = try std.process.Child.run(.{
.allocator = allocator,
.argv = &child_args,
.cwd = linux_path,