diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-08-02 21:54:04 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-08-02 21:54:04 +0000 |
commit | f536cd95fb5cfbfa54809514fd89dc55d6b8e1a4 (patch) | |
tree | 03fe690813ad84c550ddb18c4058221d6290e55a /libjava/include | |
parent | 2d579116788c2841ace42c93fe35bef5cf263543 (diff) | |
download | gcc-f536cd95fb5cfbfa54809514fd89dc55d6b8e1a4.tar.gz |
Makefile.in: Rebuilt.
* Makefile.in: Rebuilt.
* Makefile.am (libgcj_la_SOURCES): Added posix.cc.
* java/net/natPlainSocketImpl.cc: Include posix.h.
(accept): Use _Jv_select.
* java/net/natPlainDatagramSocketImpl.cc: Include posix.h.
(receive): Use _Jv_select.
* java/io/natFileDescriptorPosix.cc: Include posix.h.
(available): Use _Jv_select.
* java/lang/natSystem.cc: Include posix.h.
(currentTimeMillis): Use _Jv_gettimeofday.
* include/posix.h: New file.
* posix.cc: New file.
From-SVN: r35435
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/posix.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libjava/include/posix.h b/libjava/include/posix.h new file mode 100644 index 00000000000..278f7eb773b --- /dev/null +++ b/libjava/include/posix.h @@ -0,0 +1,27 @@ +// posix.h -- Helper functions for POSIX-flavored OSs. + +/* Copyright (C) 2000 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. */ + +#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_gettimeofday (struct timeval *); |