5d87442322241805d30456149ccba0cf4e4a015c
[adns] / regress / hsyscalls.h
1 #ifndef HSYSCALLS_H_INCLUDED
2 #define HSYSCALLS_H_INCLUDED
3 #include <sys/types.h>
4 #include <sys/time.h>
5 #include <sys/socket.h>
6 #include <sys/uio.h>
7 #include <unistd.h>
8 #ifdef HAVE_POLL
9 #include <sys/poll.h>
10 #endif
11 int Hselect( int max , fd_set *rfds , fd_set *wfds , fd_set *efds , struct timeval *to );
12 #ifdef HAVE_POLL
13 int Hpoll( struct pollfd *fds , int nfds , int timeout );
14 #endif
15 int Hsocket( int domain , int type , int protocol );
16 int Hfcntl( int fd , int cmd , ... );
17 int Hconnect( int fd , const struct sockaddr *addr , int addrlen );
18 int Hclose( int fd );
19 int Hsendto( int fd , const void *msg , int msglen , unsigned int flags , const struct sockaddr *addr , int addrlen );
20 int Hrecvfrom( int fd , void *buf , int buflen , unsigned int flags , struct sockaddr *addr , int *addrlen );
21 int Hread( int fd , void *buf , size_t buflen );
22 int Hwrite( int fd , const void *buf , size_t len );
23 int Hwritev(int fd, const struct iovec *vector, size_t count);
24 int Hgettimeofday(struct timeval *tv, struct timezone *tz);
25 void* Hmalloc(size_t sz);
26 void Hfree(void *ptr);
27 void* Hrealloc(void *op, size_t nsz);
28 void Hexit(int rv)NONRETURNING;
29 #endif