summaryrefslogtreecommitdiffstats
path: root/schedsim/rtems/sched_cpu/cpu_asm.c
blob: 092879430e643e4090d09ff81c2839deeae438e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
 *  @file
 *
 *  BASED UPON SOURCE IN RTEMS, MODIFIED FOR SIMULATOR
 *
 *  Every method in this file is stubbed. There are no real
 *  context switches or interrupts.
 */

/*
 *  COPYRIGHT (c) 1989-2014.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/system.h>
#include <rtems/score/cpu.h>

void _CPU_Context_save_fp(
  Context_Control_fp **fp_context_ptr
)
{
}

void _CPU_Context_restore_fp(
  Context_Control_fp **fp_context_ptr
)
{
}

void _CPU_Context_switch(
  Context_Control  *run,
  Context_Control  *heir
)
{
}

void _CPU_Context_restore(
  Context_Control *new_context
)
{
}

void _ISR_Handler(void)
{
}