forked from wujingbang/aodv-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask_queue.h
executable file
·27 lines (20 loc) · 922 Bytes
/
task_queue.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/***************************************************************************
task_queue.h - description
-------------------
begin : Tue Jul 8 2003
copyright : (C) 2003 by Luke Klein-Berndt
email : [email protected]
***************************************************************************/
/***************************************************************************
Modified by Miguel Catalan Cid - [email protected] - Version: Mon Jan 1 2010
***************************************************************************/
#ifndef TASK_QUEUE_H
#define TASK_QUEUE_H
#include "aodv.h"
task *get_task(void);
task *create_task(int type);
int insert_task(int type, struct sk_buff *packet);
int insert_task_from_timer(task * timer_task);
void init_task_queue(void);
void cleanup_task_queue(void);
#endif