Changeset 3896
- Timestamp:
- 05/23/07 18:20:38 (6 years ago)
- Location:
- platform/logService
- Files:
-
- 2 modified
-
LogStatus_impl.cpp (modified) (2 diffs)
-
LogStatus_impl.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
platform/logService/LogStatus_impl.cpp
r3832 r3896 31 31 } 32 32 33 unsigned long long LogStatus_impl::getMaxSize()33 CORBA::ULongLong LogStatus_impl::getMaxSize() 34 34 { 35 35 return circLogSeq->getMaxLen(); 36 36 } 37 37 38 unsigned long long LogStatus_impl::getCurrentSize()38 CORBA::ULongLong LogStatus_impl::getCurrentSize() 39 39 { 40 40 // Should be byte size of Log … … 42 42 } 43 43 44 unsigned long long LogStatus_impl::getNumRecords()44 CORBA::ULongLong LogStatus_impl::getNumRecords() 45 45 { 46 46 return circLogSeq->getCurrentLen(); -
platform/logService/LogStatus_impl.h
r3830 r3896 71 71 ~LogStatus_impl(); 72 72 73 unsigned long long getMaxSize();74 unsigned long long getCurrentSize();75 unsigned long long getNumRecords();73 CORBA::ULongLong getMaxSize(); 74 CORBA::ULongLong getCurrentSize(); 75 CORBA::ULongLong getNumRecords(); 76 76 LogService::LogFullAction getLogFullAction(); 77 77 LogService::AdministrativeState getAdministrativeState();