summaryrefslogtreecommitdiff
path: root/ace/OS.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-10-16 22:32:09 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-10-16 22:32:09 +0000
commitd273634b9c62821dc46e4171f6e2377f3880bb09 (patch)
treeccc9bd0f1bf66b262fcfe880d5937c49af716ce1 /ace/OS.cpp
parent2f9a856d28f02fd197e2a7fda6c8ed0f47bbf269 (diff)
downloadATCD-d273634b9c62821dc46e4171f6e2377f3880bb09.tar.gz
ChangeLogTag:Sat Oct 16 17:10:23 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/OS.cpp')
-rw-r--r--ace/OS.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/ace/OS.cpp b/ace/OS.cpp
index 1b6802b3a81..e5ed4fb9025 100644
--- a/ace/OS.cpp
+++ b/ace/OS.cpp
@@ -1912,8 +1912,7 @@ ACE_TSS_Cleanup_keys_destroyer (void *tss_keys)
}
ACE_TSS_Cleanup::ACE_TSS_Cleanup (void)
- : table_ ()
- , in_use_ (ACE_OS::NULL_key)
+ : in_use_ (ACE_OS::NULL_key)
#if defined (ACE_HAS_TSS_EMULATION)
// ACE_TSS_Emulation::total_keys () provides the value of the next
// key to be created.
@@ -3289,8 +3288,10 @@ ACE_OS::thr_create (ACE_THR_FUNC func,
if (ACE_BIT_ENABLED (flags, THR_USE_AFX))
{
CWinThread *cwin_thread =
- ::AfxBeginThread ((AFX_THREADPROC) &thread_args->entry_point (),
- thread_args, priority, 0,
+ ::AfxBeginThread ((AFX_THREADPROC) thread_args->entry_point (),
+ thread_args,
+ priority,
+ 0,
flags | THR_SUSPENDED);
// Have to duplicate the handle because
// CWinThread::~CWinThread() closes the original handle.