6 Feb
2025
6 Feb
'25
12:19 p.m.
Rémi Bernon (@rbernon) commented about dlls/ntdll/unix/sync.c:
+{ + struct inproc_sync_cache_entry signal_stack_cache, *signal_cache; + struct inproc_sync_cache_entry wait_stack_cache, *wait_cache; + HANDLE queue = NULL; + NTSTATUS ret; + int device; + + if ((device = get_linux_sync_device()) < 0) + return STATUS_NOT_IMPLEMENTED; + + if ((ret = get_inproc_sync_obj( signal, 0, 0, &signal_stack_cache, &signal_cache ))) + return ret; + + switch (signal_cache->type) + { + case INPROC_SYNC_SEMAPHORE: I don't think case are indented in ntdll.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7226#note_93883