# HG changeset patch # User alanb # Date 1294400299 28800 # Node ID 8fae37350972d7e04415499eb277378ba7723b64 # Parent 8283870fc280cbe44c27435a8f97025e44c55308 7009975: Large file support broken in hs20-b04 Reviewed-by: phh, acorn, kamg diff -r 8283870fc280 -r 8fae37350972 hotspot/src/os/solaris/vm/os_solaris.cpp --- 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