< prev index next >

src/java.base/unix/native/include/jvm_md.h

Print this page




  58 #define JVM_F_OK    F_OK
  59 
  60 /*
  61  * File I/O
  62  */
  63 
  64 #include <sys/types.h>
  65 #include <sys/stat.h>
  66 #include <fcntl.h>
  67 #include <errno.h>
  68 #include <sys/signal.h>
  69 
  70 /* O Flags */
  71 
  72 #define JVM_O_RDONLY     O_RDONLY
  73 #define JVM_O_WRONLY     O_WRONLY
  74 #define JVM_O_RDWR       O_RDWR
  75 #define JVM_O_O_APPEND   O_APPEND
  76 #define JVM_O_EXCL       O_EXCL
  77 #define JVM_O_CREAT      O_CREAT

  78 
  79 /* Signals */
  80 
  81 #define JVM_SIGINT     SIGINT
  82 #define JVM_SIGTERM    SIGTERM
  83 
  84 
  85 #endif /* !_JAVASOFT_JVM_MD_H_ */


  58 #define JVM_F_OK    F_OK
  59 
  60 /*
  61  * File I/O
  62  */
  63 
  64 #include <sys/types.h>
  65 #include <sys/stat.h>
  66 #include <fcntl.h>
  67 #include <errno.h>
  68 #include <sys/signal.h>
  69 
  70 /* O Flags */
  71 
  72 #define JVM_O_RDONLY     O_RDONLY
  73 #define JVM_O_WRONLY     O_WRONLY
  74 #define JVM_O_RDWR       O_RDWR
  75 #define JVM_O_O_APPEND   O_APPEND
  76 #define JVM_O_EXCL       O_EXCL
  77 #define JVM_O_CREAT      O_CREAT
  78 #define JVM_O_DIRECT     O_DIRECT
  79 
  80 /* Signals */
  81 
  82 #define JVM_SIGINT     SIGINT
  83 #define JVM_SIGTERM    SIGTERM
  84 
  85 
  86 #endif /* !_JAVASOFT_JVM_MD_H_ */
< prev index next >