Changeset 1460 for trunk/src/wsock32/async.cpp
- Timestamp:
- Oct 26, 1999, 11:43:00 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wsock32/async.cpp
r1451 r1460 1 /* $Id: async.cpp,v 1. 8 1999-10-25 23:17:18phaller Exp $ */1 /* $Id: async.cpp,v 1.9 1999-10-26 21:43:00 phaller Exp $ */ 2 2 3 3 /* … … 51 51 // prototype of the OS/2 select! 52 52 int _System os2_select(int* socket, 53 int fd_read,54 int fd_write,55 int fd_exception,53 int fd_read, 54 int fd_write, 55 int fd_exception, 56 56 long timeout); 57 58 int _System bsd_select(int, 59 fd_set *, 60 fd_set *, 61 fd_set *, 62 struct timeval); 63 57 64 58 65 … … 990 997 // finally do the select! 991 998 irc = os2_select(&sockWin, 992 (ulEvent & FD_READ) ,993 (ulEvent & FD_WRITE) ,994 (ulEvent & FD_OOB) ,999 (ulEvent & FD_READ) ? 1 : 0, 1000 (ulEvent & FD_WRITE) ? 1 : 0, 1001 (ulEvent & FD_OOB) ? 1 : 0, 995 1002 10000); // @@@PH timeout 996 1003 if (irc < 0) /* an error occurred */
Note:
See TracChangeset
for help on using the changeset viewer.