/usr/include/ace/Lock_Adapter_T.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 | // -*- C++ -*-
//
// $Id: Lock_Adapter_T.inl 80826 2008-03-04 14:51:23Z wotte $
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class ACE_LOCKING_MECHANISM>
ACE_INLINE
ACE_Lock_Adapter<ACE_LOCKING_MECHANISM>::ACE_Lock_Adapter (
ACE_LOCKING_MECHANISM &lock)
: lock_ (&lock),
delete_lock_ (false)
{
}
ACE_END_VERSIONED_NAMESPACE_DECL
|