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
5 struct sched_param param;
6 param.sched_priority = 0;
8 - if (sched_setscheduler(0, SCHED_IDLE, ¶m) != 0) {
9 + if (sched_setscheduler(0, SCHED_OTHER, ¶m) != 0) {
10 Log::Warning(Event::General, "Couldn't set thread scheduling policy");