diff options
author | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-05 19:01:42 +0000 |
---|---|---|
committer | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-05 19:01:42 +0000 |
commit | 2bb42ff5299b34fcbe60e0ba524e3ce24d8f817b (patch) | |
tree | b43ed1815b573f60cda09810d60f5a899e6874d6 /tests | |
parent | 5b0e7ff64ca6adba6991dc8cf9887d57c02da679 (diff) | |
download | ATCD-2bb42ff5299b34fcbe60e0ba524e3ce24d8f817b.tar.gz |
Mon Feb 5 13:00:17 2001 Krishnakumar B <kitty@cs.wustl.edu>
* tests/Thread_Mutex_Test.cpp: (reported_notsup)
Removed a warning about defined but not used.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Thread_Mutex_Test.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Thread_Mutex_Test.cpp b/tests/Thread_Mutex_Test.cpp index 692063f5e87..621cd5bdd3a 100644 --- a/tests/Thread_Mutex_Test.cpp +++ b/tests/Thread_Mutex_Test.cpp @@ -25,8 +25,12 @@ ACE_RCSID(tests, Thread_Mutex_Test, "$Id$") #if defined (ACE_HAS_THREADS) +#if !defined (ACE_HAS_MUTEX_TIMEOUTS) + static int reported_notsup = 0; +#endif + static void * test (void *args) |