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