Changeset 3896

Show
Ignore:
Timestamp:
05/23/07 18:20:38 (6 years ago)
Author:
ttsou
Message:

fixes to work on 64-bit os

Location:
platform/logService
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • platform/logService/LogStatus_impl.cpp

    r3832 r3896  
    3131} 
    3232 
    33 unsigned long long LogStatus_impl::getMaxSize() 
     33CORBA::ULongLong LogStatus_impl::getMaxSize() 
    3434{ 
    3535    return circLogSeq->getMaxLen(); 
    3636} 
    3737 
    38 unsigned long long LogStatus_impl::getCurrentSize() 
     38CORBA::ULongLong LogStatus_impl::getCurrentSize() 
    3939{ 
    4040    // Should be byte size of Log 
     
    4242} 
    4343 
    44 unsigned long long LogStatus_impl::getNumRecords() 
     44CORBA::ULongLong LogStatus_impl::getNumRecords() 
    4545{ 
    4646    return circLogSeq->getCurrentLen(); 
  • platform/logService/LogStatus_impl.h

    r3830 r3896  
    7171    ~LogStatus_impl(); 
    7272 
    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(); 
    7676    LogService::LogFullAction getLogFullAction(); 
    7777    LogService::AdministrativeState getAdministrativeState();