Re: [PATCH v2 0/4] MR47: kernel32/tests: Add tests for CancelSynchronousIo.
11 Jul
2022
11 Jul
'22
10:14 a.m.
Jinoh Kang (@iamahuman) commented about server/async.c:
return woken; }
+static int cancel_blocking( struct process *process, struct thread *thread, client_ptr_t iosb ) +{ + struct async *async; + int woken = 0; + +restart: + LIST_FOR_EACH_ENTRY( async, &process->asyncs, struct async, process_entry ) + { + if (async->terminated || async->canceled) continue; + if (async->blocking && (async->thread == thread) &&
Maybe you forgot to remove the extraneous parentheses? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/47#note_3875
1250
Age (days ago)
1250
Last active (days ago)
0 comments
1 participants
participants (1)
-
Jinoh Kang (@iamahuman)