summaryrefslogtreecommitdiff
path: root/common/include/statistics.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/include/statistics.h')
-rwxr-xr-xcommon/include/statistics.h79
1 files changed, 24 insertions, 55 deletions
diff --git a/common/include/statistics.h b/common/include/statistics.h
index 3ef8df9..fa455de 100755
--- a/common/include/statistics.h
+++ b/common/include/statistics.h
@@ -1,71 +1,40 @@
-/*
- * Copyright 2012 Samsung Electronics Co., Ltd
- *
- * Licensed under the Flora License, Version 1.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.tizenopensource.org/license
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-
-#ifndef __ELM_MYPHOTOCAM_STATISTICS_H__
-#define __ELM_MYPHOTOCAM_STATISTICS_H__
+/*
+ * Copyright 2012 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Flora License, Version 1.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.tizenopensource.org/license
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __STATISTICS_H__
+#define __STATISTICS_H__
#include <stdbool.h>
#include <stdio.h>
-#define PERF_TIME
-
-#define LVL1 " "
-#define LVL2 " "
-#define LVL3 " "
-#define LVL4 " "
-#define LVL5 " "
-#define LVL6 " "
-
-
#ifdef __cplusplus
extern "C" {
#endif
-int mm_ta_accum_item_begin(const char* name, bool show, const char* filename, int line);
-int mm_ta_accum_item_end(const char* name, bool show, const char* filename, int line);
-void mm_ta_accum_show_result_fp(FILE *fp);
-
-int PERF_INIT();
-int PERF_DEINIT();
-
-#ifdef PERF_TIME
-
-// accum item handling
-#define PERF_CHECK_BEGIN(name) mm_ta_accum_item_begin(name,false,__FILE__,__LINE__)
-#define PERF_CHECK_END(name) mm_ta_accum_item_end(name,false,__FILE__,__LINE__)
-
-// Print out
-#define PERF_SHOW_RESULT(fp) mm_ta_accum_show_result_fp(fp)
-
-#else
-
-#define PERF_CHECK_BEGIN(name)
-#define PERF_CHECK_END(name)
-
-// Print out
-#define PERF_SHOW_RESULT(fp)
-
+int iv_ta_accum_item_begin(int lvl, const char* name, bool show, const char* filename, int line);
+int iv_ta_accum_item_end(int lvl, const char* name, bool show, const char* filename, int line);
+void iv_ta_accum_show_result_fp(FILE *fp);
-#endif // PERF_TIME
+int IV_PERF_INIT();
+int IV_PERF_DEINIT();
#ifdef __cplusplus
}
#endif
-#endif /* __ELM_MYPHOTOCAM_STATISTICS_H__ */
+#endif /* __STATISTICS_H__ */