AROS: it is called IoctlSocket/CloseSocket and WaitSelect on AROS.
[deb_libnfs.git] / aros / aros_compat.h
CommitLineData
d7c6e9aa
RS
1#ifndef AROS_COMPAT_H
2#define AROS_COMPAT_H
3
4#include <netinet/in.h>
5#include <sys/mount.h>
e77d093c 6#include <proto/socket.h>
2cdf4fcb 7#include <proto/exec.h>
d7c6e9aa
RS
8
9#define statvfs statfs
2cdf4fcb
RS
10#define ioctl IoctlSocket
11#define close CloseSocket
12
13extern struct Library * SocketBase;
14
15void aros_init_socket(void);
d7c6e9aa
RS
16
17#define f_flag f_flags
18#define f_favail f_ffree
19/* we dont have these at all */
20#define f_fsid f_spare[0]
21#define f_frsize f_spare[0]
22#define f_namemax f_spare[0]
23
24#define POLLIN 0x0001 /* There is data to read */
25#define POLLPRI 0x0002 /* There is urgent data to read */
26#define POLLOUT 0x0004 /* Writing now will not block */
27#define POLLERR 0x0008 /* Error condition */
28#define POLLHUP 0x0010 /* Hung up */
29#define POLLNVAL 0x0020 /* Invalid request: fd not open */
30
31struct pollfd {
32 int fd; /* file descriptor */
33 short events; /* requested events */
34 short revents; /* returned events */
35};
36
37#define poll(x, y, z) aros_poll(x, y, z)
38
39#endif