2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>

* cpu.c, cpu_asm.S: Add include of config.h
This commit is contained in:
Joel Sherrill
2010-03-27 15:03:09 +00:00
parent f086af89dd
commit febaa8a411
15 changed files with 61 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, cpu_asm.S: Add include of config.h
2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org> 2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/avr.h: Add avr6. * rtems/score/avr.h: Add avr6.

View File

@@ -12,6 +12,10 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/system.h> #include <rtems/system.h>
#include <rtems/score/isr.h> #include <rtems/score/isr.h>
#include <rtems/score/wkspace.h> #include <rtems/score/wkspace.h>

View File

@@ -21,6 +21,11 @@
* and cpu.h should not be included in a "real" cpu_asm file. An * and cpu.h should not be included in a "real" cpu_asm file. An
* implementation in assembly should include "cpu_asm.h> * implementation in assembly should include "cpu_asm.h>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <avr/io.h> #include <avr/io.h>
#include <avr/sfr_defs.h> #include <avr/sfr_defs.h>
#include <rtems/asm.h> #include <rtems/asm.h>

View File

@@ -1,3 +1,7 @@
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, cpu_asm.S: Add include of config.h
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com> 2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1385/cpukit PR 1385/cpukit

View File

@@ -11,6 +11,10 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/system.h> #include <rtems/system.h>
#include <rtems/score/isr.h> #include <rtems/score/isr.h>
#include <rtems/score/wkspace.h> #include <rtems/score/wkspace.h>

View File

@@ -14,6 +14,10 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
;.equ RUNCONTEXT_ARG, er0 ;.equ RUNCONTEXT_ARG, er0
;.equ HEIRCONTEXT_ARG, er1 ;.equ HEIRCONTEXT_ARG, er1

View File

@@ -1,3 +1,7 @@
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, cpu_asm.S: Add include of config.h
2009-09-27 Joel Sherrill <joel.sherrill@oarcorp.com> 2009-09-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: Define CPU_STRUCTURE_ALIGNMENT to be on a 4 byte * rtems/score/cpu.h: Define CPU_STRUCTURE_ALIGNMENT to be on a 4 byte

View File

@@ -11,6 +11,10 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/system.h> #include <rtems/system.h>
#include <rtems/score/isr.h> #include <rtems/score/isr.h>

View File

@@ -14,6 +14,10 @@
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/asm.h> #include <rtems/asm.h>
/* void _CPU_Context_switch( run_context, heir_context ) /* void _CPU_Context_switch( run_context, heir_context )

View File

@@ -1,3 +1,7 @@
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, cpu_asm.S: Add include of config.h
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com> 2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1385/cpukit PR 1385/cpukit

View File

@@ -42,13 +42,14 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/system.h> #include <rtems/system.h>
#include <rtems/score/isr.h> #include <rtems/score/isr.h>
#include <rtems/score/wkspace.h> #include <rtems/score/wkspace.h>
/* /*
** Exception stack frame pointer used in cpu_asm to pass the exception stack frame ** Exception stack frame pointer used in cpu_asm to pass the exception stack frame
** address to the context switch code. ** address to the context switch code.

View File

@@ -50,6 +50,10 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/asm.h> #include <rtems/asm.h>
#include <rtems/mips/iregdef.h> #include <rtems/mips/iregdef.h>
#include <rtems/mips/idtcpu.h> #include <rtems/mips/idtcpu.h>

View File

@@ -1,3 +1,7 @@
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, cpu_asm.S: Add include of config.h
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com> 2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1385/cpukit PR 1385/cpukit

View File

@@ -11,6 +11,10 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/system.h> #include <rtems/system.h>
#include <rtems/score/isr.h> #include <rtems/score/isr.h>
#include <rtems/rtems/cache.h> #include <rtems/rtems/cache.h>

View File

@@ -21,6 +21,10 @@
* $Id$ * $Id$
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/asm.h> #include <rtems/asm.h>
#if (SPARC_HAS_FPU == 1) #if (SPARC_HAS_FPU == 1)