summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-01-31 02:59:36 +0000
committerfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-01-31 02:59:36 +0000
commit918e805aac6e09e47bbb3716599eda603e52e42a (patch)
tree02426f0700255bfd6d33835246d91c3a81ded6c3 /examples
parent34a5b190313aa64d5b872b47b0a0d09bc11cff9f (diff)
downloadATCD-918e805aac6e09e47bbb3716599eda603e52e42a.tar.gz
ChangeLogTag: Thu Jan 30 21:57:58 2003 Frank Hunleth <frank@hunleth.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/Threads/thread_specific.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Threads/thread_specific.cpp b/examples/Threads/thread_specific.cpp
index 542f4fa25cf..13df67404c4 100644
--- a/examples/Threads/thread_specific.cpp
+++ b/examples/Threads/thread_specific.cpp
@@ -120,7 +120,7 @@ worker (void *c)
// Use the guard to serialize access to printf...
ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, printf_lock, 0);
-#if defined(linux)
+#if defined(linux) || defined(__OpenBSD__)
// @@ Normally the platform specific way to print a thread ID
// is encapsulated in Log_Msg.cpp, but for this small example
// we cannot (or do not want to) use ACE_Log_Msg.