Fix:Android:Corrected and added keycodes
[navit-package] / navit / profile.c
index 677af4b..7c733f1 100644 (file)
@@ -1,3 +1,22 @@
+/**
+ * Navit, a modular navigation system.
+ * Copyright (C) 2005-2008 Navit Team
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 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 <stdarg.h>
 #include <stdio.h>
 #include <string.h>
@@ -10,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];
@@ -18,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 > 9)
+               level=9;
        if (fmt) {
                gettimeofday(&curr, NULL);
                msec=(curr.tv_usec-last[level].tv_usec)/1000+
@@ -36,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);
 }