⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cxx_lock.cpp

📁 这是国外的resip协议栈
💻 CPP
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997-2004 *	Sleepycat Software.  All rights reserved. * * $Id: cxx_lock.cpp,v 11.19 2004/01/28 03:35:56 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);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -