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