Add getsid stub

This commit is contained in:
Jeremy Soller
2022-10-17 11:37:11 -06:00
parent fc8e55abd8
commit b30c33adc3
4 changed files with 15 additions and 3 deletions
+2 -2
View File
@@ -402,9 +402,9 @@ pub extern "C" fn getppid() -> pid_t {
Sys::getppid()
}
// #[no_mangle]
#[no_mangle]
pub extern "C" fn getsid(pid: pid_t) -> pid_t {
unimplemented!();
Sys::getsid(pid)
}
#[no_mangle]