From d663f702c0e4fa562783504a483dce8f362d628e Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Tue, 12 Sep 2017 00:29:28 +0200 Subject: Progression on config parsing. Change-Id: Idd8d8987ccabef381f6d79c1d508930a2d4bae3c Signed-off-by: Romain Forlot --- controller/ctl-timer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'controller/ctl-timer.c') diff --git a/controller/ctl-timer.c b/controller/ctl-timer.c index 1de6f99..2d99472 100644 --- a/controller/ctl-timer.c +++ b/controller/ctl-timer.c @@ -61,14 +61,14 @@ OnErrorExit: return -1; } -PUBLIC void TimerEvtStop(TimerHandleT *timerHandle) { +void TimerEvtStop(TimerHandleT *timerHandle) { sd_event_source_unref(timerHandle->evtSource); free (timerHandle); } -PUBLIC void TimerEvtStart(TimerHandleT *timerHandle, timerCallbackT callback, void *context) { +void TimerEvtStart(TimerHandleT *timerHandle, timerCallbackT callback, void *context) { uint64_t usec; // populate CB handle @@ -80,13 +80,13 @@ PUBLIC void TimerEvtStart(TimerHandleT *timerHandle, timerCallbackT callback, vo sd_event_add_time(afb_daemon_get_event_loop(), &timerHandle->evtSource, CLOCK_MONOTONIC, usec+timerHandle->delay*1000, 250, TimerNext, timerHandle); } -PUBLIC afb_event TimerEvtGet(void) { +afb_event TimerEvtGet(void) { return afbevt; } // Create Binding Event at Init -PUBLIC int TimerEvtInit () { +int TimerEvtInit () { // create binder event to send test pause/resume afbevt = afb_daemon_make_event("control"); -- cgit 1.2.3-korg