Michael Cullen
Michael Cullen
It seems libNX made a bunch of changes to how HID stuff is handled that broke this. Since this is clearly be most important switch homebrew around, it needed fixing.
I have the a minimal example, which works as expected on Linux, but fails on SerenityOS. The code is below. Changing pthread_cond_broadcast to two calls (one for each thread) to...
pthread_cond_broadcast is like pthread_cond_signal except it wakes ALL threads waiting on the condition variable. As detailed in #15020, it appears to only be waking a single thread. Further investigation of...
The table is still valid, so update the expiration date
When cross-compiling for an embedded target, it may be useful to run the tests and examples on the target device, to verify the library is working before doing any further...