mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
25 lines
564 B
C
25 lines
564 B
C
#ifndef SELECT_INT_H_INCLUDED
|
|
#define SELECT_INT_H_INCLUDED
|
|
|
|
#ifndef WIN32
|
|
#include <sys/select.h>
|
|
#endif
|
|
#include <signal.h>
|
|
|
|
#include "xmlrpc-c/time_int.h"
|
|
#ifdef WIN32
|
|
#ifndef sigset_t
|
|
typedef int sigset_t;
|
|
#endif
|
|
#endif
|
|
|
|
int
|
|
xmlrpc_pselect(int const n,
|
|
fd_set * const readfdsP,
|
|
fd_set * const writefdsP,
|
|
fd_set * const exceptfdsP,
|
|
const xmlrpc_timespec * const timeoutP,
|
|
sigset_t * const sigmaskP);
|
|
|
|
#endif
|