table of contents
KTHREAD_UNPARK(9) | Driver Basics | KTHREAD_UNPARK(9) |
NAME¶
kthread_unpark - unpark a thread created by kthread_create.
SYNOPSIS¶
void kthread_unpark(struct task_struct * k);
ARGUMENTS¶
k
thread created by kthread_create.
DESCRIPTION¶
Sets kthread_should_park for k to return false, wakes it, and waits for it to return. If the thread is marked percpu then its bound to the cpu again.
COPYRIGHT¶
June 2024 | Kernel Hackers Manual 3.10 |