Searched refs:tpp (Results 1 – 7 of 7) sorted by relevance
43 struct priority_protection_data *tpp = THREAD_GETMEM (self, tpp); in __pthread_tpp_change_priority() local45 if (tpp == NULL) in __pthread_tpp_change_priority()50 size_t size = sizeof *tpp; in __pthread_tpp_change_priority()52 * sizeof (tpp->priomap[0]); in __pthread_tpp_change_priority()53 tpp = calloc (size, 1); in __pthread_tpp_change_priority()54 if (tpp == NULL) in __pthread_tpp_change_priority()56 tpp->priomax = __sched_fifo_min_prio - 1; in __pthread_tpp_change_priority()57 THREAD_SETMEM (self, tpp, tpp); in __pthread_tpp_change_priority()67 int priomax = tpp->priomax; in __pthread_tpp_change_priority()86 if (tpp->priomap[i - __sched_fifo_min_prio]) in __pthread_tpp_change_priority()[all …]
36 tpp.c
47 if (__builtin_expect (pd->tpp != NULL, 0) && pd->tpp->priomax > prio) in pthread_setschedprio()48 param.sched_priority = pd->tpp->priomax; in pthread_setschedprio()
49 if (__builtin_expect (pd->tpp != NULL, 0) in __pthread_setschedparam()50 && pd->tpp->priomax > param->sched_priority) in __pthread_setschedparam()53 p.sched_priority = pd->tpp->priomax; in __pthread_setschedparam()
207 if (__builtin_expect (pd->tpp != NULL, 0)) in __free_tcb()209 struct priority_protection_data *tpp = pd->tpp; in __free_tcb() local211 pd->tpp = NULL; in __free_tcb()212 free (tpp); in __free_tcb()
363 struct priority_protection_data *tpp; member
1366 * tpp.c (__pthread_tpp_change_priority, __pthread_current_priority):2829 (struct pthread): Add tpp field.2839 * tpp.c: New file.2853 * pthread_create.c (__free_tcb): Free pd->tpp structure.2854 * Makefile (libpthread-routines): Add tpp.2856 * tst-tpp.h: New file.
Completed in 15 milliseconds