Browse Source

s/core/cpu/g

Nathalie Furmento 15 years ago
parent
commit
a470e853c0
3 changed files with 5 additions and 5 deletions
  1. 1 1
      src/drivers/core/Makefile
  2. 1 1
      src/drivers/core/driver_core.c
  3. 3 3
      src/drivers/core/driver_core.h

+ 1 - 1
src/drivers/core/Makefile

@@ -16,7 +16,7 @@
 
 CFLAGS += -I../../
 
-OBJS := driver_core.o
+OBJS := driver_cpu.o
 
 all: $(OBJS)
 

+ 1 - 1
src/drivers/core/driver_core.c

@@ -17,7 +17,7 @@
 #include <math.h>
 
 #include <core/debug.h>
-#include "driver_core.h"
+#include "driver_cpu.h"
 #include <core/policies/sched_policy.h>
 
 static int execute_job_on_cpu(job_t j, struct worker_s *cpu_args)

+ 3 - 3
src/drivers/core/driver_core.h

@@ -14,8 +14,8 @@
  * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  */
 
-#ifndef __DRIVER_CORE_H__
-#define __DRIVER_CORE_H__
+#ifndef __DRIVER_CPU_H__
+#define __DRIVER_CPU_H__
 
 /* to bind threads onto a given cpu */
 #ifndef _GNU_SOURCE
@@ -38,4 +38,4 @@ void *_starpu_cpu_worker(void *);
 #define NMAXCPUS       4
 #endif
 
-#endif //  __DRIVER_CORE_H__
+#endif //  __DRIVER_CPU_H__