mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-25 23:13:45 +08:00
73272ce608
* prims.cc (_Jv_CreateJavaVM): Call _Jv_platform_initialize. * win32.cc (win32_exception_handler): Now static. * include/win32.h (_Jv_platform_initialize): Declare. (win32_exception_handler): Don't declare. * java/lang/natSystem.cc (currentTimeMillis): Use _Jv_platform_gettimeofday. * posix.cc (_Jv_platform_gettimeofday): Renamed. (_Jv_select): Use new name. (_Jv_platform_initialize): New function. * include/posix.h (_Jv_platform_gettimeofday): Renamed from _Jv_gettimeofday. (_Jv_platform_initialize): Declare. From-SVN: r49583
34 lines
912 B
C
34 lines
912 B
C
// posix.h -- Helper functions for POSIX-flavored OSs.
|
|
|
|
/* Copyright (C) 2000, 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. */
|
|
|
|
/* 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
|
|
|
|
#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
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
extern int _Jv_select (int n, fd_set *, fd_set *, fd_set *, struct timeval *);
|
|
extern void _Jv_platform_gettimeofday (struct timeval *);
|
|
extern void _Jv_platform_initialize (void);
|