2002-02-07 06:26:42 +01:00
|
|
|
// win32.h -- Helper functions for Microsoft-flavored OSs.
|
|
|
|
|
|
|
|
/* Copyright (C) 2002 Free Software Foundation
|
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
|
#ifndef __JV_WIN32_H__
|
|
|
|
#define __JV_WIN32_H__
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#undef STRICT
|
|
|
|
|
|
|
|
#undef __INSIDE_CYGWIN__
|
|
|
|
#include <winsock.h>
|
2002-09-14 23:56:44 +02:00
|
|
|
#define IP_TOS 3
|
2002-03-08 02:03:56 +01:00
|
|
|
#include <gcj/cni.h>
|
2002-04-07 13:27:00 +02:00
|
|
|
#include <java/util/Properties.h>
|
2002-02-07 06:26:42 +01:00
|
|
|
|
2002-08-27 18:08:31 +02:00
|
|
|
#include <io.h>
|
2002-08-26 07:29:59 +02:00
|
|
|
|
2002-12-10 02:39:32 +01:00
|
|
|
// Prefix and suffix for shared libraries.
|
|
|
|
#define _Jv_platform_solib_prefix ""
|
|
|
|
#define _Jv_platform_solib_suffix ".dll"
|
|
|
|
|
2002-12-10 22:24:47 +01:00
|
|
|
#ifndef DISABLE_JAVA_NET
|
2002-11-21 15:34:12 +01:00
|
|
|
|
2002-11-21 11:08:03 +01:00
|
|
|
// these errors cannot occur on Win32
|
|
|
|
#define ENOTCONN 0
|
|
|
|
#define ECONNRESET 0
|
|
|
|
|
|
|
|
#ifndef ENOPROTOOPT
|
|
|
|
#define ENOPROTOOPT 109
|
|
|
|
#endif
|
|
|
|
|
2002-12-10 22:24:47 +01:00
|
|
|
#endif // DISABLE_JAVA_NET
|
2002-11-21 15:34:12 +01:00
|
|
|
|
2002-02-07 19:59:52 +01:00
|
|
|
extern void _Jv_platform_initialize (void);
|
2002-04-07 13:27:00 +02:00
|
|
|
extern void _Jv_platform_initProperties (java::util::Properties*);
|
2002-03-08 02:03:56 +01:00
|
|
|
extern jlong _Jv_platform_gettimeofday ();
|
2002-02-07 06:26:42 +01:00
|
|
|
|
2002-11-22 11:27:53 +01:00
|
|
|
inline void
|
|
|
|
_Jv_platform_close_on_exec (jint)
|
|
|
|
{
|
|
|
|
// Ignore.
|
|
|
|
}
|
|
|
|
|
2003-01-07 17:50:08 +01:00
|
|
|
#ifdef JV_HASH_SYNCHRONIZATION
|
2002-12-31 18:43:47 +01:00
|
|
|
/* Suspends the execution of the current thread for the specified
|
|
|
|
number of microseconds. Tries to emulate the behaviour of usleep()
|
|
|
|
on UNIX and provides a granularity of 1 millisecond. */
|
|
|
|
inline void
|
|
|
|
_Jv_platform_usleep (unsigned long usecs)
|
|
|
|
{
|
|
|
|
if (usecs > 0UL)
|
|
|
|
{
|
|
|
|
unsigned long millis = ((usecs + 999UL) / 1000UL);
|
|
|
|
Sleep (millis);
|
|
|
|
}
|
|
|
|
}
|
2003-01-07 17:50:08 +01:00
|
|
|
#endif /* JV_HASH_SYNCHRONIZATION */
|
2002-12-31 18:43:47 +01:00
|
|
|
|
2002-12-10 22:24:47 +01:00
|
|
|
#ifndef DISABLE_JAVA_NET
|
2002-11-21 15:34:12 +01:00
|
|
|
|
2002-11-21 11:08:03 +01:00
|
|
|
static inline int
|
|
|
|
_Jv_socket (int domain, int type, int protocol)
|
|
|
|
{
|
|
|
|
return ::socket (domain, type, protocol);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int
|
|
|
|
_Jv_connect (jint fd, sockaddr *ptr, int len)
|
|
|
|
{
|
|
|
|
return ::connect (fd, ptr, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int
|
|
|
|
_Jv_close (jint fd)
|
|
|
|
{
|
|
|
|
return ::closesocket (fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int
|
|
|
|
_Jv_bind (int fd, struct sockaddr *addr, int addrlen)
|
|
|
|
{
|
|
|
|
return ::bind (fd, addr, addrlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int
|
|
|
|
_Jv_accept (int fd, struct sockaddr *addr, socklen_t *addrlen)
|
|
|
|
{
|
|
|
|
return ::accept (fd, addr, addrlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int
|
|
|
|
_Jv_listen (int fd, int backlog)
|
|
|
|
{
|
|
|
|
return ::listen (fd, backlog);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int
|
|
|
|
_Jv_write(int s, void *buf, int len)
|
|
|
|
{
|
|
|
|
return ::send (s, (char*) buf, len, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int
|
|
|
|
_Jv_read(int s, void *buf, int len)
|
|
|
|
{
|
|
|
|
return ::recv (s, (char*) buf, len, 0);
|
|
|
|
}
|
2002-11-22 11:27:53 +01:00
|
|
|
|
2002-12-10 22:24:47 +01:00
|
|
|
#endif /* DISABLE_JAVA_NET */
|
2002-11-22 11:27:53 +01:00
|
|
|
|
2002-04-24 03:33:19 +02:00
|
|
|
/* Store up to SIZE return address of the current program state in
|
|
|
|
ARRAY and return the exact number of values stored. */
|
|
|
|
extern int backtrace (void **__array, int __size);
|
|
|
|
|
2002-02-07 06:26:42 +01:00
|
|
|
#endif /* __JV_WIN32_H__ */
|