diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2003-12-15 15:34:27 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2003-12-15 15:34:27 +0000 |
commit | 177c89f371e5e39bde9276b54408ea7fab960539 (patch) | |
tree | ae3fad714fc7289a050fbf581026a4bf40eddb5a /ace/Thread_Semaphore.cpp | |
parent | 1f630869f4f661cdc758995ef0647ad777f420f6 (diff) | |
download | ATCD-177c89f371e5e39bde9276b54408ea7fab960539.tar.gz |
ChangeLogTag:Mon Dec 15 10:06:17 2003 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/Thread_Semaphore.cpp')
-rw-r--r-- | ace/Thread_Semaphore.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ace/Thread_Semaphore.cpp b/ace/Thread_Semaphore.cpp index f5efb30d27a..22b25cc2920 100644 --- a/ace/Thread_Semaphore.cpp +++ b/ace/Thread_Semaphore.cpp @@ -38,4 +38,12 @@ ACE_Thread_Semaphore::ACE_Thread_Semaphore (u_int count, { // ACE_TRACE ("ACE_Thread_Semaphore::ACE_Thread_Semaphore"); } + +ACE_Thread_Semaphore::ACE_Thread_Semaphore (const ACE_TCHAR *name, + void *arg, + int max) + : ACE_Semaphore (1, USYNC_THREAD, name, arg, max) +{ +// ACE_TRACE ("ACE_Thread_Semaphore::ACE_Thread_Semaphore"); +} #endif /* ACE_HAS_THREADS */ |