summaryrefslogtreecommitdiffstats
path: root/lib/libthr/thread/thr_getschedparam.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't forget to initialize return value.davidxu2012-07-201-1/+1
|
* Eliminate duplicated code.davidxu2012-07-201-19/+10
|
* use rtprio_thread system call to get or set thread priority.davidxu2006-09-211-0/+2
|
* Caching scheduling policy and priority in userland, a critical but baddlydavidxu2006-07-131-8/+5
| | | | | written application is frequently changing thread priority for SCHED_OTHER policy.
* Use thr_setscheduler, thr_getscheduler and thr_setschedparam to implementdavidxu2006-07-131-20/+6
| | | | pthread functions.
* Use kernel facilities to support real-time scheduling.davidxu2006-07-121-14/+29
|
* - Use same priority range returned by kernel's sched_get_priority_min()davidxu2006-04-271-4/+2
| | | | | and sched_get_priority_max() syscalls. - Remove unused fields from structure pthread_attr.
* WARNS level 4 cleanup.davidxu2006-04-041-0/+2
|
* Import my recent 1:1 threading working. some features improved includes:davidxu2005-04-021-0/+77
| | | | | | | | | | | | | | | | 1. fast simple type mutex. 2. __thread tls works. 3. asynchronous cancellation works ( using signal ). 4. thread synchronization is fully based on umtx, mainly, condition variable and other synchronization objects were rewritten by using umtx directly. those objects can be shared between processes via shared memory, it has to change ABI which does not happen yet. 5. default stack size is increased to 1M on 32 bits platform, 2M for 64 bits platform. As the result, some mysql super-smack benchmarks show performance is improved massivly. Okayed by: jeff, mtm, rwatson, scottl
* o Catch up with the mutex priority protocol fixes.mtm2004-02-181-59/+0
| | | | | o Move pthread_getschedparam() into the same file with it's pthread_set* counterpart. Copyright on both files is identical.
* - Add libthr but don't hook it up to the regular build yet. This is anjeff2003-04-011-0/+59
adaptation of libc_r for the thr system call interface. This is beta quality code.
OpenPOWER on IntegriCloud