/usr/include/tao/Endpoint.inl is in libtao-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 39 40 | // -*- C++ -*-
//
// $Id: Endpoint.inl 73791 2006-07-27 20:54:56Z wotte $
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
TAO_Endpoint::TAO_Endpoint (CORBA::ULong tag,
CORBA::Short priority)
: addr_lookup_lock_ ()
// @@ Would be a tragedy if the hash value of this endpoint is 0, in
// which case this optimizaton wouldn't work. We can get around
// that using a bool. But we don't want to increase the runtime
// memory.
, hash_val_ (0)
, tag_ (tag)
, priority_ (priority)
{
}
ACE_INLINE CORBA::ULong
TAO_Endpoint::tag (void) const
{
return this->tag_;
}
ACE_INLINE CORBA::Short
TAO_Endpoint::priority (void) const
{
return this->priority_;
}
ACE_INLINE void
TAO_Endpoint::priority (CORBA::Short p)
{
this->priority_ = p;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|