android / ndk-samples

Android NDK samples with Android Studio
http://developer.android.com/ndk
Apache License 2.0
9.97k stars 4.15k forks source link

Replace `ALooper_pollAll` with `ALooper_pollOnce` #999

Closed DanAlbert closed 2 months ago

DanAlbert commented 2 months ago

ALooper_pollAll has been (soft) removed from the NDK because the implementation has a race so it can't be used safely. ALooper_pollOnce should be used instead.

DanAlbert commented 2 months ago

Fixed by https://github.com/android/ndk-samples/pull/1008 and https://github.com/android/ndk-samples/pull/1009