2009-07-19 Joel Sherrill <joel.sherrill@oarcorp.com>

* psx11/init.c: Use explicit scheduler.
This commit is contained in:
Joel Sherrill
2009-07-20 01:05:59 +00:00
parent f691e0a09f
commit 3d36b370dd
2 changed files with 6 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2009-07-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* psx11/init.c: Use explicit scheduler.
2009-07-17 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, configure.ac: Add test to exercise

View File

@@ -93,6 +93,8 @@ void *POSIX_Init(
status = pthread_attr_init( &attr );
assert( !status );
status = pthread_attr_setinheritsched( &attr, PTHREAD_EXPLICIT_SCHED );
assert( !status );
attr.schedpolicy = SCHED_RR;
attr.schedparam.sched_priority = priority_4;