summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2013-04-03 13:41:57 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2013-04-03 13:41:57 +0000
commit57e326921e7d075ed8f81bdbe0bccc7c1c96650e (patch)
tree1eb839bd5b20917473ff8b328c18702e47f915ad
parentf07167d6cd93c4ef5013e105ff0099854d190d56 (diff)
downloadATCD-57e326921e7d075ed8f81bdbe0bccc7c1c96650e.tar.gz
ChangeLogTag: Wed Apr 3 13:41:19 UTC 2013 Adam Mitz <mitza@ociweb.com>
-rw-r--r--ACE/ChangeLog6
-rw-r--r--ACE/tests/Manual_Event_Test.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 34694180698..5521269cbbb 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,9 @@
+Wed Apr 3 13:41:19 UTC 2013 Adam Mitz <mitza@ociweb.com>
+
+ * tests/Manual_Event_Test.cpp:
+
+ Corrected time value to actually be 200 msec as noted in the comment.
+
Wed Apr 3 08:13:00 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/auto_run_tests.pl:
diff --git a/ACE/tests/Manual_Event_Test.cpp b/ACE/tests/Manual_Event_Test.cpp
index 3344ff9feb2..1539d058d60 100644
--- a/ACE/tests/Manual_Event_Test.cpp
+++ b/ACE/tests/Manual_Event_Test.cpp
@@ -133,7 +133,7 @@ worker (void *)
if (evt.signal () == -1)
ACE_ERROR ((LM_ERROR, ACE_TEXT (" (%P|%t) %p\n"), ACE_TEXT ("signal")));
- ACE_OS::sleep (ACE_Time_Value (0, 200 * 1000 * 100)); // 200 msec
+ ACE_OS::sleep (ACE_Time_Value (0, 200 * 1000)); // 200 msec
}
if (evt.wait () == -1)