source: rtems/c/src/lib/libbsp/sparc/leon/include/coverhd.h @ 603f30f

4.104.114.84.95
Last change on this file since 603f30f was b21b0ab, checked in by Joel Sherrill <joel.sherrill@…>, on 11/13/00 at 22:40:29

2000-11-13 Jiri Gaisler <jgais@…>

  • .cvsignore, ChangeLog?, Makefile.am, README, bsp_specs, configure.in, times, clock/.cvsignore, clock/Makefile.am, clock/ckinit.c, console/.cvsignore, console/Makefile.am, console/console.c, console/consolereserveresources.c, console/debugputs.c, gnatsupp/.cvsignore, gnatsupp/Makefile.am, gnatsupp/gnatsupp.c, include/.cvsignore, include/Makefile.am, include/bsp.h, include/coverhd.h, include/leon.h, start/.cvsignore, start/Makefile.am, startup/.cvsignore, startup/Makefile.am, startup/boardinit.S, startup/linkcmds, startup/setvec.c, startup/spurious.c, timer/.cvsignore, timer/Makefile.am, timer/timer.c, tools/.cvsignore, tools/Makefile.am, tools/configure.in, tools/runtest.in, wrapup/.cvsignore, wrapup/Makefile.am: New file.
  • Property mode set to 100644
File size: 4.5 KB
Line 
1/*  coverhd.h
2 *
3 *  This include file has defines to represent the overhead associated
4 *  with calling a particular directive from C for this target.
5 *
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
14 *  Research Corporation (OAR) under contract to the European Space
15 *  Agency (ESA).
16 *
17 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
18 *  European Space Agency.
19 *
20 *  $Id$
21 */
22
23#ifndef __COVERHD_h
24#define __COVERHD_h
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#define CALLING_OVERHEAD_INITIALIZE_EXECUTIVE      0
31#define CALLING_OVERHEAD_SHUTDOWN_EXECUTIVE        0
32#define CALLING_OVERHEAD_TASK_CREATE               0
33#define CALLING_OVERHEAD_TASK_IDENT                0
34#define CALLING_OVERHEAD_TASK_START                0
35#define CALLING_OVERHEAD_TASK_RESTART              0
36#define CALLING_OVERHEAD_TASK_DELETE               0
37#define CALLING_OVERHEAD_TASK_SUSPEND              0
38#define CALLING_OVERHEAD_TASK_RESUME               0
39#define CALLING_OVERHEAD_TASK_SET_PRIORITY         0
40#define CALLING_OVERHEAD_TASK_MODE                 0
41#define CALLING_OVERHEAD_TASK_GET_NOTE             0
42#define CALLING_OVERHEAD_TASK_SET_NOTE             0
43#define CALLING_OVERHEAD_TASK_WAKE_WHEN            0
44#define CALLING_OVERHEAD_TASK_WAKE_AFTER           0
45#define CALLING_OVERHEAD_INTERRUPT_CATCH           0
46#define CALLING_OVERHEAD_CLOCK_GET                 0
47#define CALLING_OVERHEAD_CLOCK_SET                 0
48#define CALLING_OVERHEAD_CLOCK_TICK                0
49
50#define CALLING_OVERHEAD_TIMER_CREATE              0
51#define CALLING_OVERHEAD_TIMER_IDENT               0
52#define CALLING_OVERHEAD_TIMER_DELETE              0
53#define CALLING_OVERHEAD_TIMER_FIRE_AFTER          0
54#define CALLING_OVERHEAD_TIMER_FIRE_WHEN           0
55#define CALLING_OVERHEAD_TIMER_RESET               0
56#define CALLING_OVERHEAD_TIMER_CANCEL              0
57#define CALLING_OVERHEAD_SEMAPHORE_CREATE          0
58#define CALLING_OVERHEAD_SEMAPHORE_IDENT           0
59#define CALLING_OVERHEAD_SEMAPHORE_DELETE          0
60#define CALLING_OVERHEAD_SEMAPHORE_OBTAIN          0
61#define CALLING_OVERHEAD_SEMAPHORE_RELEASE         0
62#define CALLING_OVERHEAD_MESSAGE_QUEUE_CREATE      0
63#define CALLING_OVERHEAD_MESSAGE_QUEUE_IDENT       0
64#define CALLING_OVERHEAD_MESSAGE_QUEUE_DELETE      0
65#define CALLING_OVERHEAD_MESSAGE_QUEUE_SEND        0
66#define CALLING_OVERHEAD_MESSAGE_QUEUE_URGENT      0
67#define CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST   0
68#define CALLING_OVERHEAD_MESSAGE_QUEUE_RECEIVE     0
69#define CALLING_OVERHEAD_MESSAGE_QUEUE_FLUSH       0
70
71#define CALLING_OVERHEAD_EVENT_SEND                0
72#define CALLING_OVERHEAD_EVENT_RECEIVE             0
73#define CALLING_OVERHEAD_SIGNAL_CATCH              0
74#define CALLING_OVERHEAD_SIGNAL_SEND               0
75#define CALLING_OVERHEAD_PARTITION_CREATE          0
76#define CALLING_OVERHEAD_PARTITION_IDENT           0
77#define CALLING_OVERHEAD_PARTITION_DELETE          0
78#define CALLING_OVERHEAD_PARTITION_GET_BUFFER      0
79#define CALLING_OVERHEAD_PARTITION_RETURN_BUFFER   0
80#define CALLING_OVERHEAD_REGION_CREATE             0
81#define CALLING_OVERHEAD_REGION_IDENT              0
82#define CALLING_OVERHEAD_REGION_DELETE             0
83#define CALLING_OVERHEAD_REGION_GET_SEGMENT        0
84#define CALLING_OVERHEAD_REGION_RETURN_SEGMENT     0
85#define CALLING_OVERHEAD_PORT_CREATE               0
86#define CALLING_OVERHEAD_PORT_IDENT                0
87#define CALLING_OVERHEAD_PORT_DELETE               0
88#define CALLING_OVERHEAD_PORT_EXTERNAL_TO_INTERNAL 0
89#define CALLING_OVERHEAD_PORT_INTERNAL_TO_EXTERNAL 0
90
91#define CALLING_OVERHEAD_IO_INITIALIZE             0
92#define CALLING_OVERHEAD_IO_OPEN                   0
93#define CALLING_OVERHEAD_IO_CLOSE                  0
94#define CALLING_OVERHEAD_IO_READ                   0
95#define CALLING_OVERHEAD_IO_WRITE                  0
96#define CALLING_OVERHEAD_IO_CONTROL                0
97#define CALLING_OVERHEAD_FATAL_ERROR_OCCURRED      0
98#define CALLING_OVERHEAD_RATE_MONOTONIC_CREATE     0
99#define CALLING_OVERHEAD_RATE_MONOTONIC_IDENT      0
100#define CALLING_OVERHEAD_RATE_MONOTONIC_DELETE     0
101#define CALLING_OVERHEAD_RATE_MONOTONIC_CANCEL     0
102#define CALLING_OVERHEAD_RATE_MONOTONIC_PERIOD     0
103#define CALLING_OVERHEAD_MULTIPROCESSING_ANNOUNCE  0
104
105#ifdef __cplusplus
106}
107#endif
108
109#endif
110/* end of include file */
Note: See TracBrowser for help on using the repository browser.