hotspot/src/os/solaris/vm/os_solaris.cpp
changeset 7721 8fae37350972
parent 7692 02c573fae027
child 7724 a92d706dbdd5
--- a/hotspot/src/os/solaris/vm/os_solaris.cpp	Wed Jan 05 21:23:15 2011 -0500
+++ b/hotspot/src/os/solaris/vm/os_solaris.cpp	Fri Jan 07 03:38:19 2011 -0800
@@ -5197,7 +5197,7 @@
   int o_delete = (oflag & O_DELETE);
   oflag = oflag & ~O_DELETE;
 
-  fd = ::open(path, oflag, mode);
+  fd = ::open64(path, oflag, mode);
   if (fd == -1) return -1;
 
   //If the open succeeded, the file might still be a directory