This fixes Trials Fusion often crashing when disconnecting a controller while there are more still connected.
--
v3: hidclass: Set Status for pending IRPs of removed devices to STATUS_DEVICE_NOT_CONNECTED.
ntdll/tests: Add more NtCancelIoFile[Ex]() tests.
ntdll: Wait for all pending operations to be cancelled in NtCancelIoFile[Ex]().
https://gitlab.winehq.org/wine/wine/-/merge_requests/7797
Instead of https://gitlab.winehq.org/wine/wine/-/merge_requests/7815, for https://gitlab.winehq.org/wine/wine/-/merge_requests/7226, this only split the sync ops to a separate vtable and let objects delegate theirs to a separate object.
This starts using a event-like interface for most objects, leaving the decision regarding if/how to split sync themselves / integrate inproc syncs for later.
--
v3: server: Use an event as debug event sync.
server: Use an event as file lock sync.
server: Use an event as process startup info sync.
server: Use an event as thread context sync.
server: Use an event as thread apc sync.
server: Use an event as fd sync.
server: Redirect fd-based objects sync to the fd.
server: Move object grab/release out of (add|remove)_queue.
server: Split object sync related vtable.
https://gitlab.winehq.org/wine/wine/-/merge_requests/7848
On Tue Apr 29 09:47:17 2025 +0000, Piotr Caban wrote:
> Prior to these commits the tests were also skipped, test output looked
> like this:
> ```
> msvcr100.c:258: Tests skipped: msvcr100.dll not installed (got 126)
> 1e24:msvcr100: 0 tests executed (0 marked as todo, 0 as flaky, 0
> failures), 1 skipped.
> msvcr100:msvcr100:1e24 done (0) in 0s 157B
> ```
> msvcr100 (and many other versions) are not part of Windows install, it
> needs to be installed later.
I see, is this what needs to be installed: https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?vi… ?
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/7853#note_102135
On Tue Apr 29 09:47:17 2025 +0000, Rémi Bernon wrote:
> Fwiw this and !7875 !7876 !7877 !7878 now cause many tests to be skipped
> on windows: https://test.winehq.org/data/patterns.html#msvcr100:msvcr100
Prior to these commits the tests were also skipped, test output looked like this:
```
msvcr100.c:258: Tests skipped: msvcr100.dll not installed (got 126)
1e24:msvcr100: 0 tests executed (0 marked as todo, 0 as flaky, 0 failures), 1 skipped.
msvcr100:msvcr100:1e24 done (0) in 0s 157B
```
msvcr100 (and many other versions) are not part of Windows install, it needs to be installed later.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/7853#note_102134