summaryrefslogtreecommitdiff
path: root/lib/libthr/thread/thr_setschedparam.c
Commit message (Collapse)AuthorAgeFilesLines
* Comment out most of pthread_setschedparam. Pthread priorities didn'tMike Makonnen2003-12-151-1/+4
| | | | | | | | | work before anyways, and I didn't want to fix broken code I had no way of testing. It was necessary however, in order to get rid of GIANT_LOCK. Pthread priorities will have to wait a little longer to get fixed. Notes: svn path=/head/; revision=123551
* Make WARNS2 clean. The fixes mostly included:Mike Makonnen2003-05-231-1/+4
| | | | | | | | | | | o removed unused variables o explicit inclusion of header files o prototypes for externally defined functions Approved by: re/blanket libthr Notes: svn path=/head/; revision=115260
* - Define curthread as _get_curthread() and remove all direct calls toJeff Roberson2003-04-021-2/+0
| | | | | | | | | | _get_curthread(). This is similar to the kernel's curthread. Doing this saves stack overhead and is more convenient to the programmer. - Pass the pointer to the newly created thread to _thread_init(). - Remove _get_curthread_slow(). Notes: svn path=/head/; revision=112965
* - Reenable setschedparam and the prioceiling code now that the mutex codeJeff Roberson2003-04-011-8/+8
| | | | | | | has been restored. Notes: svn path=/head/; revision=112959
* - Add libthr but don't hook it up to the regular build yet. This is anJeff Roberson2003-04-011-0/+115
adaptation of libc_r for the thr system call interface. This is beta quality code. Notes: svn path=/head/; revision=112918