comment out sem_open

This commit is contained in:
Paul Sajna
2018-03-04 07:34:27 -08:00
parent caa89878d6
commit 0a245a386e
+7 -5
View File
@@ -25,11 +25,13 @@ pub extern "C" fn sem_destroy(sem: *mut sem_t) -> c_int {
unimplemented!();
}
#[no_mangle]
pub extern "C" fn sem_open(name: *const c_char,
oflag: c_int, ...) -> *mut sem_t {
unimplemented!();
}
/*
*#[no_mangle]
*pub extern "C" fn sem_open(name: *const c_char,
* oflag: c_int, ...) -> *mut sem_t {
* unimplemented!();
*}
*/
#[no_mangle]
pub extern "C" fn sem_close(sem: *mut sem_t) -> c_int {