Changeset 3493:92c9d034acbd in roaraudio


Ignore:
Timestamp:
02/14/10 18:26:36 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

define some consts for non poll() enabled systems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroarpulse/mainloop.c

    r3492 r3493  
    5151 
    5252typedef int nfds_t; 
     53 
     54#define POLLIN          0x001           /* There is data to read.  */ 
     55#define POLLPRI         0x002           /* There is urgent data to read.  */ 
     56#define POLLOUT         0x004           /* Writing now will not block.  */ 
     57 
     58#define POLLERR         0x008           /* Error condition.  */ 
     59#define POLLHUP         0x010           /* Hung up.  */ 
    5360#endif 
    5461 
Note: See TracChangeset for help on using the changeset viewer.