* posix-threads.cc (_Jv_ThreadSetPriority): Use SCHED_OTHER
(regular, non-realtime scheduling), not SCHED_RR (realtime,
round-robin).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101769
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-07-08 Andrew Haley <aph@redhat.com>
+
+ * posix-threads.cc (_Jv_ThreadSetPriority): Use SCHED_OTHER
+ (regular, non-realtime scheduling), not SCHED_RR (realtime,
+ round-robin).
+
2005-07-07 Aaron Luchko <aluchko@redhat.com>
* gnu/classpath/jdwp/util/Signature.java
struct sched_param param;
param.sched_priority = prio;
- pthread_setschedparam (data->thread, SCHED_RR, ¶m);
+ pthread_setschedparam (data->thread, SCHED_OTHER, ¶m);
}
#endif
}