2001-03-05 01:42:05 +01:00
|
|
|
/*-
|
|
|
|
* See the file LICENSE for redistribution information.
|
|
|
|
*
|
2002-10-30 12:57:05 +01:00
|
|
|
* Copyright (c) 1997-2002
|
2001-03-05 01:42:05 +01:00
|
|
|
* Sleepycat Software. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "db_config.h"
|
|
|
|
|
|
|
|
#ifndef lint
|
2002-10-30 12:57:05 +01:00
|
|
|
static const char revid[] = "$Id: cxx_lock.cpp,v 11.17 2002/03/27 04:31:16 bostic Exp $";
|
2001-03-05 01:42:05 +01:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "db_cxx.h"
|
2002-10-30 12:57:05 +01:00
|
|
|
#include "dbinc/cxx_int.h"
|
2001-03-05 01:42:05 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// //
|
|
|
|
// DbLock //
|
|
|
|
// //
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DbLock::DbLock(DB_LOCK value)
|
|
|
|
: lock_(value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DbLock::DbLock()
|
|
|
|
{
|
|
|
|
memset(&lock_, 0, sizeof(DB_LOCK));
|
|
|
|
}
|
|
|
|
|
|
|
|
DbLock::DbLock(const DbLock &that)
|
|
|
|
: lock_(that.lock_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DbLock &DbLock::operator = (const DbLock &that)
|
|
|
|
{
|
|
|
|
lock_ = that.lock_;
|
|
|
|
return (*this);
|
|
|
|
}
|