// $Id$ #ifndef TAO_EC_BUSY_LOCK_CPP #define TAO_EC_BUSY_LOCK_CPP #include "orbsvcs/Event/EC_Busy_Lock.h" #if ! defined (__ACE_INLINE__) #include "orbsvcs/Event/EC_Busy_Lock.inl" #endif /* __ACE_INLINE__ */ TAO_BEGIN_VERSIONED_NAMESPACE_DECL template int TAO_EC_Busy_Lock_Adapter::remove (void) { return 0; } template int TAO_EC_Busy_Lock_Adapter::acquire (void) { return this->adaptee_->busy (); } template int TAO_EC_Busy_Lock_Adapter::tryacquire (void) { return this->adaptee_->busy (); } template int TAO_EC_Busy_Lock_Adapter::release (void) { return this->adaptee_->idle (); } template int TAO_EC_Busy_Lock_Adapter::acquire_read (void) { return this->adaptee_->busy (); } template int TAO_EC_Busy_Lock_Adapter::acquire_write (void) { return this->adaptee_->busy (); } template int TAO_EC_Busy_Lock_Adapter::tryacquire_read (void) { return this->adaptee_->busy (); } template int TAO_EC_Busy_Lock_Adapter::tryacquire_write (void) { return this->adaptee_->busy (); } TAO_END_VERSIONED_NAMESPACE_DECL #endif /* TAO_EC_BUSY_LOCK_CPP */