forked from servalproject/batman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.c
102 lines (53 loc) · 1.92 KB
/
profile.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* Copyright (C) 2006-2009 B.A.T.M.A.N. contributors:
*
* Simon Wunderlich, Marek Lindner
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA
*
*/
#include "os.h"
#include "batman.h"
#if defined PROFILE_DATA
static struct prof_container prof_container[PROF_COUNT];
void prof_init(int32_t index, char *name) {
prof_container[index].total_time = 0;
prof_container[index].calls = 0;
prof_container[index].name = name;
}
void prof_start(int32_t index) {
prof_container[index].start_time = clock();
}
void prof_stop(int32_t index) {
prof_container[index].calls++;
prof_container[index].total_time += clock() - prof_container[index].start_time;
}
void prof_print(void) {
int32_t index;
debug_output( 5, " \nProfile data:\n" );
for ( index = 0; index < PROF_COUNT; index++ ) {
debug_output( 5, " %''30s: cpu time = %10.3f, calls = %''10i, avg time per call = %4.10f \n", prof_container[index].name, (float)prof_container[index].total_time/CLOCKS_PER_SEC, prof_container[index].calls, ( prof_container[index].calls == 0 ? 0.0 : ( ( (float)prof_container[index].total_time/CLOCKS_PER_SEC ) / (float)prof_container[index].calls ) ) );
}
}
#else
void prof_init( int32_t index, char *name ) {
}
void prof_start( int32_t index ) {
}
void prof_stop( int32_t index ) {
}
void prof_print(void) {
}
#endif