diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-02-18 21:52:01 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-02-18 21:52:01 +0000 |
commit | 078f729d9d273a8d50422b99aeed4f91f0300d4e (patch) | |
tree | f21b689696a5c402e6342427d6bb145bce8249fb /cpp/test/IceUtil/ctrlCHandler/Client.cpp | |
parent | exception handling fix (diff) | |
download | ice-078f729d9d273a8d50422b99aeed4f91f0300d4e.tar.bz2 ice-078f729d9d273a8d50422b99aeed4f91f0300d4e.tar.xz ice-078f729d9d273a8d50422b99aeed4f91f0300d4e.zip |
Changed times
Diffstat (limited to 'cpp/test/IceUtil/ctrlCHandler/Client.cpp')
-rw-r--r-- | cpp/test/IceUtil/ctrlCHandler/Client.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/IceUtil/ctrlCHandler/Client.cpp b/cpp/test/IceUtil/ctrlCHandler/Client.cpp index 2aa56d61081..c97eed3302c 100644 --- a/cpp/test/IceUtil/ctrlCHandler/Client.cpp +++ b/cpp/test/IceUtil/ctrlCHandler/Client.cpp @@ -23,16 +23,16 @@ void callback(int signal) int main() { { - cout << "First ignore CTRL+C and the like for 20 seconds (try it!)" << endl; + cout << "First ignore CTRL+C and the like for 10 seconds (try it!)" << endl; CtrlCHandler handler; - ThreadControl::sleep(Time::seconds(20)); + ThreadControl::sleep(Time::seconds(10)); - cout << "Then handling them for another 20 seconds (try it)" << endl; + cout << "Then handling them for another 30 seconds (try it)" << endl; handler.setCallback(callback); - ThreadControl::sleep(Time::seconds(20)); + ThreadControl::sleep(Time::seconds(10)); } - cout << "And another 20 seconds after ~CtrlCHandler" << endl; - ThreadControl::sleep(Time::seconds(20)); + cout << "And another 10 seconds after ~CtrlCHandler" << endl; + ThreadControl::sleep(Time::seconds(10)); cout << "ok" << endl; return EXIT_SUCCESS; |