Home
last modified time | relevance | path

Searched refs:z_pend_curr (Results 1 – 17 of 17) sorted by relevance

/Zephyr-latest/kernel/
Dkheap.c98 (void) z_pend_curr(&heap->lock, key, &heap->wait_q, timeout); in k_heap_aligned_alloc()
158 (void) z_pend_curr(&heap->lock, key, &heap->wait_q, timeout); in k_heap_realloc()
Dfutex.c83 ret = z_pend_curr(&futex_data->lock, in z_impl_k_futex_wait()
Dmailbox.c261 int ret = z_pend_curr(&mbox->lock, key, NULL, K_FOREVER); in mbox_message_put()
288 int ret = z_pend_curr(&mbox->lock, key, &mbox->tx_msg_queue, timeout); in mbox_message_put()
429 result = z_pend_curr(&mbox->lock, key, &mbox->rx_msg_queue, timeout); in k_mbox_get()
Dcondvar.c120 ret = z_pend_curr(&lock, key, &condvar->wait_q, timeout); in z_impl_k_condvar_wait()
Dsem.c158 ret = z_pend_curr(&lock, key, &sem->wait_q, timeout); in z_impl_k_sem_take()
Dmsg_q.c174 result = z_pend_curr(&msgq->lock, key, &msgq->wait_q, timeout); in z_impl_k_msgq_put()
272 result = z_pend_curr(&msgq->lock, key, &msgq->wait_q, timeout); in z_impl_k_msgq_get()
Dstack.c178 result = z_pend_curr(&stack->lock, key, &stack->wait_q, timeout); in z_impl_k_stack_pop()
Dmutex.c156 int got_mutex = z_pend_curr(&lock, key, &mutex->wait_q, timeout); in z_impl_k_mutex_lock()
Dtimer.c283 (void)z_pend_curr(&lock, key, &timer->wait_q, K_FOREVER); in z_impl_k_timer_status_sync()
Devents.c294 if (z_pend_curr(&event->lock, key, &event->wait_q, timeout) == 0) { in k_event_wait_internal()
Dmem_slab.c253 result = z_pend_curr(&slab->lock, key, &slab->wait_q, timeout); in k_mem_slab_alloc()
Dqueue.c346 int ret = z_pend_curr(&queue->lock, key, &queue->wait_q, timeout); in z_impl_k_queue_get()
Dsched.c650 int z_pend_curr(struct k_spinlock *lock, k_spinlock_key_t key, in z_pend_curr() function
1508 int ret = z_pend_curr(lock, key, wait_q, timeout); in z_sched_wait()
Dpoll.c335 int swap_rc = z_pend_curr(&lock, key, &wait_q, timeout); in z_impl_k_poll()
/Zephyr-latest/tests/benchmarks/sched/src/
Dmain.c95 z_pend_curr(&lock, key, &waitq, K_FOREVER); in partner_fn()
/Zephyr-latest/kernel/include/
Dksched.h55 int z_pend_curr(struct k_spinlock *lock, k_spinlock_key_t key,
/Zephyr-latest/lib/os/
Dp4wq.c110 z_pend_curr(&queue->lock, k, &queue->waitq, K_FOREVER); in p4wq_loop()