diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-01-03 22:09:43 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-01-03 22:09:43 +0000 |
commit | c41f65963d4d61181ecc9163227183cd6626c846 (patch) | |
tree | 8957feab0961219727d09cc5affbc9acd1111327 /ace/FILE.cpp | |
parent | fdcdf85d64fe723d212a5d7ebc58ef463869913f (diff) | |
download | ATCD-c41f65963d4d61181ecc9163227183cd6626c846.tar.gz |
.
Diffstat (limited to 'ace/FILE.cpp')
-rw-r--r-- | ace/FILE.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ace/FILE.cpp b/ace/FILE.cpp index 58337040f3b..db2ef4b09d1 100644 --- a/ace/FILE.cpp +++ b/ace/FILE.cpp @@ -60,6 +60,14 @@ ACE_FILE::get_info (ACE_FILE_Info *finfo) } int +ACE_FILE::get_info (ACE_FILE_Info &finfo) +{ + ACE_TRACE ("ACE_FILE::get_info"); + + return this->get_info (&finfo); +} + +int ACE_FILE::truncate (off_t length) { ACE_TRACE ("ACE_FILE::truncate"); |