summaryrefslogtreecommitdiff
path: root/src/joblist.h
blob: 7a6c95f8d3dec96c639729df40fdc880bea34bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _JOB_LIST_H_
#define _JOB_LIST_H_
#include "first.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