Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/arm32.c

    r82474ef ra71c158  
    4848#include <macros.h>
    4949#include <string.h>
    50 #include <arch/ras.h>
    5150
    5251#ifdef MACHINE_testarm
     
    8988        exception_init();
    9089        interrupt_init();
    91 
    92         /* Initialize Restartable Atomic Sequences support. */
    93         ras_init();
    9490       
    9591        machine_output_init();
     
    140136        uint8_t *stck;
    141137       
     138        tlb_invalidate_all();
    142139        stck = &THREAD->kstack[THREAD_STACK_SIZE - SP_DELTA];
    143140        supervisor_sp = (uintptr_t) stck;
     
    155152void cpu_halt(void)
    156153{
    157         while (true)
    158                 machine_cpu_halt();
     154        machine_cpu_halt();
    159155}
    160156
     
    163159{
    164160        /* not implemented */
    165         while (true);
     161        while (1);
    166162}
    167163
     
    180176}
    181177
    182 void irq_initialize_arch(irq_t *irq)
    183 {
    184         (void) irq;
    185 }
    186 
    187178/** @}
    188179 */
Note: See TracChangeset for help on using the changeset viewer.