Public Member Functions | |
| TAO_Ubergestalt_Ready_Condition (void) | |
Static Public Member Functions | |
| TAO_Ubergestalt_Ready_Condition * | instance (void) |
Definition at line 173 of file TAO_Internal.cpp.
|
|
Definition at line 177 of file TAO_Internal.cpp. References ACE_SYNCH_RECURSIVE_CONDITION.
00178 : ACE_SYNCH_RECURSIVE_CONDITION 00179 (*ACE_Static_Object_Lock::instance()) 00180 { 00181 }; |
|
|
Definition at line 183 of file TAO_Internal.cpp. References TAO_SYNCH_RECURSIVE_MUTEX.
00184 {
00185 // The first thread to get here will initialize the static
00186 // local. Any subsequent threads synchronizaton will be handled by
00187 // TAO_Singleton
00188 static TAO_Ubergestalt_Ready_Condition *i_ =
00189 TAO_Singleton <TAO_Ubergestalt_Ready_Condition,
00190 TAO_SYNCH_RECURSIVE_MUTEX>::instance ();
00191
00192 return i_;
00193 };
|
1.3.6