/usr/include/ace/Service_Repository.inl is in libace-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | // -*- C++ -*-
//
// $Id: Service_Repository.inl 84170 2009-01-15 13:31:50Z johnnyw $
// Returns a count of the number of currently valid entries (counting
// both resumed and suspended entries).
#if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0)
#include "ace/Guard_T.h"
#include "ace/Thread_Mutex.h"
#endif /* ACE_MT_SAFE */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE size_t
ACE_Service_Repository::current_size (void) const
{
ACE_TRACE ("ACE_Service_Repository::current_size");
ACE_MT (ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex,
ace_mon,
(ACE_Recursive_Thread_Mutex &) this->lock_, 0));
return this->service_array_.size ();
}
ACE_INLINE int
ACE_Service_Repository_Iterator::done (void) const
{
ACE_TRACE ("ACE_Service_Repository_Iterator::done");
return this->next_ >= this->svc_rep_.current_size ();
}
ACE_INLINE
ACE_Service_Repository_Iterator::~ACE_Service_Repository_Iterator (void)
{
}
ACE_END_VERSIONED_NAMESPACE_DECL
|