示例#1
0
//------------------------------------------------------------------------------
BLocker::BLocker(bool benaphore_style)
{
	InitLocker("some BLocker", benaphore_style);
}
示例#2
0
//------------------------------------------------------------------------------
//
//	This constructor is not documented.  The final argument is ignored for
//	now.  In Be's headers, its called "for_IPC".  DO NOT USE THIS
//	CONSTRUCTOR!
//
BLocker::BLocker(const char *name,
                 bool benaphore_style,
                 bool)
{
	InitLocker(name, benaphore_style);
}
示例#3
0
//------------------------------------------------------------------------------
BLocker::BLocker(const char *name)
{
	InitLocker(name, true);
}
示例#4
0
//
// Constructors:
//
// All constructors just pass their arguments to InitLocker().  Note that
// the default for "name" is "some BLocker" and "benaphore_style" is true.
//
//------------------------------------------------------------------------------
BLocker::BLocker()
{
	InitLocker("some BLocker", true);
}
示例#5
0
文件: Locker.cpp 项目: mylegacy/haiku
BLocker::BLocker(bool benaphoreStyle)
{
	InitLocker(NULL, benaphoreStyle);
}
示例#6
0
文件: Locker.cpp 项目: mylegacy/haiku
BLocker::BLocker()
{
	InitLocker(NULL, true);
}
示例#7
0
Locker::Locker()
{
    InitLocker("some Locker", true);
}