source: rtems/c/src/lib/libbsp/sh/simsh4/include/coverhd.h @ c682b89

4.104.114.84.95
Last change on this file since c682b89 was cd67dca, checked in by Joel Sherrill <joel.sherrill@…>, on 10/11/01 at 21:04:35

2001-10-11 Alexandra Kossovsky <sasha@…>

  • clock/Makefile.am, clock/ckinit.c, clock/.cvsignore, Makefile.am, README, bsp_specs, console/Makefile.am, console/console.c, console/.cvsignore, include/Makefile.am, include/bsp.h, include/coverhd.h, include/syscall.h, include/ramdisk.h, include/.cvsignore, start/Makefile.am, start/start.S, start/.cvsignore, startup/Makefile.am, startup/bspstart.c, startup/hw_init.c, startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff, startup/.cvsignore, timer/Makefile.am, timer/timer.c, timer/.cvsignore, wrapup/Makefile.am, wrapup/.cvsignore, configure.ac, .cvsignore, ChangeLog?: New files. Reviewed and updated to latest automake and autoconf standards by Ralf Corsepius <corsepiu@…>.
  • Property mode set to 100644
File size: 5.2 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.  These are used in the
5 *  Timing Test Suite to ignore the overhead required to pass arguments
6 *  to directives.  On some CPUs and/or target boards, this overhead
7 *  is significant and makes it difficult to distinguish internal
8 *  RTEMS execution time from that used to call the directive.
9 *  This file should be updated after running the C overhead timing
10 *  test.  Once this update has been performed, the RTEMS Time Test
11 *  Suite should be rebuilt to account for these overhead times in the
12 *  timing results.
13 *
14 *  NOTE:  If these are all zero, then the times reported include all
15 *         all calling overhead including passing of arguments.
16 *
17 *
18 *  This program is distributed in the hope that it will be useful,
19 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 *
22 *  The license and distribution terms for this file may be
23 *  found in the file LICENSE in this distribution or at
24 *  http://www.OARcorp.com/rtems/license.html.
25 *
26 *  This file may be copied and distributed in accordance
27 *  the above-referenced license. It is provided for critique and
28 *  developmental purposes without any warranty nor representation
29 *  by the authors or by TGA Technologies.
30 *
31 *  $Id$
32 */
33
34#ifndef __COVERHD_h
35#define __COVERHD_h
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41#define CALLING_OVERHEAD_INITIALIZE_EXECUTIVE      0
42#define CALLING_OVERHEAD_SHUTDOWN_EXECUTIVE        0
43#define CALLING_OVERHEAD_TASK_CREATE               0
44#define CALLING_OVERHEAD_TASK_IDENT                0
45#define CALLING_OVERHEAD_TASK_START                0
46#define CALLING_OVERHEAD_TASK_RESTART              0
47#define CALLING_OVERHEAD_TASK_DELETE               0
48#define CALLING_OVERHEAD_TASK_SUSPEND              0
49#define CALLING_OVERHEAD_TASK_RESUME               0
50#define CALLING_OVERHEAD_TASK_SET_PRIORITY         0
51#define CALLING_OVERHEAD_TASK_MODE                 0
52#define CALLING_OVERHEAD_TASK_GET_NOTE             0
53#define CALLING_OVERHEAD_TASK_SET_NOTE             0
54#define CALLING_OVERHEAD_TASK_WAKE_WHEN            0
55#define CALLING_OVERHEAD_TASK_WAKE_AFTER           0
56#define CALLING_OVERHEAD_INTERRUPT_CATCH           0
57#define CALLING_OVERHEAD_CLOCK_GET                 0
58#define CALLING_OVERHEAD_CLOCK_SET                 0
59#define CALLING_OVERHEAD_CLOCK_TICK                0
60
61#define CALLING_OVERHEAD_TIMER_CREATE              0
62#define CALLING_OVERHEAD_TIMER_IDENT               0
63#define CALLING_OVERHEAD_TIMER_DELETE              0
64#define CALLING_OVERHEAD_TIMER_FIRE_AFTER          0
65#define CALLING_OVERHEAD_TIMER_FIRE_WHEN           0
66#define CALLING_OVERHEAD_TIMER_RESET               0
67#define CALLING_OVERHEAD_TIMER_CANCEL              0
68#define CALLING_OVERHEAD_SEMAPHORE_CREATE          0
69#define CALLING_OVERHEAD_SEMAPHORE_IDENT           0
70#define CALLING_OVERHEAD_SEMAPHORE_DELETE          0
71#define CALLING_OVERHEAD_SEMAPHORE_OBTAIN          0
72#define CALLING_OVERHEAD_SEMAPHORE_RELEASE         0
73#define CALLING_OVERHEAD_MESSAGE_QUEUE_CREATE      0
74#define CALLING_OVERHEAD_MESSAGE_QUEUE_IDENT       0
75#define CALLING_OVERHEAD_MESSAGE_QUEUE_DELETE      0
76#define CALLING_OVERHEAD_MESSAGE_QUEUE_SEND        0
77#define CALLING_OVERHEAD_MESSAGE_QUEUE_URGENT      0
78#define CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST   0
79#define CALLING_OVERHEAD_MESSAGE_QUEUE_RECEIVE     0
80#define CALLING_OVERHEAD_MESSAGE_QUEUE_FLUSH       0
81
82#define CALLING_OVERHEAD_EVENT_SEND                0
83#define CALLING_OVERHEAD_EVENT_RECEIVE             0
84#define CALLING_OVERHEAD_SIGNAL_CATCH              0
85#define CALLING_OVERHEAD_SIGNAL_SEND               0
86#define CALLING_OVERHEAD_PARTITION_CREATE          0
87#define CALLING_OVERHEAD_PARTITION_IDENT           0
88#define CALLING_OVERHEAD_PARTITION_DELETE          0
89#define CALLING_OVERHEAD_PARTITION_GET_BUFFER      0
90#define CALLING_OVERHEAD_PARTITION_RETURN_BUFFER   0
91#define CALLING_OVERHEAD_REGION_CREATE             0
92#define CALLING_OVERHEAD_REGION_IDENT              0
93#define CALLING_OVERHEAD_REGION_DELETE             0
94#define CALLING_OVERHEAD_REGION_GET_SEGMENT        0
95#define CALLING_OVERHEAD_REGION_RETURN_SEGMENT     0
96#define CALLING_OVERHEAD_PORT_CREATE               0
97#define CALLING_OVERHEAD_PORT_IDENT                0
98#define CALLING_OVERHEAD_PORT_DELETE               0
99#define CALLING_OVERHEAD_PORT_EXTERNAL_TO_INTERNAL 0
100#define CALLING_OVERHEAD_PORT_INTERNAL_TO_EXTERNAL 0
101
102#define CALLING_OVERHEAD_IO_INITIALIZE             0
103#define CALLING_OVERHEAD_IO_OPEN                   0
104#define CALLING_OVERHEAD_IO_CLOSE                  0
105#define CALLING_OVERHEAD_IO_READ                   0
106#define CALLING_OVERHEAD_IO_WRITE                  0
107#define CALLING_OVERHEAD_IO_CONTROL                0
108#define CALLING_OVERHEAD_FATAL_ERROR_OCCURRED      0
109#define CALLING_OVERHEAD_RATE_MONOTONIC_CREATE     0
110#define CALLING_OVERHEAD_RATE_MONOTONIC_IDENT      0
111#define CALLING_OVERHEAD_RATE_MONOTONIC_DELETE     0
112#define CALLING_OVERHEAD_RATE_MONOTONIC_CANCEL     0
113#define CALLING_OVERHEAD_RATE_MONOTONIC_PERIOD     0
114#define CALLING_OVERHEAD_MULTIPROCESSING_ANNOUNCE  0
115
116#ifdef __cplusplus
117}
118#endif
119
120#endif
121/* end of include file */
Note: See TracBrowser for help on using the repository browser.