Browse Source

src: fix function name to follow naming policy

Nathalie Furmento 10 years ago
parent
commit
0a219cce83
2 changed files with 3 additions and 3 deletions
  1. 2 2
      src/common/fxt.c
  2. 1 1
      src/core/workers.c

+ 2 - 2
src/common/fxt.c

@@ -1,7 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
  * Copyright (C) 2009-2015  Université de Bordeaux
- * Copyright (C) 2010, 2011, 2012, 2013, 2014  CNRS
+ * Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015  CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -121,7 +121,7 @@ void starpu_fxt_stop_profiling()
 	fut_keychange(FUT_DISABLE, FUT_KEYMASKALL, threadid);
 }
 
-void _starpu_init_fxt_profiling(unsigned trace_buffer_size)
+void _starpu_fxt_init_profiling(unsigned trace_buffer_size)
 {
 	unsigned threadid;
 

+ 1 - 1
src/core/workers.c

@@ -1196,7 +1196,7 @@ int starpu_initialize(struct starpu_conf *user_conf, int *argc, char ***argv)
 	_starpu_init_tags();
 
 #ifdef STARPU_USE_FXT
-	_starpu_init_fxt_profiling(config.conf->trace_buffer_size);
+	_starpu_fxt_init_profiling(config.conf->trace_buffer_size);
 #endif
 
 	_starpu_open_debug_logfile();