Searched refs:sp (Results 1 – 4 of 4) sorted by relevance
/nptl/ |
A D | tst-tpp.h | 82 struct sched_param sp; in init_tpp_test() local 83 memset (&sp, 0, sizeof (sp)); in init_tpp_test() 84 sp.sched_priority = 4; in init_tpp_test() 85 int e = pthread_setschedparam (pthread_self (), SCHED_FIFO, &sp); in init_tpp_test()
|
A D | tst-mutexpp10.c | 277 struct sched_param sp; in do_test() local 278 memset (&sp, 0, sizeof (sp)); in do_test() 279 sp.sched_priority = 8; in do_test() 280 if (pthread_setschedparam (pthread_self (), SCHED_FIFO, &sp)) in do_test()
|
A D | tpp.c | 144 struct sched_param sp = self->schedparam; in libc_hidden_def() local 145 if (sp.sched_priority < newpriomax || sp.sched_priority < priomax) in libc_hidden_def() 147 if (sp.sched_priority < newpriomax) in libc_hidden_def() 148 sp.sched_priority = newpriomax; in libc_hidden_def() 150 if (__sched_setscheduler (self->tid, self->schedpolicy, &sp) < 0) in libc_hidden_def()
|
A D | allocatestack.c | 189 uintptr_t sp = (uintptr_t) CURRENT_STACK_FRAME; in advise_stack_range() local 192 size_t freesize = (sp - (uintptr_t) mem) & ~pagesize_m1; in advise_stack_range() 199 uintptr_t freeblock = (sp + PTHREAD_STACK_MIN + pagesize_m1) & ~pagesize_m1; in advise_stack_range()
|
Completed in 6 milliseconds