[mod_cgi] fix pipe_cloexec() when no O_CLOEXEC
[lighttpd.git] / src / joblist.h
blob7a6c95f8d3dec96c639729df40fdc880bea34bbf
1 #ifndef _JOB_LIST_H_
2 #define _JOB_LIST_H_
3 #include "first.h"
5 #include "base.h"
7 int joblist_append(server *srv, connection *con);
8 void joblist_free(server *srv, connections *joblist);
10 int fdwaitqueue_append(server *srv, connection *con);
11 void fdwaitqueue_free(server *srv, connections *fdwaitqueue);
12 connection *fdwaitqueue_unshift(server *srv, connections *fdwaitqueue);
14 #endif