Elizabeth Figura pushed to branch master at wine / wine-staging
Commits:
-
38d4b8ca
by Elizabeth Figura at 2025-10-03T16:39:15-05:00
66 changed files:
- − patches/eventfd_synchronization/0001-configure-Check-for-sys-eventfd.h-ppoll-and-shm_open.patch
- − patches/eventfd_synchronization/0002-server-Create-server-objects-for-eventfd-based-synch.patch
- − patches/eventfd_synchronization/0003-ntdll-Create-eventfd-based-objects-for-semaphores.patch
- − patches/eventfd_synchronization/0004-ntdll-Implement-NtReleaseSemaphore.patch
- − patches/eventfd_synchronization/0005-ntdll-Implement-NtClose.patch
- − patches/eventfd_synchronization/0006-ntdll-Implement-NtWaitForMultipleObjects.patch
- − patches/eventfd_synchronization/0007-ntdll-server-Implement-NtCreateEvent.patch
- − patches/eventfd_synchronization/0008-ntdll-Implement-NtSetEvent.patch
- − patches/eventfd_synchronization/0009-ntdll-Implement-NtResetEvent.patch
- − patches/eventfd_synchronization/0010-ntdll-Implement-waiting-on-manual-reset-events.patch
- − patches/eventfd_synchronization/0011-server-Add-an-object-operation-to-grab-the-esync-fil.patch
- − patches/eventfd_synchronization/0012-server-Add-a-request-to-get-the-eventfd-file-descrip.patch
- − patches/eventfd_synchronization/0013-server-Create-eventfd-file-descriptors-for-process-o.patch
- − patches/eventfd_synchronization/0014-ntdll-server-Implement-waiting-on-server-bound-objec.patch
- − patches/eventfd_synchronization/0015-server-Create-eventfd-file-descriptors-for-event-obj.patch
- − patches/eventfd_synchronization/0016-server-Allow-re-setting-esync-events-on-the-server-s.patch
- − patches/eventfd_synchronization/0017-ntdll-Try-again-if-poll-returns-EINTR.patch
- − patches/eventfd_synchronization/0018-server-Create-eventfd-file-descriptors-for-thread-ob.patch
- − patches/eventfd_synchronization/0019-rpcrt4-Avoid-closing-the-server-thread-handle-while-.patch
- − patches/eventfd_synchronization/0020-server-Create-eventfd-file-descriptors-for-message-q.patch
- − patches/eventfd_synchronization/0021-server-ntdll-Implement-message-waits.patch
- − patches/eventfd_synchronization/0022-server-Create-eventfd-descriptors-for-device-manager.patch
- − patches/eventfd_synchronization/0023-ntdll-server-Implement-NtCreateMutant.patch
- − patches/eventfd_synchronization/0024-ntdll-Implement-NtReleaseMutant.patch
- − patches/eventfd_synchronization/0025-ntdll-Implement-waiting-on-mutexes.patch
- − patches/eventfd_synchronization/0026-ntdll-Implement-wait-all.patch
- − patches/eventfd_synchronization/0027-esync-Add-a-README.patch
- − patches/eventfd_synchronization/0028-ntdll-Implement-NtSignalAndWaitForSingleObject.patch
- − patches/eventfd_synchronization/0029-ntdll-Implement-NtOpenSemaphore.patch
- − patches/eventfd_synchronization/0030-ntdll-Implement-NtOpenEvent.patch
- − patches/eventfd_synchronization/0031-ntdll-Implement-NtOpenMutant.patch
- − patches/eventfd_synchronization/0032-server-Implement-esync_map_access.patch
- − patches/eventfd_synchronization/0033-server-Implement-NtDuplicateObject.patch
- − patches/eventfd_synchronization/0034-server-Create-eventfd-descriptors-for-timers.patch
- − patches/eventfd_synchronization/0035-ntdll-server-Implement-alertable-waits.patch
- − patches/eventfd_synchronization/0036-esync-Update-README.patch
- − patches/eventfd_synchronization/0037-kernel32-tests-Mark-some-existing-tests-as-failing-u.patch
- − patches/eventfd_synchronization/0038-kernel32-tests-Add-some-semaphore-tests.patch
- − patches/eventfd_synchronization/0039-kernel32-tests-Add-some-event-tests.patch
- − patches/eventfd_synchronization/0040-kernel32-tests-Add-some-mutex-tests.patch
- − patches/eventfd_synchronization/0041-kernel32-tests-Add-some-tests-for-wait-timeouts.patch
- − patches/eventfd_synchronization/0042-kernel32-tests-Zigzag-test.patch
- − patches/eventfd_synchronization/0043-ntdll-Implement-NtQuerySemaphore.patch
- − patches/eventfd_synchronization/0044-ntdll-Implement-NtQueryEvent.patch
- − patches/eventfd_synchronization/0045-ntdll-Implement-NtQueryMutant.patch
- − patches/eventfd_synchronization/0046-server-Create-eventfd-descriptors-for-pseudo-fd-obje.patch
- − patches/eventfd_synchronization/0047-esync-Update-README.patch
- − patches/eventfd_synchronization/0048-esync-Add-note-about-file-limits-not-being-raised-wh.patch
- − patches/eventfd_synchronization/0049-ntdll-Try-to-avoid-poll-for-uncontended-objects.patch
- − patches/eventfd_synchronization/0050-ntdll-server-Try-to-avoid-poll-for-signaled-events.patch
- − patches/eventfd_synchronization/0051-esync-Update-README.patch
- − patches/eventfd_synchronization/0052-ntdll-Implement-NtPulseEvent.patch
- − patches/eventfd_synchronization/0053-esync-Update-README.patch
- − patches/eventfd_synchronization/0054-server-Create-esync-file-descriptors-for-true-file-o.patch
- − patches/eventfd_synchronization/0055-ntdll-server-Abandon-esync-mutexes-on-thread-exit.patch
- − patches/eventfd_synchronization/0056-server-Create-esync-file-descriptors-for-console-ser.patch
- − patches/eventfd_synchronization/0057-ntdll-Compile-warning-fixes-for-esync.patch
- − patches/eventfd_synchronization/definition
- − patches/odbc32-fixes/0009-odbc32-SQLDriverConnectW-fallback-to-SQLDriverConnec.patch
- − patches/odbc32-fixes/0010-odbc32-SQLGetInfoW-support-ANSI-fallback.patch
- − patches/odbc32-fixes/0011-odbc32-SQLExecDirectW-call-fallback-SQLExecDirect.patch
- patches/odbc32-fixes/0012-odbc32-SQLDescribeColW-add-ANSI-fallback.patch
- patches/odbc32-fixes/0019-odbc32-SQLNativeSqlW-add-ANSI-fallback.patch
- patches/odbc32-fixes/0020-odbc32-SQLPrepareW-add-ANSI-fallback.patch
- patches/server-PeekMessage/0001-server-Fix-handling-of-GetMessage-after-previous-Pee.patch
- staging/upstream-commit