Lines Matching refs:wakeup
23 * Test priority ordered wakeup with pthread_cond_*
31 * - Once all the threads finish execution, the start and wakeup times
33 * - The output must indicate that the thread wakeup happened in a
102 struct array wakeup = { NULL, 0 };
158 wakeup.arr[wakeup.counter++] = mypri;
182 wakeup.arr = malloc(rt_threads * sizeof(int));
183 wakeup.counter = 0;
222 for (i = 0; i < (wakeup.counter - 1); i++) {
223 if (wakeup.arr[i] < wakeup.arr[i + 1]) {
225 wakeup.arr[i], wakeup.arr[i + 1]);