1 #ifndef _JOB_LIST_H_
2 #define _JOB_LIST_H_
3 
4 #include "base.h"
5 
6 int joblist_append(server *srv, connection *con);
7 void joblist_free(server *srv, connections *joblist);
8 
9 int fdwaitqueue_append(server *srv, connection *con);
10 void fdwaitqueue_free(server *srv, connections *fdwaitqueue);
11 connection *fdwaitqueue_unshift(server *srv, connections *fdwaitqueue);
12 
13 #endif
14