diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-10 18:20:18 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-10 18:20:18 +0000 |
commit | 57ae5b33a2337161888485179cb4d3745449da90 (patch) | |
tree | fe22c5b96050feca862501b259544541cb954e14 /tests | |
parent | b86ff8513fc635220407d5c34a21a2681c6de021 (diff) | |
download | ATCD-57ae5b33a2337161888485179cb4d3745449da90.tar.gz |
convert max_wait to msec
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Thread_Manager_Test.cpp | 2 | ||||
-rw-r--r-- | tests/Upgradable_RW_Test.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/Thread_Manager_Test.cpp b/tests/Thread_Manager_Test.cpp index 39ff6415879..b360ab04fbc 100644 --- a/tests/Thread_Manager_Test.cpp +++ b/tests/Thread_Manager_Test.cpp @@ -256,7 +256,7 @@ main (int, ASYS_TCHAR *[]) if (errno == ETIME) ACE_ERROR ((LM_ERROR, ASYS_TEXT ("maximum wait time of %d msec exceeded\n"), - max_wait)); + max_wait.msec ())); else ACE_OS::perror ("wait"); diff --git a/tests/Upgradable_RW_Test.cpp b/tests/Upgradable_RW_Test.cpp index be2df139094..e9b194241eb 100644 --- a/tests/Upgradable_RW_Test.cpp +++ b/tests/Upgradable_RW_Test.cpp @@ -435,7 +435,7 @@ main (int argc, ASYS_TCHAR *argv[]) if (errno == ETIME) ACE_ERROR ((LM_ERROR, ASYS_TEXT ("maximum wait time of %d msec exceeded\n"), - max_wait)); + max_wait.msec ())); else ACE_OS::perror ("wait"); |