Changeset d32358f in mainline for kernel/arch/abs32le/src/abs32le.c


Ignore:
Timestamp:
2010-02-04T16:24:32Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b1d3c36
Parents:
eda925a
Message:

abs32le: explicitly support SMP configurations
abs32le: add several missing functions (dummy implementations)

File:
1 edited

Legend:

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

    reda925a rd32358f  
    3939#include <arch/asm.h>
    4040
     41#include <func.h>
    4142#include <config.h>
     43#include <context.h>
    4244#include <interrupt.h>
    4345#include <ddi/irq.h>
     
    128130}
    129131
     132int context_save_arch(context_t *ctx)
     133{
     134        return 1;
     135}
     136
     137void context_restore_arch(context_t *ctx)
     138{
     139        while (true);
     140}
     141
    130142/** @}
    131143 */
Note: See TracChangeset for help on using the changeset viewer.