2000-08-03 05:54:04 +08:00
|
|
|
// posix.h -- Helper functions for POSIX-flavored OSs.
|
|
|
|
|
2003-01-08 00:50:08 +08:00
|
|
|
/* Copyright (C) 2000, 2002, 2003 Free Software Foundation
|
2000-08-03 05:54:04 +08:00
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2002-03-11 12:15:51 +08:00
|
|
|
#ifndef __JV_POSIX_H__
|
|
|
|
#define __JV_POSIX_H__
|
|
|
|
|
2001-08-02 01:53:00 +08:00
|
|
|
/* Required on Tru64 UNIX V4/V5 so <sys/socket.h> defines prototypes of
|
|
|
|
socket functions with socklen_t instead of size_t. This must be defined
|
|
|
|
early so <standards.h> defines the correct version of __PIIX. */
|
|
|
|
#define _POSIX_PII_SOCKET
|
|
|
|
|
2000-08-03 05:54:04 +08:00
|
|
|
#include <time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
|
2000-08-03 05:54:04 +08:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2002-03-11 01:59:23 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
2002-03-08 09:03:56 +08:00
|
|
|
#include <gcj/cni.h>
|
2002-04-07 19:27:00 +08:00
|
|
|
#include <java/util/Properties.h>
|
2002-03-08 09:03:56 +08:00
|
|
|
|
2002-12-10 09:39:32 +08:00
|
|
|
// Prefix and suffix for shared libraries.
|
|
|
|
#define _Jv_platform_solib_prefix "lib"
|
|
|
|
#define _Jv_platform_solib_suffix ".so"
|
|
|
|
|
2002-11-22 02:01:22 +08:00
|
|
|
#ifndef DISABLE_JAVA_NET
|
|
|
|
#include <java/net/InetAddress.h>
|
|
|
|
#endif
|
|
|
|
|
2000-08-03 05:54:04 +08:00
|
|
|
extern int _Jv_select (int n, fd_set *, fd_set *, fd_set *, struct timeval *);
|
2002-03-08 09:03:56 +08:00
|
|
|
extern jlong _Jv_platform_gettimeofday ();
|
2002-02-08 02:59:52 +08:00
|
|
|
extern void _Jv_platform_initialize (void);
|
2002-04-07 19:27:00 +08:00
|
|
|
extern void _Jv_platform_initProperties (java::util::Properties*);
|
2002-03-08 09:03:56 +08:00
|
|
|
|
2002-11-22 18:27:53 +08:00
|
|
|
inline void
|
|
|
|
_Jv_platform_close_on_exec (jint fd)
|
|
|
|
{
|
|
|
|
// Ignore errors.
|
|
|
|
::fcntl (fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef fcntl
|
|
|
|
|
2003-01-08 00:50:08 +08:00
|
|
|
#ifdef JV_HASH_SYNCHRONIZATION
|
2003-01-01 01:43:47 +08:00
|
|
|
inline void
|
|
|
|
_Jv_platform_usleep (unsigned long usecs)
|
|
|
|
{
|
|
|
|
usleep (usecs);
|
|
|
|
}
|
2003-01-08 00:50:08 +08:00
|
|
|
#endif /* JV_HASH_SYNCHRONIZATION */
|
2003-01-01 01:43:47 +08:00
|
|
|
|
2002-11-22 02:01:22 +08:00
|
|
|
#ifndef DISABLE_JAVA_NET
|
|
|
|
|
2002-11-27 04:09:28 +08:00
|
|
|
#ifndef HAVE_SOCKLEN_T
|
|
|
|
#define socklen_t int
|
|
|
|
#endif
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
static inline int
|
|
|
|
_Jv_socket (int domain, int type, int protocol)
|
|
|
|
{
|
|
|
|
return ::socket (domain, type, protocol);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef socket
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
inline int
|
|
|
|
_Jv_connect (jint fd, sockaddr *ptr, int len)
|
|
|
|
{
|
|
|
|
return ::connect (fd, ptr, len);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef connect
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
inline int
|
|
|
|
_Jv_close (jint fd)
|
|
|
|
{
|
|
|
|
return ::close (fd);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef close
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
// Avoid macro definitions of bind from system headers, e.g. on
|
|
|
|
// Solaris 7 with _XOPEN_SOURCE. FIXME
|
|
|
|
inline int
|
|
|
|
_Jv_bind (int fd, struct sockaddr *addr, int addrlen)
|
|
|
|
{
|
|
|
|
return ::bind (fd, addr, addrlen);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef bind
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
// Same problem with accept on Tru64 UNIX with _POSIX_PII_SOCKET
|
|
|
|
inline int
|
|
|
|
_Jv_accept (int fd, struct sockaddr *addr, socklen_t *addrlen)
|
|
|
|
{
|
|
|
|
return ::accept (fd, addr, addrlen);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef accept
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
inline int
|
|
|
|
_Jv_listen (int fd, int backlog)
|
|
|
|
{
|
|
|
|
return ::listen (fd, backlog);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef listen
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
inline int
|
|
|
|
_Jv_write(int s, void *buf, int len)
|
|
|
|
{
|
|
|
|
return ::write (s, buf, len);
|
|
|
|
}
|
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef write
|
|
|
|
|
2002-11-21 18:08:03 +08:00
|
|
|
inline int
|
|
|
|
_Jv_read(int s, void *buf, int len)
|
|
|
|
{
|
|
|
|
return ::read (s, buf, len);
|
|
|
|
}
|
2002-11-21 22:34:12 +08:00
|
|
|
|
2003-02-20 00:28:37 +08:00
|
|
|
#undef read
|
|
|
|
|
2002-11-21 22:34:12 +08:00
|
|
|
#endif /* DISABLE_JAVA_NET */
|
|
|
|
|
|
|
|
#endif /* __JV_POSIX_H__ */
|