summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-13 14:33:01 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-13 14:33:01 +0000
commit4964d614da6e44f39580fe1d818b36c8d7fb2c6f (patch)
tree86bf417656ebb8d24240b4e3bb72c44e6ab555ee
parentbddee343d314672d15313b2143871cb176ea8411 (diff)
downloadATCD-4964d614da6e44f39580fe1d818b36c8d7fb2c6f.tar.gz
ChangeLogTag: Wed Apr 13 07:32:19 2005 J.T. Conklin <jtc@acorntoolworks.com>
-rw-r--r--ChangeLog8
-rw-r--r--ace/Thread_Hook.cpp4
-rw-r--r--ace/Thread_Hook.h2
3 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7063941c201..d6ea936b63b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Apr 13 07:32:19 2005 J.T. Conklin <jtc@acorntoolworks.com>
+
+ * ace/Thread_Hook.h:
+ * ace/Thread_Hook.cpp:
+
+ Move ACE_Thread_Hook destructor out of line so it's not compiled
+ and included in each translation unit that includes Thread_Hook.h.
+
Wed Apr 13 07:27:21 2005 J.T. Conklin <jtc@acorntoolworks.com>
* ace/CDR_Stream.h:
diff --git a/ace/Thread_Hook.cpp b/ace/Thread_Hook.cpp
index d0472c5fac7..e866a3626e5 100644
--- a/ace/Thread_Hook.cpp
+++ b/ace/Thread_Hook.cpp
@@ -5,6 +5,10 @@
ACE_RCSID(ace, Thread_Hook, "$Id$")
+ACE_Thread_Hook::~ACE_Thread_Hook ()
+{
+}
+
ACE_THR_FUNC_RETURN
ACE_Thread_Hook::start (ACE_THR_FUNC func,
void *arg)
diff --git a/ace/Thread_Hook.h b/ace/Thread_Hook.h
index 4fa811d9d5f..c8aa941d669 100644
--- a/ace/Thread_Hook.h
+++ b/ace/Thread_Hook.h
@@ -36,7 +36,7 @@ class ACE_Export ACE_Thread_Hook
public:
/// Destructor.
- virtual ~ACE_Thread_Hook (void) {}
+ virtual ~ACE_Thread_Hook (void);
/**
* This method can be overridden in a subclass to customize this