< prev index next >

src/os/linux/vm/os_linux.cpp

Print this page

        

*** 5084,5109 **** } // This code originates from JDK's sysOpen and open64_w // from src/solaris/hpi/src/system_md.c - #ifndef O_DELETE - #define O_DELETE 0x10000 - #endif - - // Open a file. Unlink the file immediately after open returns - // if the specified oflag has the O_DELETE flag set. - // O_DELETE is used only in j2se/src/share/native/java/util/zip/ZipFile.c - int os::open(const char *path, int oflag, int mode) { if (strlen(path) > MAX_PATH - 1) { errno = ENAMETOOLONG; return -1; } int fd; - int o_delete = (oflag & O_DELETE); - oflag = oflag & ~O_DELETE; fd = ::open64(path, oflag, mode); if (fd == -1) return -1; //If the open succeeded, the file might still be a directory --- 5084,5099 ----
*** 5152,5164 **** ::fcntl(fd, F_SETFD, flags | FD_CLOEXEC); } } #endif - if (o_delete != 0) { - ::unlink(path); - } return fd; } // create binary file, rewriting existing file if required --- 5142,5151 ----
< prev index next >