sensord: change variable name of attribute-related functions
[platform/core/system/sensord.git] / src / test / src / check-sensor.h
1 /*
2  * sensord
3  *
4  * Copyright (c) 2014-15 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19 #ifndef CHECK_SENSOR_H
20 #define CHECK_SENSOR_H
21
22 #include <sensor_types.h>
23
24 #define DEFAULT_EVENT_INTERVAL 100
25
26 int get_event(sensor_type_t sensor_type, char str[]);
27 void callback(sensor_t sensor, unsigned int event_type, sensor_data_t *data, void *user_data);
28 void *check_sensor(void *arg);
29 void printpollinglogs(sensor_type_t type, sensor_data_t data);
30 int polling_sensor(sensor_type_t sensor_type, unsigned int event);
31
32 struct pthread_arguments
33 {
34         sensor_type_t sensor_type;
35         unsigned int event;
36         int interval;
37 };
38 #endif