|
Linux Kernel
3.7.1
|
Go to the source code of this file.
Data Structures | |
| struct | timerqueue_node |
| struct | timerqueue_head |
| void timerqueue_add | ( | struct timerqueue_head * | head, |
| struct timerqueue_node * | node | ||
| ) |
timerqueue_add - Adds timer to timerqueue.
: head of timerqueue : timer node to be added
Adds the timer node to the timerqueue, sorted by the node's expires value.
Definition at line 39 of file timerqueue.c.
| void timerqueue_del | ( | struct timerqueue_head * | head, |
| struct timerqueue_node * | node | ||
| ) |
timerqueue_del - Removes a timer from the timerqueue.
: head of timerqueue : timer node to be removed
Removes the timer node from the timerqueue.
Definition at line 72 of file timerqueue.c.
|
read |
1.8.2