Ignore:
Timestamp:
Oct 26, 1999, 11:43:00 PM (26 years ago)
Author:
phaller
Message:

Fix: debug info

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:18 phaller Exp $ */
     1/* $Id: async.cpp,v 1.9 1999-10-26 21:43:00 phaller Exp $ */
    22
    33/*
     
    5151// prototype of the OS/2 select!
    5252int _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,
    5656                       long timeout);
     57
     58int _System bsd_select(int,
     59                       fd_set *,
     60                       fd_set *,
     61                       fd_set *,
     62                       struct timeval);
     63
    5764
    5865
     
    990997  // finally do the select!
    991998  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,
    9951002                   10000);              // @@@PH timeout
    9961003  if (irc < 0)                                          /* an error occurred */
Note: See TracChangeset for help on using the changeset viewer.