From bacac99192b65faed1a0047a8be5b95abf15873d Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Sat, 17 Nov 2001 14:26:36 +0000 Subject: Add 'xine_' prefix to all of xine-utils functions (what about cpu acceleration?). Merge xine-utils header files to a new one "xineutils.h". Update xine-lib C/headers to reflect those changes. dxr3 headers are no more installed ine $includdir, but $includdir/xine. CVS patchset: 1054 CVS date: 2001/11/17 14:26:36 --- src/xine-utils/monitor.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/xine-utils/monitor.c') diff --git a/src/xine-utils/monitor.c b/src/xine-utils/monitor.c index 9250ee2c4..f780baa77 100644 --- a/src/xine-utils/monitor.c +++ b/src/xine-utils/monitor.c @@ -17,7 +17,7 @@ * 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.1 2001/10/22 00:52:10 guenter Exp $ + * $Id: monitor.c,v 1.2 2001/11/17 14:26:39 f1rmb Exp $ * * debug print and profiling functions - implementation * @@ -29,8 +29,7 @@ #include #include -#include "utils.h" -#include "monitor.h" +#include "xineutils.h" #define MAX_ID 10 @@ -41,7 +40,7 @@ long long int profiler_start[MAX_ID] ; long profiler_calls[MAX_ID] ; char * profiler_label[MAX_ID] ; -void profiler_init () { +void xine_profiler_init () { int i; for (i=0; i= MAX_ID) return; @@ -83,7 +82,7 @@ void profiler_start_count (int id) { #endif } -void profiler_stop_count (int id) { +void xine_profiler_stop_count (int id) { if ((unsigned)id >= MAX_ID) return; @@ -93,7 +92,7 @@ void profiler_stop_count (int id) { profiler_calls[id]++; } -void profiler_print_results () { +void xine_profiler_print_results () { int i; #ifdef ARCH_X86 -- cgit v1.2.3