diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2012-08-28 08:51:55 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2012-08-28 08:51:55 (GMT) |
commit | 541c8c407b7ba8dd10f85bb48bcb5900270b3f84 (patch) | |
tree | 71a6abc0f2a43bcfd33f80b3b30b878f234cbf05 /src/tests/testDemandAttention.cc | |
parent | 60a53113e05db443af4d520883ec3145680642a8 (diff) | |
download | fluxbox-541c8c407b7ba8dd10f85bb48bcb5900270b3f84.zip fluxbox-541c8c407b7ba8dd10f85bb48bcb5900270b3f84.tar.bz2 |
changed timing functions to use a monotonic increasing clock
gettimeofday() is subject to be changed on daylight-saving or to ntp-related
(think leap-seconds). even worse, it is subject to be changed BACK in time. this
is hard to fix correctly (see commit 45726d3016e and bug #3560509). it is
irrelevant for timers to know the nano-seconds since the epoch anyways.
Diffstat (limited to 'src/tests/testDemandAttention.cc')
-rw-r--r-- | src/tests/testDemandAttention.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tests/testDemandAttention.cc b/src/tests/testDemandAttention.cc index 10fadb3..914f369 100644 --- a/src/tests/testDemandAttention.cc +++ b/src/tests/testDemandAttention.cc | |||
@@ -61,10 +61,7 @@ public: | |||
61 | FbTk::RefCount<FbTk::Command<void> > cmd(new FbTk::SimpleCommand<App> | 61 | FbTk::RefCount<FbTk::Command<void> > cmd(new FbTk::SimpleCommand<App> |
62 | (*this, | 62 | (*this, |
63 | &App::demandAttention)); | 63 | &App::demandAttention)); |
64 | timeval t; | 64 | m_timer.setTimeout(5 * FbTk::FbTime::IN_SECONDS); |
65 | t.tv_sec = 5; | ||
66 | t.tv_usec = 0; | ||
67 | m_timer.setTimeout(t); | ||
68 | m_timer.setCommand(cmd); | 65 | m_timer.setCommand(cmd); |
69 | m_timer.fireOnce(false); | 66 | m_timer.fireOnce(false); |
70 | m_timer.start(); | 67 | m_timer.start(); |