python/hypothesis: update to 6.121.0
[oi-userland.git] / components / library / qt5 / patches / scheduling.patch
blob1a9ee5ba1ec6b0b0287a6a0ffe770806a5f87b1e
1 # Solaris/Ilumos does not provide scheduling class SCHED_IDLE
2 --- qt-everywhere-src-5.15.14/qtlocation/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp 2024-05-08 07:14:45.000000000 +0200
3 +++ qt-everywhere-src-5.15.14/qtlocation/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp.new 2024-06-26 20:27:15.005935711 +0200
4 @@ -28,7 +28,7 @@
5 struct sched_param param;
6 param.sched_priority = 0;
8 - if (sched_setscheduler(0, SCHED_IDLE, &param) != 0) {
9 + if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
10 Log::Warning(Event::General, "Couldn't set thread scheduling policy");