From: kibak.yoon Date: Thu, 24 Mar 2016 04:10:21 +0000 (+0900) Subject: sensord: change the default return value to true X-Git-Tag: accepted/tizen/common/20160406.143452~1^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79420e8906489408b32d26010d3b46fc7ab727d4;p=platform%2Fcore%2Fsystem%2Fsensord.git sensord: change the default return value to true Change-Id: Ie943cef2f4375a0cdb2f5909c671218a620b98db Signed-off-by: kibak.yoon --- diff --git a/src/server/sensor_base.cpp b/src/server/sensor_base.cpp index f339533..0936815 100644 --- a/src/server/sensor_base.cpp +++ b/src/server/sensor_base.cpp @@ -87,7 +87,7 @@ int sensor_base::get_data(sensor_data_t **data, int *length) bool sensor_base::flush(void) { - return false; + return true; } int sensor_base::set_attribute(int32_t cmd, int32_t value) @@ -289,22 +289,22 @@ bool sensor_base::push(sensor_event_t *event) bool sensor_base::set_interval(unsigned long interval) { - return false; + return true; } bool sensor_base::set_batch_latency(unsigned long latency) { - return false; + return true; } bool sensor_base::on_start() { - return false; + return true; } bool sensor_base::on_stop() { - return false; + return true; } unsigned long long sensor_base::get_timestamp(void)