mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
43 lines
941 B
C++
43 lines
941 B
C++
/*-
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 1997-2005
|
|
* Sleepycat Software. All rights reserved.
|
|
*
|
|
* $Id: cxx_lock.cpp,v 12.1 2005/06/16 20:20:59 bostic Exp $
|
|
*/
|
|
|
|
#include "db_config.h"
|
|
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
#include "db_cxx.h"
|
|
#include "dbinc/cxx_int.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// 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);
|
|
}
|