Adjust coding rule and remove compile warning messages
[platform/core/appfw/librua.git] / include / perf-measure.h
1 /*
2  * Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __PERF_MEASURE_H__
18 #define __PERF_MEASURE_H__
19
20 #include <time.h>
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 #ifdef PERF_MEASURE_ENABLE
27
28 unsigned int _perf_measure_start(const char *tag, char *func_name, int line);
29 unsigned int _perf_measure_end(const char *tag, unsigned int ts_start,
30                         char *func_name, int line);
31
32 #define PERF_MEASURE_START(tag) _perf_measure_start(tag, __func__,__LINE__)
33 #define PERF_MEASURE_END(tag, ts_start) \
34         _perf_measure_end(tag, ts_start,__func__, __LINE__)
35
36 #else
37
38 #define PERF_MEASURE_START(tag) (0)
39 #define PERF_MEASURE_END(tag, ts_start) (0)
40
41 #endif
42
43 #ifdef __cplusplus
44 }
45 #endif
46 #endif /* __PERF_MEASURE_H__ */