lib: drop snake_case from io/types/bufio/net/os exports
This commit is contained in:
@@ -175,9 +175,9 @@ export fn execve(path: *u8, argv: **u8, envp: **u8) i32 = {
|
||||
};
|
||||
|
||||
// wait4(2): wait for `pid` (or any child if -1), store status in
|
||||
// `*status_out`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status_out: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status_out: i64,
|
||||
// `*status`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status: i64,
|
||||
options: i64, rusage: i64): i32;
|
||||
};
|
||||
|
||||
|
||||
@@ -175,9 +175,9 @@ export fn execve(path: *u8, argv: **u8, envp: **u8) i32 = {
|
||||
};
|
||||
|
||||
// wait4(2): wait for `pid` (or any child if -1), store status in
|
||||
// `*status_out`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status_out: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status_out: i64,
|
||||
// `*status`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status: i64,
|
||||
options: i64, rusage: i64): i32;
|
||||
};
|
||||
|
||||
|
||||
@@ -175,9 +175,9 @@ export fn execve(path: *u8, argv: **u8, envp: **u8) i32 = {
|
||||
};
|
||||
|
||||
// wait4(2): wait for `pid` (or any child if -1), store status in
|
||||
// `*status_out`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status_out: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status_out: i64,
|
||||
// `*status`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status: i64,
|
||||
options: i64, rusage: i64): i32;
|
||||
};
|
||||
|
||||
|
||||
@@ -175,9 +175,9 @@ export fn execve(path: *u8, argv: **u8, envp: **u8) i32 = {
|
||||
};
|
||||
|
||||
// wait4(2): wait for `pid` (or any child if -1), store status in
|
||||
// `*status_out`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status_out: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status_out: i64,
|
||||
// `*status`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status: i64,
|
||||
options: i64, rusage: i64): i32;
|
||||
};
|
||||
|
||||
|
||||
@@ -175,9 +175,9 @@ export fn execve(path: *u8, argv: **u8, envp: **u8) i32 = {
|
||||
};
|
||||
|
||||
// wait4(2): wait for `pid` (or any child if -1), store status in
|
||||
// `*status_out`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status_out: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status_out: i64,
|
||||
// `*status`, return the pid that ended (or negative errno).
|
||||
export fn wait4(pid: i32, status: *i32, options: i32, rusage: *void) i32 = {
|
||||
return syscall4(SYS_WAIT4, pid: i64, status: i64,
|
||||
options: i64, rusage: i64): i32;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user