// $Id$ // ============================================================================ // // = LIBRARY // examples // // = FILENAME // main_thread.cpp // // = DESCRIPTION // Implements an threaded timer queue. // This code exercises the Timer_Queue_Test_Driver class using // threads. // // = AUTHORS // Douglas Schmidt && // Sergio Flores-Gaitan // // ============================================================================ #include "ace/Auto_Ptr.h" #include "Driver.h" #include "Thread_Timer_Queue_Test.h" ACE_RCSID(Timer_Queue, main_thread, "$Id$") typedef Timer_Queue_Test_Driver THREAD_TIMER_QUEUE_TEST_DRIVER; int main (int, char *[]) { // Auto ptr ensures that the driver memory is released // automatically. THREAD_TIMER_QUEUE_TEST_DRIVER *tqtd; ACE_NEW_RETURN (tqtd, Thread_Timer_Queue_Test_Driver, -1); auto_ptr driver (tqtd); return driver->run_test (); } #if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) template class auto_ptr ; template class ACE_Auto_Basic_Ptr ; #elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) #pragma instantiate auto_ptr #pragma instantiate ACE_Auto_Basic_Ptr #endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */