OSDN Git Service

2002-11-26 Andreas Tobler <a.tobler@schweiz.ch>
[pf3gnuchains/gcc-fork.git] / libjava / include / posix.h
1 // posix.h -- Helper functions for POSIX-flavored OSs.
2
3 /* Copyright (C) 2000, 2002  Free Software Foundation
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 #ifndef __JV_POSIX_H__
12 #define __JV_POSIX_H__
13
14 /* Required on Tru64 UNIX V4/V5 so <sys/socket.h> defines prototypes of
15    socket functions with socklen_t instead of size_t.  This must be defined
16    early so <standards.h> defines the correct version of __PIIX.  */
17 #define _POSIX_PII_SOCKET
18
19 #include <time.h>
20 #include <sys/types.h>
21
22 #ifdef HAVE_SYS_TIME_H
23 #include <sys/time.h>
24 #endif
25
26 #ifdef HAVE_SYS_SELECT_H
27 #include <sys/select.h>
28 #endif
29
30 #ifdef HAVE_SYS_SOCKET_H
31 #include <sys/socket.h>
32 #endif
33
34 #ifdef HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
37
38 #include <fcntl.h>
39
40 #include <gcj/cni.h>
41 #include <java/util/Properties.h>
42
43 #ifndef DISABLE_JAVA_NET
44 #include <java/net/InetAddress.h>
45 #endif
46
47 extern int _Jv_select (int n, fd_set *, fd_set *, fd_set *, struct timeval *);
48 extern jlong _Jv_platform_gettimeofday ();
49 extern void _Jv_platform_initialize (void);
50 extern void _Jv_platform_initProperties (java::util::Properties*);
51
52 inline void
53 _Jv_platform_close_on_exec (jint fd)
54 {
55   // Ignore errors.
56   ::fcntl (fd, F_SETFD, FD_CLOEXEC);
57 }
58
59 #ifndef DISABLE_JAVA_NET
60
61 #ifndef HAVE_SOCKLEN_T
62 #define socklen_t int
63 #endif
64
65 static inline int
66 _Jv_socket (int domain, int type, int protocol)
67 {
68   return ::socket (domain, type, protocol);
69 }
70
71 inline int
72 _Jv_connect (jint fd, sockaddr *ptr, int len)
73 {
74    return ::connect (fd, ptr, len);
75 }
76
77 inline int
78 _Jv_close (jint fd)
79 {
80   return ::close (fd);
81 }
82
83 // Avoid macro definitions of bind from system headers, e.g. on
84 // Solaris 7 with _XOPEN_SOURCE.  FIXME
85 inline int
86 _Jv_bind (int fd, struct sockaddr *addr, int addrlen)
87 {
88   return ::bind (fd, addr, addrlen);
89 }
90
91 // Same problem with accept on Tru64 UNIX with _POSIX_PII_SOCKET
92 inline int
93 _Jv_accept (int fd, struct sockaddr *addr, socklen_t *addrlen)
94 {
95   return ::accept (fd, addr, addrlen);
96 }
97
98 inline int
99 _Jv_listen (int fd, int backlog)
100 {
101   return ::listen (fd, backlog);
102 }
103
104 inline int
105 _Jv_write(int s, void *buf, int len)
106 {
107   return ::write (s, buf, len);
108 }
109
110 inline int
111 _Jv_read(int s, void *buf, int len)
112 {
113   return ::read (s, buf, len);
114 }
115
116 #endif /* DISABLE_JAVA_NET */
117
118 #endif /* __JV_POSIX_H__ */