summaryrefslogtreecommitdiff
path: root/ace/Base_Thread_Adapter.h
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-06 18:19:39 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-06 18:19:39 +0000
commit836c144449cb57d374a2415e7ded51b17e5d9b5d (patch)
treeb39b86eb0eb92c1cd89bdd36d089eeb1b1c24c6a /ace/Base_Thread_Adapter.h
parent95b076ab4662013036c8e6f408e11492cfccbf9c (diff)
downloadATCD-836c144449cb57d374a2415e7ded51b17e5d9b5d.tar.gz
ChangeLogTag:Thu Nov 6 17:57:10 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'ace/Base_Thread_Adapter.h')
-rw-r--r--ace/Base_Thread_Adapter.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/ace/Base_Thread_Adapter.h b/ace/Base_Thread_Adapter.h
index 6c225ee1714..c2b5a595561 100644
--- a/ace/Base_Thread_Adapter.h
+++ b/ace/Base_Thread_Adapter.h
@@ -18,14 +18,15 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-#include "ace/OS_Export.h"
+#include "ace/ACE_export.h"
+#include "ace/OS_Log_Msg_Attributes.h"
// Run the thread entry point for the <ACE_Thread_Adapter>. This must
// be an extern "C" to make certain compilers happy...
#if defined (ACE_PSOS)
extern "C" void ace_thread_adapter (unsigned long args);
#else /* ! defined (ACE_PSOS) */
-extern "C" ACE_OS_Export ACE_THR_FUNC_RETURN ace_thread_adapter (void *args);
+extern "C" ACE_Export ACE_THR_FUNC_RETURN ace_thread_adapter (void *args);
#endif /* ACE_PSOS */
/**
@@ -36,7 +37,7 @@ extern "C" ACE_OS_Export ACE_THR_FUNC_RETURN ace_thread_adapter (void *args);
* Container for ACE_Thread_Descriptor members that are
* used in ACE_OS.
*/
-class ACE_OS_Export ACE_OS_Thread_Descriptor
+class ACE_Export ACE_OS_Thread_Descriptor
{
public:
/// Get the thread creation flags.
@@ -71,7 +72,7 @@ protected:
* the thread that calls @c invoke() on this object. Therefore,
* the @c invoke() method is responsible for deleting itself.
*/
-class ACE_OS_Export ACE_Base_Thread_Adapter
+class ACE_Export ACE_Base_Thread_Adapter
{
public:
/// Constructor.