source: rtems/c/src/lib/libbsp/mips64orion/p4000/include/coverhd.h @ afe99c2

4.104.114.84.95
Last change on this file since afe99c2 was 5bb00a8, checked in by Joel Sherrill <joel.sherrill@…>, on 09/11/96 at 19:13:44

added $Id$ string to file header

  • Property mode set to 100644
File size: 5.0 KB
RevLine 
[f198c63]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 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
18 *  On-Line Applications Research Corporation (OAR).
19 *  All rights assigned to U.S. Government, 1994.
20 *
21 *  This material may be reproduced by or for the U.S. Government pursuant
22 *  to the copyright license under the clause at DFARS 252.227-7013.  This
23 *  notice must appear in all copies of this file and its derivatives.
24 *
[5bb00a8]25 *  $Id$
[f198c63]26 */
27/* @(#)coverhd.h       04/08/96     1.3 */
28
29#ifndef __COVERHD_h
30#define __COVERHD_h
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#define CALLING_OVERHEAD_INITIALIZE_EXECUTIVE      5
37#define CALLING_OVERHEAD_SHUTDOWN_EXECUTIVE        4
38#define CALLING_OVERHEAD_TASK_CREATE               6
39#define CALLING_OVERHEAD_TASK_IDENT                4
40#define CALLING_OVERHEAD_TASK_START                5
41#define CALLING_OVERHEAD_TASK_RESTART              4
42#define CALLING_OVERHEAD_TASK_DELETE               4
43#define CALLING_OVERHEAD_TASK_SUSPEND              4
44#define CALLING_OVERHEAD_TASK_RESUME               4
45#define CALLING_OVERHEAD_TASK_SET_PRIORITY         5
46#define CALLING_OVERHEAD_TASK_MODE                 4
47#define CALLING_OVERHEAD_TASK_GET_NOTE             5
48#define CALLING_OVERHEAD_TASK_SET_NOTE             5
49#define CALLING_OVERHEAD_TASK_WAKE_WHEN            9
50#define CALLING_OVERHEAD_TASK_WAKE_AFTER           4
51#define CALLING_OVERHEAD_INTERRUPT_CATCH           5
52#define CALLING_OVERHEAD_CLOCK_GET                 9
53#define CALLING_OVERHEAD_CLOCK_SET                 8
54#define CALLING_OVERHEAD_CLOCK_TICK                3
55
56#define CALLING_OVERHEAD_TIMER_CREATE              4
57#define CALLING_OVERHEAD_TIMER_IDENT               4
58#define CALLING_OVERHEAD_TIMER_DELETE              4
59#define CALLING_OVERHEAD_TIMER_FIRE_AFTER          6
60#define CALLING_OVERHEAD_TIMER_FIRE_WHEN           10
61#define CALLING_OVERHEAD_TIMER_RESET               4
62#define CALLING_OVERHEAD_TIMER_CANCEL              4
63#define CALLING_OVERHEAD_SEMAPHORE_CREATE          5
64#define CALLING_OVERHEAD_SEMAPHORE_IDENT           4
65#define CALLING_OVERHEAD_SEMAPHORE_DELETE          4
66#define CALLING_OVERHEAD_SEMAPHORE_OBTAIN          5
67#define CALLING_OVERHEAD_SEMAPHORE_RELEASE         4
68#define CALLING_OVERHEAD_MESSAGE_QUEUE_CREATE      5
69#define CALLING_OVERHEAD_MESSAGE_QUEUE_IDENT       4
70#define CALLING_OVERHEAD_MESSAGE_QUEUE_DELETE      4
71#define CALLING_OVERHEAD_MESSAGE_QUEUE_SEND        4
72#define CALLING_OVERHEAD_MESSAGE_QUEUE_URGENT      4
73#define CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST   5
74#define CALLING_OVERHEAD_MESSAGE_QUEUE_RECEIVE     5
75#define CALLING_OVERHEAD_MESSAGE_QUEUE_FLUSH       4
76
77#define CALLING_OVERHEAD_EVENT_SEND                4
78#define CALLING_OVERHEAD_EVENT_RECEIVE             5
79#define CALLING_OVERHEAD_SIGNAL_CATCH              5
80#define CALLING_OVERHEAD_SIGNAL_SEND               4
81#define CALLING_OVERHEAD_PARTITION_CREATE          6
82#define CALLING_OVERHEAD_PARTITION_IDENT           4
83#define CALLING_OVERHEAD_PARTITION_DELETE          4
84#define CALLING_OVERHEAD_PARTITION_GET_BUFFER      4
85#define CALLING_OVERHEAD_PARTITION_RETURN_BUFFER   4
86#define CALLING_OVERHEAD_REGION_CREATE             6
87#define CALLING_OVERHEAD_REGION_IDENT              4
88#define CALLING_OVERHEAD_REGION_DELETE             4
89#define CALLING_OVERHEAD_REGION_GET_SEGMENT        5
90#define CALLING_OVERHEAD_REGION_RETURN_SEGMENT     4
91#define CALLING_OVERHEAD_PORT_CREATE               6
92#define CALLING_OVERHEAD_PORT_IDENT                4
93#define CALLING_OVERHEAD_PORT_DELETE               4
94#define CALLING_OVERHEAD_PORT_EXTERNAL_TO_INTERNAL 4
95#define CALLING_OVERHEAD_PORT_INTERNAL_TO_EXTERNAL 4
96
97#define CALLING_OVERHEAD_IO_INITIALIZE             5
98#define CALLING_OVERHEAD_IO_OPEN                   5
99#define CALLING_OVERHEAD_IO_CLOSE                  5
100#define CALLING_OVERHEAD_IO_READ                   5
101#define CALLING_OVERHEAD_IO_WRITE                  5
102#define CALLING_OVERHEAD_IO_CONTROL                5
103#define CALLING_OVERHEAD_FATAL_ERROR_OCCURRED      4
104#define CALLING_OVERHEAD_RATE_MONOTONIC_CREATE     4
105#define CALLING_OVERHEAD_RATE_MONOTONIC_IDENT      4
106#define CALLING_OVERHEAD_RATE_MONOTONIC_DELETE     4
107#define CALLING_OVERHEAD_RATE_MONOTONIC_CANCEL     4
108#define CALLING_OVERHEAD_RATE_MONOTONIC_PERIOD     4
109#define CALLING_OVERHEAD_MULTIPROCESSING_ANNOUNCE  3
110
111#ifdef __cplusplus
112}
113#endif
114
115#endif
116/* end of include file */
Note: See TracBrowser for help on using the repository browser.