fdlist is not used, removed it (fixes inclusion into C++)

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@749 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.6
Jan Kneschke 2005-09-29 13:03:39 +00:00
parent 40968e3c64
commit 7dcf695bee
1 changed files with 2 additions and 7 deletions

View File

@ -108,18 +108,14 @@ typedef struct {
*
*/
typedef struct fdnode {
typedef struct _fdnode {
fdevent_handler handler;
void *ctx;
int fd;
struct fdnode *prev, *next;
struct _fdnode *prev, *next;
} fdnode;
typedef struct {
fdnode *first, *last;
} fdlist;
typedef struct {
int *ptr;
@ -134,7 +130,6 @@ typedef struct {
typedef struct fdevents {
fdevent_handler_t type;
fdlist fdlist;
fdnode **fdarray;
size_t maxfds;