Directory Structure [step 1]: moving files

working on #672

NOTE: This commit can't be compiled!!
This commit is contained in:
Yehonal
2017-10-12 20:00:52 +02:00
parent 4df28fd29c
commit f06f32849f
2508 changed files with 0 additions and 1325 deletions

70
deps/acelite/ace/File_Lock.cpp vendored Normal file
View File

@@ -0,0 +1,70 @@
#include "ace/File_Lock.h"
#include "ace/Log_Category.h"
#if !defined (__ACE_INLINE__)
#include "ace/File_Lock.inl"
#endif /* __ACE_INLINE__ */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_ALLOC_HOOK_DEFINE(ACE_File_Lock)
void
ACE_File_Lock::dump (void) const
{
#if defined (ACE_HAS_DUMP)
// ACE_TRACE ("ACE_File_Lock::dump");
ACELIB_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
this->lock_.dump ();
ACELIB_DEBUG ((LM_DEBUG, ACE_END_DUMP));
#endif /* ACE_HAS_DUMP */
}
ACE_File_Lock::ACE_File_Lock (ACE_HANDLE h,
bool unlink_in_destructor)
: removed_ (false),
unlink_in_destructor_ (unlink_in_destructor)
{
// ACE_TRACE ("ACE_File_Lock::ACE_File_Lock");
if (ACE_OS::flock_init (&this->lock_) == -1)
ACELIB_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("ACE_File_Lock::ACE_File_Lock")));
this->set_handle (h);
}
ACE_File_Lock::ACE_File_Lock (const ACE_TCHAR *name,
int flags,
mode_t perms,
bool unlink_in_destructor)
: unlink_in_destructor_ (unlink_in_destructor)
{
// ACE_TRACE ("ACE_File_Lock::ACE_File_Lock");
if (this->open (name, flags, perms) == -1)
ACELIB_ERROR ((LM_ERROR,
ACE_TEXT ("%p %s\n"),
ACE_TEXT ("ACE_File_Lock::ACE_File_Lock"),
name));
}
int
ACE_File_Lock::open (const ACE_TCHAR *name,
int flags,
mode_t perms)
{
// ACE_TRACE ("ACE_File_Lock::open");
this->removed_ = false;
return ACE_OS::flock_init (&this->lock_, flags, name, perms);
}
ACE_File_Lock::~ACE_File_Lock (void)
{
// ACE_TRACE ("ACE_File_Lock::~ACE_File_Lock");
this->remove (this->unlink_in_destructor_);
}
ACE_END_VERSIONED_NAMESPACE_DECL