diff options
author | Jordan Augé <jordan.auge+fdio@cisco.com> | 2019-10-31 17:02:17 +0100 |
---|---|---|
committer | Jordan Augé <jordan.auge+fdio@cisco.com> | 2019-10-31 17:12:00 +0100 |
commit | 29bb779084d76fb31e1b5dfbf54995918d02fc0e (patch) | |
tree | 3196a6755573609a3e6125d8792da8bb4e8de8c4 /ctrl/facemgr/examples/updownsrv | |
parent | 5268f318730bd8f3ffaf62e5d6bfae64eb17cb90 (diff) |
[HICN-372] Code clean up
Change-Id: Ic0ce2d01a05c2724eeaf91f76aafa2facedcbaf3
Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com>
Diffstat (limited to 'ctrl/facemgr/examples/updownsrv')
-rw-r--r-- | ctrl/facemgr/examples/updownsrv/updownsrv.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ctrl/facemgr/examples/updownsrv/updownsrv.c b/ctrl/facemgr/examples/updownsrv/updownsrv.c index 5d624583b..3aba3cfd0 100644 --- a/ctrl/facemgr/examples/updownsrv/updownsrv.c +++ b/ctrl/facemgr/examples/updownsrv/updownsrv.c @@ -27,7 +27,8 @@ /** * \brief Default interval (in seconds) between timer events */ -#define DEFAULT_INTERVAL 100000 +#define DEFAULT_INTERVAL_SEC 5 +#define DEFAULT_INTERVAL_NSEC 0 /** * \brief Maximum allowed number of connected clients @@ -136,12 +137,12 @@ int main() { struct itimerspec ts = { .it_interval = { - .tv_sec = DEFAULT_INTERVAL, - .tv_nsec = 0, + .tv_sec = DEFAULT_INTERVAL_SEC, + .tv_nsec = DEFAULT_INTERVAL_NSEC, }, .it_value = { - .tv_sec = DEFAULT_INTERVAL, - .tv_nsec = 0, + .tv_sec = DEFAULT_INTERVAL_SEC, + .tv_nsec = DEFAULT_INTERVAL_NSEC, } }; rc = timerfd_settime(tfd, 0, &ts, NULL); |