-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtask_queue.h
More file actions
executable file
·28 lines (21 loc) · 965 Bytes
/
task_queue.h
File metadata and controls
executable file
·28 lines (21 loc) · 965 Bytes
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
28
/***************************************************************************
task_queue.h - description
-------------------
begin : Tue Jul 8 2003
copyright : (C) 2003 by Luke Klein-Berndt
email : kleinb@nist.gov
***************************************************************************/
/***************************************************************************
Modified by Miguel Catalan Cid - miguel.catcid@gmail.com - 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);
int insert_task_at_front(task * new_task);
void init_task_queue(void);
void cleanup_task_queue(void);
#endif