apply FSL(Flora Software License)
[apps/core/preloaded/taskmanager.git] / src / _util_log.h
1  /*
2   * Copyright 2012  Samsung Electronics Co., Ltd
3   *
4   * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
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
18 #ifndef __TASKMANAGER_UTIL_LOG_H__
19 #define __TASKMANAGER_UTIL_LOG_H__
20
21 #include <unistd.h>
22 #include <dlog.h>
23
24 #undef LOG_TAG
25 #define LOG_TAG "TASKMANAGER"
26 #define _E(fmt, arg...) LOGE("[%s,%d] "fmt,__FUNCTION__,__LINE__,##arg)
27 #define _D(fmt, arg...) LOGD("[%s,%d] "fmt,__FUNCTION__,__LINE__,##arg)
28
29 #define retvm_if(expr, val, fmt, arg...) do { \
30         if(expr) { \
31                 _E(fmt, ##arg); \
32                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
33                 return (val); \
34         } \
35 } while (0)
36
37 #define retv_if(expr, val) do { \
38         if(expr) { \
39                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
40                 return (val); \
41         } \
42 } while (0)
43
44 #define retm_if(expr, fmt, arg...) do { \
45         if(expr) { \
46                 _E(fmt, ##arg); \
47                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
48                 return; \
49         } \
50 } while (0)
51
52 #define ret_if(expr) do { \
53         if(expr) { \
54                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
55                 return; \
56         } \
57 } while (0)
58
59 #endif
60 /* __TASKMANAGER_UTIL_LOG_H__ */