Drop obsolete mentions of roc_send_signal

This commit is contained in:
Richard Feldman 2022-12-08 06:35:05 -05:00
parent c9adafa04b
commit 5958f50728
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
17 changed files with 17 additions and 100 deletions

View file

@ -83,12 +83,6 @@ pub unsafe extern "C" fn roc_shm_open(
libc::shm_open(name, oflag, mode as libc::c_uint)
}
#[cfg(unix)]
#[no_mangle]
pub unsafe extern "C" fn roc_send_signal(pid: libc::pid_t, sig: libc::c_int) -> libc::c_int {
libc::kill(pid, sig)
}
#[no_mangle]
pub extern "C" fn rust_main() -> i32 {
let mut roc_str = RocStr::default();