summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-10-02 21:34:31 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-10-02 21:34:31 +0000
commit081a9b1daeef16da82b44cc6d9f396bb7e1c2eba (patch)
treee2d19ec20a9483f56ae9b0373dbcfeb5d405fab1 /ace
parent9d08d6fcc1790a6d35842083498c3336434fb339 (diff)
downloadATCD-081a9b1daeef16da82b44cc6d9f396bb7e1c2eba.tar.gz
Forgot to remove stuff I commented out while testing llseek fix.
Diffstat (limited to 'ace')
-rw-r--r--ace/OS.i2
1 files changed, 0 insertions, 2 deletions
diff --git a/ace/OS.i b/ace/OS.i
index eb773ae0996..7212f8013bb 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -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