diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-10-02 21:34:31 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-10-02 21:34:31 +0000 |
commit | 081a9b1daeef16da82b44cc6d9f396bb7e1c2eba (patch) | |
tree | e2d19ec20a9483f56ae9b0373dbcfeb5d405fab1 /ace | |
parent | 9d08d6fcc1790a6d35842083498c3336434fb339 (diff) | |
download | ATCD-081a9b1daeef16da82b44cc6d9f396bb7e1c2eba.tar.gz |
Forgot to remove stuff I commented out while testing llseek fix.
Diffstat (limited to 'ace')
-rw-r--r-- | ace/OS.i | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -10309,8 +10309,6 @@ ACE_OS::llseek (ACE_HANDLE handle, ACE_LOFF_T offset, int whence) #if ACE_SIZEOF_LONG == 8 /* The native lseek is 64 bit, use it. */ return ACE_OS::lseek (handle, offset, whence); -// #elif defined (linux) -// ACE_OSCALL_RETURN (::llseek (handle, offset, whence), ACE_LOFF_T, -1); #elif defined (__sgi) || defined (linux) ACE_OSCALL_RETURN (::lseek64 (handle, offset, whence), ACE_LOFF_T, -1); #else |