diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-17 05:12:02 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-17 05:12:02 +0000 |
commit | 4bc3aff4b232f037730983d1b8cd048f5e43f557 (patch) | |
tree | b69853304046572b4b3f33154dae6dd8d642618c /tests/Future_Test.cpp | |
parent | 798725611c3041ee7809e6b28a1b6cb2bc1ae3f0 (diff) | |
download | ATCD-4bc3aff4b232f037730983d1b8cd048f5e43f557.tar.gz |
*** empty log message ***
Diffstat (limited to 'tests/Future_Test.cpp')
-rw-r--r-- | tests/Future_Test.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/Future_Test.cpp b/tests/Future_Test.cpp index 42794d8d99d..c3e95b9cbcf 100644 --- a/tests/Future_Test.cpp +++ b/tests/Future_Test.cpp @@ -398,10 +398,10 @@ main (int, char *[]) ACE_DEBUG ((LM_DEBUG, "(%t) task_count %d future_count %d capsule_count %d methodobject_count %d\n", - (int) task_count, - (int) future_count, - (int) capsule_count, - (int) methodobject_count)); + task_count.value (), + future_count.value (), + capsule_count.value (), + methodobject_count.value ())); } // Close things down. @@ -414,11 +414,11 @@ main (int, char *[]) ACE_DEBUG ((LM_DEBUG, "(%t) task_count %d future_count %d capsule_count %d methodobject_count %d\n", - (int) task_count, - (int) future_count, - (int) capsule_count, - (int) methodobject_count)); - + task_count.value (), + future_count.value (), + capsule_count.value (), + methodobject_count.value ())); + { // Check if set then get works, older versions of ACE_Future // will lock forever (or until the timer expires), will use a small |