back to RR - hope kernel allows us to set minimum realtime pri anyway.

SVN revision: 51877
This commit is contained in:
Carsten Haitzler 2010-09-04 05:40:09 +00:00
parent 69fa1e6386
commit cc1e39498f
1 changed files with 2 additions and 2 deletions

View File

@ -218,8 +218,8 @@ evas_preload_thread_run(void (*func_heavy) (void *data),
struct sched_param param;
memset(&param, 0, sizeof(param));
param.sched_priority = sched_get_priority_min(SCHED_OTHER);
pthread_setschedparam(pth->thread, SCHED_OTHER, &param);
param.sched_priority = sched_get_priority_min(SCHED_RR);
pthread_setschedparam(pth->thread, SCHED_RR, &param);
LKL(_mutex);
_evas_preload_thread_count++;