Browse Source

no callback on process_kill

Aurel Bílý 6 years ago
parent
commit
4d0270f83c
1 changed files with 1 additions and 2 deletions
  1. 1 2
      libs/uv/uv_stubs.c

+ 1 - 2
libs/uv/uv_stubs.c

@@ -1164,8 +1164,7 @@ CAMLprim value w_spawn(value loop, value cb, value file, value args, value env,
 }
 }
 BC_WRAP10(w_spawn);
 BC_WRAP10(w_spawn);
 
 
-CAMLprim value w_process_kill(value handle, value signum, value cb) {
-	// TODO: callback?
+CAMLprim value w_process_kill(value handle, value signum) {
 	CAMLparam2(handle, signum);
 	CAMLparam2(handle, signum);
 	UV_ERROR_CHECK(uv_process_kill(Process_val(handle), Int_val(signum)));
 	UV_ERROR_CHECK(uv_process_kill(Process_val(handle), Int_val(signum)));
 	UV_SUCCESS_UNIT;
 	UV_SUCCESS_UNIT;