X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=libjava%2Finclude%2Fposix.h;fp=libjava%2Finclude%2Fposix.h;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=204afa7de9d169d583ec62f536611177289b48ee;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/include/posix.h b/libjava/include/posix.h deleted file mode 100644 index 204afa7d..00000000 --- a/libjava/include/posix.h +++ /dev/null @@ -1,46 +0,0 @@ -// 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 defines prototypes of - socket functions with socklen_t instead of size_t. This must be defined - early so defines the correct version of __PIIX. */ -#define _POSIX_PII_SOCKET - -#include -#include - -#ifdef HAVE_SYS_TIME_H -#include -#endif - -#ifdef HAVE_SYS_SELECT_H -#include -#endif - -#ifdef HAVE_UNISTD_H -#include -#endif - -#include - -#include -#include - -extern int _Jv_select (int n, fd_set *, fd_set *, fd_set *, struct timeval *); -extern jlong _Jv_platform_gettimeofday (); -extern void _Jv_platform_initialize (void); -extern void _Jv_platform_initProperties (java::util::Properties*); - -inline void -_Jv_platform_close_on_exec (jint fd) -{ - // Ignore errors. - fcntl (fd, F_SETFD, FD_CLOEXEC); -}