diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-07 18:59:52 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-07 18:59:52 +0000 |
commit | dc5c09344a6ac8a625b2d0c5b2d2bbdbe0e96994 (patch) | |
tree | 445027a01135cb59b020bba496158a0fc253ef73 /libjava/include/posix.h | |
parent | 9b2e8d38d4384c026086079b4a4b13662f719aac (diff) | |
download | gcc-dc5c09344a6ac8a625b2d0c5b2d2bbdbe0e96994.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49583 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include/posix.h')
-rw-r--r-- | libjava/include/posix.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libjava/include/posix.h b/libjava/include/posix.h index e7ba3174354..bbfb0b244e7 100644 --- a/libjava/include/posix.h +++ b/libjava/include/posix.h @@ -1,6 +1,6 @@ // posix.h -- Helper functions for POSIX-flavored OSs. -/* Copyright (C) 2000 Free Software Foundation +/* Copyright (C) 2000, 2002 Free Software Foundation This file is part of libgcj. @@ -29,4 +29,5 @@ details. */ #endif extern int _Jv_select (int n, fd_set *, fd_set *, fd_set *, struct timeval *); -extern void _Jv_gettimeofday (struct timeval *); +extern void _Jv_platform_gettimeofday (struct timeval *); +extern void _Jv_platform_initialize (void); |