summaryrefslogtreecommitdiff
path: root/bdb/cxx/cxx_lock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bdb/cxx/cxx_lock.cpp')
-rw-r--r--bdb/cxx/cxx_lock.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/bdb/cxx/cxx_lock.cpp b/bdb/cxx/cxx_lock.cpp
deleted file mode 100644
index 446eba49e27..00000000000
--- a/bdb/cxx/cxx_lock.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-/*-
- * See the file LICENSE for redistribution information.
- *
- * Copyright (c) 1997-2002
- * Sleepycat Software. All rights reserved.
- */
-
-#include "db_config.h"
-
-#ifndef lint
-static const char revid[] = "$Id: cxx_lock.cpp,v 11.17 2002/03/27 04:31:16 bostic Exp $";
-#endif /* not lint */
-
-#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);
-}