@@ -185,15 +185,15 @@ void ArrayBufferAllocator::Free(void* data, size_t length) {
185185}
186186
187187
188- static void CheckImmediate (uv_check_t * handle, int status ) {
188+ static void CheckImmediate (uv_check_t * handle) {
189189 Environment* env = Environment::from_immediate_check_handle (handle);
190190 HandleScope scope (env->isolate ());
191191 Context::Scope context_scope (env->context ());
192192 MakeCallback (env, env->process_object (), env->immediate_callback_string ());
193193}
194194
195195
196- static void IdleImmediateDummy (uv_idle_t *, int ) {
196+ static void IdleImmediateDummy (uv_idle_t * handle ) {
197197 // Do nothing. Only for maintaining event loop.
198198 // TODO(bnoordhuis) Maybe make libuv accept NULL idle callbacks.
199199}
@@ -2520,13 +2520,13 @@ static void NeedImmediateCallbackSetter(
25202520}
25212521
25222522
2523- void SetIdle (uv_prepare_t * handle, int ) {
2523+ void SetIdle (uv_prepare_t * handle) {
25242524 Environment* env = Environment::from_idle_prepare_handle (handle);
25252525 env->isolate ()->GetCpuProfiler ()->SetIdle (true );
25262526}
25272527
25282528
2529- void ClearIdle (uv_check_t * handle, int ) {
2529+ void ClearIdle (uv_check_t * handle) {
25302530 Environment* env = Environment::from_idle_check_handle (handle);
25312531 env->isolate ()->GetCpuProfiler ()->SetIdle (false );
25322532}
@@ -3103,7 +3103,7 @@ static void EnableDebug(Isolate* isolate, bool wait_connect) {
31033103
31043104
31053105// Called from the main thread.
3106- static void DispatchDebugMessagesAsyncCallback (uv_async_t * handle, int status ) {
3106+ static void DispatchDebugMessagesAsyncCallback (uv_async_t * handle) {
31073107 if (debugger_running == false ) {
31083108 fprintf (stderr, " Starting debugger agent.\n " );
31093109 EnableDebug (node_isolate, false );
0 commit comments