summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-13 02:36:55 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-13 02:36:55 +0000
commit480e396d6186e03f21c542e763449ce3951f8623 (patch)
tree05ab125c478bf3728f5a09c79f27944840e5ced6 /ace
parentf13cca40aaf0228bc434e562829af0eb2bb3e990 (diff)
downloadATCD-480e396d6186e03f21c542e763449ce3951f8623.tar.gz
ChangeLogTag: Tue Apr 12 19:30:40 2005 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'ace')
-rw-r--r--ace/Makefile.am1
-rw-r--r--ace/Reactor_Impl.cpp11
-rw-r--r--ace/Reactor_Impl.h2
-rw-r--r--ace/ace.mpc1
4 files changed, 14 insertions, 1 deletions
diff --git a/ace/Makefile.am b/ace/Makefile.am
index 0f187217025..5cb65ca403a 100644
--- a/ace/Makefile.am
+++ b/ace/Makefile.am
@@ -217,6 +217,7 @@ libACE_la_SOURCES = \
RW_Process_Mutex.cpp \
RW_Thread_Mutex.cpp \
Reactor.cpp \
+ Reactor_Impl.cpp \
Reactor_Notification_Strategy.cpp \
Read_Buffer.cpp \
Recursive_Thread_Mutex.cpp \
diff --git a/ace/Reactor_Impl.cpp b/ace/Reactor_Impl.cpp
new file mode 100644
index 00000000000..556d25c4ee5
--- /dev/null
+++ b/ace/Reactor_Impl.cpp
@@ -0,0 +1,11 @@
+// $Id$
+
+#include "ace/Reactor_Impl.h"
+
+ACE_RCSID (ace,
+ Reactor_Impl,
+ "$Id$")
+
+ACE_Reactor_Impl::~ACE_Reactor_Impl()
+{
+}
diff --git a/ace/Reactor_Impl.h b/ace/Reactor_Impl.h
index 6fb13c1119a..b2a65eff12c 100644
--- a/ace/Reactor_Impl.h
+++ b/ace/Reactor_Impl.h
@@ -125,7 +125,7 @@ class ACE_Export ACE_Reactor_Impl
{
public:
/// Close down and release all resources.
- virtual ~ACE_Reactor_Impl (void) {}
+ virtual ~ACE_Reactor_Impl (void);
/// Initialization.
virtual int open (size_t size,
diff --git a/ace/ace.mpc b/ace/ace.mpc
index c7d80ded027..30f3c26857a 100644
--- a/ace/ace.mpc
+++ b/ace/ace.mpc
@@ -192,6 +192,7 @@ project(ACE) : acedefaults, core, other, codecs, token, svcconf, uuid, filecache
Process_Semaphore.cpp
Profile_Timer.cpp
Reactor.cpp
+ Reactor_Impl.cpp
Reactor_Notification_Strategy.cpp
Read_Buffer.cpp
Recursive_Thread_Mutex.cpp