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
|
/*
* Copyright (C) 2000-2001 the xine project
*
* This file is part of xine, a unix video player.
*
* xine is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* xine 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
* $Id: monitor.c,v 1.2 2001/08/14 11:57:40 guenter Exp $
*
* debug print and profiling functions - implementation
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "monitor.h"
#include <stdio.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <unistd.h>
#define MAX_ID 5
#ifdef DEBUG
long long int profiler_times[MAX_ID+1] ;
long long int profiler_start[MAX_ID+1] ;
char * profiler_label[MAX_ID+1] ;
void profiler_init () {
int i;
for (i=0; i<MAX_ID; i++) {
profiler_times[i] = 0;
profiler_start[i] = 0;
profiler_label[i] = "??";
}
}
void profiler_set_label (int id, char *label) {
profiler_label[id] = label;
}
void profiler_start_count (int id) {
struct rusage usage ;
getrusage (RUSAGE_SELF, &usage);
profiler_start[id] = (long long int) usage.ru_utime.tv_sec * 1e6 + usage.ru_utime.tv_usec + (long long int) usage.ru_stime.tv_sec * 1e6 + usage.ru_stime.tv_usec;
}
void profiler_stop_count (int id) {
struct rusage usage ;
getrusage (RUSAGE_SELF, &usage);
profiler_times[id] += (long long int) usage.ru_utime.tv_sec * 1e6 + usage.ru_utime.tv_usec + (long long int) usage.ru_stime.tv_sec * 1e6 + usage.ru_stime.tv_usec - profiler_start[id];
}
void profiler_print_results () {
int i;
printf ("\n\nPerformance analysis (usec):\n\n");
for (i=0; i<MAX_ID; i++) {
printf ("%d:\t%s\t%12lld\n", i, profiler_label[i], profiler_times[i]);
}
}
#endif
|