Module: wine Branch: master Commit: b74e1a570b40220803a31700558e523ead383638 URL: https://gitlab.winehq.org/wine/wine/-/commit/b74e1a570b40220803a31700558e523...
Author: Jinoh Kang jinoh.kang.kr@gmail.com Date: Fri Feb 9 21:54:00 2024 +0900
ntdll: Remove stale comment from set_async_direct_result() documentation.
The supplied async handle passed to set_async_direct_result() cannot be NULL.
---
dlls/ntdll/unix/sync.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/dlls/ntdll/unix/sync.c b/dlls/ntdll/unix/sync.c index 1df2ea6e9d2..cde6a0f8483 100644 --- a/dlls/ntdll/unix/sync.c +++ b/dlls/ntdll/unix/sync.c @@ -2593,7 +2593,6 @@ NTSTATUS WINAPI NtWaitForAlertByThreadId( const void *address, const LARGE_INTEG #endif
/* Notify direct completion of async and close the wait handle if it is no longer needed. - * This function is a no-op (returns status as-is) if the supplied handle is NULL. */ void set_async_direct_result( HANDLE *async_handle, NTSTATUS status, ULONG_PTR information, BOOL mark_pending ) {