tizen 2.3.1 release
[kernel/api/system-resource.git] / include / powertop-dapi.h
1 /*
2  * Library for getting power usage statistics
3  *
4  * Copyright (c) 2000 - 2012 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
20 #ifndef __POWERTOP_DAPI_H__
21 #define __POWERTOP_DAPI_H__
22
23 #ifndef UNUSED
24 #define UNUSED __attribute__((unused))
25 #endif /* UNUSED */
26
27 #ifndef DEPRECATED
28 #define DEPRECATED __attribute__((deprecated))
29 #endif
30
31 #ifndef __cplusplus
32 #include <stdbool.h>
33 #endif
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39
40 void powertop_set_check_interval(unsigned int interval) DEPRECATED;
41 bool powertop_start_check(const char *output_path) DEPRECATED;
42 void powertop_stop_check(void) DEPRECATED;
43 void powertop_async_stop_check(void (*callback)(void *), void *arg) DEPRECATED;
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif /* __POWERTOP_DAPI_H__ */