Annotation of embedaddon/lighttpd/src/joblist.h, revision 1.1

1.1     ! misho       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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>