--------------------- PatchSet 7985 Date: 2006/05/26 20:54:07 Author: serassio Branch: nt Tag: (none) Log: Splitted the Windows select() code into comm_select_win32.c Members: src/protos.h:1.74.2.11->1.74.2.12 Index: squid/src/protos.h =================================================================== RCS file: /cvsroot/squid-sf//squid/src/protos.h,v retrieving revision 1.74.2.11 retrieving revision 1.74.2.12 diff -u -r1.74.2.11 -r1.74.2.12 --- squid/src/protos.h 26 May 2006 20:27:15 -0000 1.74.2.11 +++ squid/src/protos.h 26 May 2006 20:54:07 -0000 1.74.2.12 @@ -1,6 +1,6 @@ /* - * $Id: protos.h,v 1.74.2.11 2006/05/26 20:27:15 serassio Exp $ + * $Id: protos.h,v 1.74.2.12 2006/05/26 20:54:07 serassio Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -195,8 +195,10 @@ extern int comm_poll(int); #elif USE_SELECT extern int comm_select(int); +#elif USE_SELECT_WIN32 +extern int comm_select(int); #else -#error USE_POLL, USE_EPOLL or USE_SELECT need to be defined! +#error USE_POLL, USE_EPOLL, USE_SELECT or USE_SELECT_WIN32 need to be defined! #endif extern void commUpdateReadHandler(int, PF *, void *); extern void commUpdateWriteHandler(int, PF *, void *);