/usr/include/ace/OS_Errno.inl is in libace-dev 6.3.3+dfsg-1.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | // -*- C++ -*-
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
ACE_Errno_Guard::ACE_Errno_Guard (ACE_ERRNO_TYPE &errno_ref,
int error)
:
#if defined (ACE_MT_SAFE)
errno_ptr_ (&errno_ref),
#endif /* ACE_MT_SAFE */
error_ (error)
{
#if !defined(ACE_MT_SAFE)
ACE_UNUSED_ARG (errno_ref);
#endif /* ACE_MT_SAFE */
}
ACE_INLINE
ACE_Errno_Guard::ACE_Errno_Guard (ACE_ERRNO_TYPE &errno_ref)
:
#if defined (ACE_MT_SAFE)
errno_ptr_ (&errno_ref),
#endif /* ACE_MT_SAFE */
error_ (errno_ref)
{
}
ACE_INLINE
ACE_Errno_Guard::~ACE_Errno_Guard (void)
{
#if defined (ACE_MT_SAFE)
*errno_ptr_ = this->error_;
#else
errno = this->error_;
#endif /* ACE_MT_SAFE */
}
#if defined (ACE_HAS_WINCE_BROKEN_ERRNO)
ACE_INLINE int
ACE_Errno_Guard::operator= (const ACE_ERRNO_TYPE &error)
{
return this->error_ = error;
}
#endif /* ACE_HAS_WINCE_BROKEN_ERRNO */
ACE_INLINE int
ACE_Errno_Guard::operator= (int error)
{
return this->error_ = error;
}
ACE_INLINE bool
ACE_Errno_Guard::operator== (int error)
{
return this->error_ == error;
}
ACE_INLINE bool
ACE_Errno_Guard::operator!= (int error)
{
return this->error_ != error;
}
ACE_END_VERSIONED_NAMESPACE_DECL
|