# HG changeset patch # User alanb # Date 1294400299 28800 # Node ID 039eb4201e064db6125d81853e672619168a890f # Parent 0eb90baf1b69b4d4d8043096ef18a3103c5bb467 7009975: Large file support broken in hs20-b04 Reviewed-by: phh, acorn, kamg diff -r 0eb90baf1b69 -r 039eb4201e06 src/os/solaris/vm/os_solaris.cpp --- a/src/os/solaris/vm/os_solaris.cpp Wed Jan 05 21:23:15 2011 -0500 +++ b/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