summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/src/joblist.h
blob: 78c40e53b9f6c031d6767f6185d3fb65f9ca71dd (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_decls.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