Remove unused code, cleanup

This commit is contained in:
Brandon Fish
2019-01-27 19:06:03 -06:00
parent 0bb45a69eb
commit 23492a4c53
3 changed files with 10 additions and 128 deletions

View File

@ -26,17 +26,17 @@ pub extern "C" fn _sigaddset(set: u32, signum: u32, ctx: &mut Ctx) -> i32 {
0
}
pub extern "C" fn _sigsuspend(one: i32, ctx: &mut Ctx) -> i32 {
pub extern "C" fn _sigsuspend(_one: i32, _ctx: &mut Ctx) -> i32 {
debug!("emscripten::_sigsuspend");
-1
}
pub extern "C" fn _sigprocmask(one: i32, two: i32, three: i32, ctx: &mut Ctx) -> i32 {
pub extern "C" fn _sigprocmask(_one: i32, _two: i32, _three: i32, _ctx: &mut Ctx) -> i32 {
debug!("emscripten::_sigprocmask");
0
}
pub extern "C" fn _signal(sig: u32, two: i32, _ctx: &mut Ctx) -> i32 {
pub extern "C" fn _signal(sig: u32, _two: i32, _ctx: &mut Ctx) -> i32 {
debug!("emscripten::_signal ({})", sig);
0
}