mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-09 17:26:03 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
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
|