|
Linux Kernel
3.7.1
|
#include <linux/bug.h>#include <linux/timerqueue.h>#include <linux/rbtree.h>#include <linux/export.h>Go to the source code of this file.
| EXPORT_SYMBOL_GPL | ( | timerqueue_add | ) |
| EXPORT_SYMBOL_GPL | ( | timerqueue_del | ) |
| EXPORT_SYMBOL_GPL | ( | timerqueue_iterate_next | ) |
| 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