//------------------------------------------------------------------------------ BLocker::BLocker(bool benaphore_style) { InitLocker("some BLocker", benaphore_style); }
//------------------------------------------------------------------------------ // // 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); }
//------------------------------------------------------------------------------ BLocker::BLocker(const char *name) { InitLocker(name, true); }
// // 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); }
BLocker::BLocker(bool benaphoreStyle) { InitLocker(NULL, benaphoreStyle); }
BLocker::BLocker() { InitLocker(NULL, true); }
Locker::Locker() { InitLocker("some Locker", true); }