summaryrefslogtreecommitdiff
path: root/ACE/examples/Timer_Queue/main_async.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Timer_Queue/main_async.cpp')
-rw-r--r--ACE/examples/Timer_Queue/main_async.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/ACE/examples/Timer_Queue/main_async.cpp b/ACE/examples/Timer_Queue/main_async.cpp
new file mode 100644
index 00000000000..87a184f583b
--- /dev/null
+++ b/ACE/examples/Timer_Queue/main_async.cpp
@@ -0,0 +1,43 @@
+
+//=============================================================================
+/**
+ * @file main_async.cpp
+ *
+ * $Id$
+ *
+ * Implements an asynchronous timer queue.
+ * This code exercises the Timer_Queue_Test_Driver class using
+ * signals as an asynchronous mechanism to dispatch events.
+ *
+ *
+ * @author Douglas Schmidt <schmidt@cs.wustl.edu> && Sergio Flores-Gaitan <sergio@cs.wustl.edu>
+ */
+//=============================================================================
+
+
+#include "ace/OS_main.h"
+#include "ace/Auto_Ptr.h"
+#include "Driver.h"
+#include "Async_Timer_Queue_Test.h"
+
+ACE_RCSID (Timer_Queue,
+ main_async,
+ "$Id$")
+
+typedef Timer_Queue_Test_Driver<Async_Timer_Queue *,
+ Async_Timer_Queue,
+ Async_Timer_Queue::ACTION>
+ ASYNC_TIMER_QUEUE_TEST_DRIVER;
+
+int
+ACE_TMAIN (int, ACE_TCHAR *[])
+{
+ ASYNC_TIMER_QUEUE_TEST_DRIVER *tqtd;
+ ACE_NEW_RETURN (tqtd, Async_Timer_Queue_Test_Driver, -1);
+ // Auto ptr ensures that the driver memory is released
+ // automatically.
+ auto_ptr <ASYNC_TIMER_QUEUE_TEST_DRIVER> driver (tqtd);
+
+ return driver->run_test ();
+}
+