source: rtems-schedsim/schedsim/rtems/sched_cpu/cpu_asm.c @ 726b27c

Last change on this file since 726b27c was 726b27c, checked in by Joel Sherrill <joel.sherrill@…>, on 12/13/13 at 17:01:48

schedsim: Update to latest RTEMS. Works Uniprocessor

  • Property mode set to 100644
File size: 856 bytes
RevLine 
[726b27c]1/**
2 *  @file
[abb18dc]3 *
[726b27c]4 *  BASED UPON SOURCE IN RTEMS, MODIFIED FOR SIMULATOR
[abb18dc]5 *
[726b27c]6 *  Every method in this file is stubbed. There are no real
7 *  context switches or interrupts.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2014.
[abb18dc]12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.com/license/LICENSE.
17 */
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <rtems/system.h>
24#include <rtems/score/cpu.h>
25
26void _CPU_Context_save_fp(
27  Context_Control_fp **fp_context_ptr
28)
29{
30}
31
32void _CPU_Context_restore_fp(
33  Context_Control_fp **fp_context_ptr
34)
35{
36}
37
38void _CPU_Context_switch(
39  Context_Control  *run,
40  Context_Control  *heir
41)
42{
43}
44
45void _CPU_Context_restore(
46  Context_Control *new_context
47)
48{
49}
50
51void _ISR_Handler(void)
52{
53}
Note: See TracBrowser for help on using the repository browser.