summaryrefslogtreecommitdiff
path: root/navit/profile.c
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2009-01-06 18:54:31 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2009-01-06 18:54:31 +0000
commit90085fd881bb9f7e7ec94c3c0754f47a837e83a2 (patch)
tree8f951027fe958224f2af077b2feb8515474f7966 /navit/profile.c
parent71453a9607333a6d3fe73b1dd1063afd1e9d8b36 (diff)
downloadnavit-svn-90085fd881bb9f7e7ec94c3c0754f47a837e83a2.tar.gz
Fix:Core:Made more profiling levels possible
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@1912 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/profile.c')
-rw-r--r--navit/profile.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/navit/profile.c b/navit/profile.c
index bbe25973..addea61b 100644
--- a/navit/profile.c
+++ b/navit/profile.c
@@ -29,7 +29,7 @@ void
profile_timer(int level, const char *module, const char *function, const char *fmt, ...)
{
va_list ap;
- static struct timeval last[3];
+ static struct timeval last[10];
struct timeval curr;
int msec,usec;
char buffer[strlen(module)+20];
@@ -37,8 +37,8 @@ profile_timer(int level, const char *module, const char *function, const char *f
va_start(ap, fmt);
if (level < 0)
level=0;
- if (level > 2)
- level=2;
+ if (level > 10)
+ level=10;
if (fmt) {
gettimeofday(&curr, NULL);
msec=(curr.tv_usec-last[level].tv_usec)/1000+
@@ -55,8 +55,8 @@ profile_timer(int level, const char *module, const char *function, const char *f
gettimeofday(&last[level], NULL);
} else {
gettimeofday(&curr, NULL);
- for (level = 0 ; level < 3 ; level++)
- last[level]=curr;
+ while (level < 10)
+ last[level++]=curr;
}
va_end(ap);
}