source: rtems/c/src/exec/sapi/headers/directives.h @ 7285a016

4.104.114.84.95
Last change on this file since 7285a016 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 5.3 KB
Line 
1/*  directives.h
2 *
3 *  The following definitions are the directive numbers used
4 *  in the assembly interface.
5 *
6 *  COPYRIGHT (c) 19891990, 1991, 1992, 1993, 1994.
7 *  On-Line Applications Research Corporation (OAR).
8 *  All rights assigned to U.S. Government1994.
9 *
10 *  This material may be reproduced by or for the U.S. Government pursuant
11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
12 *  notice must appear in all copies of this file and its derivatives.
13 */
14
15#ifndef __RTEMS_DIRECTIVES_h
16#define RTEMS___DIRECTIVES_h
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#define RTEMS_INITIALIZE_EXECUTIVE                       0
23#define RTEMS_INITIALIZE_EXECUTIVE_EARLY                 1
24#define RTEMS_INITIALIZE_EXECUTIVE_LATE                  2
25#define RTEMS_SHUTDOWN_EXECUTIVE                         3
26#define RTEMS_TASKS_CREATE                               4
27#define RTEMS_TASKS_NAME_TO_ID                           5
28#define RTEMS_TASKS_START                                6
29#define RTEMS_TASKS_RESTART                              7
30#define RTEMS_TASKS_DELETE                               8
31#define RTEMS_TASKS_SUSPEND                              9
32#define RTEMS_TASKS_RESUME                              10
33#define RTEMS_TASKS_SET_PRIORITY                        11
34#define RTEMS_TASKS_MODE                                12
35#define RTEMS_TASKS_GET_NOTE                            13
36#define RTEMS_TASKS_SET_NOTE                            14
37#define RTEMS_TASKS_WAKE_AFTER                          15
38#define RTEMS_TASKS_WAKE_WHEN                           16
39#define RTEMS_INTERRUPT_CATCH                           17
40#define RTEMS_CLOCK_SET                                 18
41#define RTEMS_CLOCK_GET                                 19
42#define RTEMS_CLOCK_TICK                                20
43#define RTEMS_EXTENSION_CREATE                          21
44#define RTEMS_EXTENSION_NAME_TO_ID                      22
45#define RTEMS_EXTENSION_DELETE                          23
46#define RTEMS_TIMER_CREATE                              24
47#define RTEMS_TIMER_NAME_TO_ID                          25
48#define RTEMS_TIMER_CANCEL                              26
49#define RTEMS_TIMER_DELETE                              27
50#define RTEMS_TIMER_FIRE_AFTER                          28
51#define RTEMS_TIMER_FIRE_WHEN                           29
52#define RTEMS_TIMER_RESET                               30
53#define RTEMS_SEMAPHORE_CREATE                          31
54#define RTEMS_SEMAPHORE_NAME_TO_ID                      32
55#define RTEMS_SEMAPHORE_DELETE                          33
56#define RTEMS_SEMAPHORE_OBTAIN                          34
57#define RTEMS_SEMAPHORE_RELEASE                         35
58#define RTEMS_MESSAGE_QUEUE_CREATE                      36
59#define RTEMS_MESSAGE_QUEUE_NAME_TO_ID                  37
60#define RTEMS_MESSAGE_QUEUE_DELETE                      38
61#define RTEMS_MESSAGE_QUEUE_SEND                        39
62#define RTEMS_MESSAGE_QUEUE_URGENT                      40
63#define RTEMS_MESSAGE_QUEUE_BROADCAst                   41
64#define RTEMS_MESSAGE_QUEUE_RECEIVE                     42
65#define RTEMS_MESSAGE_QUEUE_FLUSH                       43
66#define RTEMS_EVENT_SEND                                44
67#define RTEMS_EVENT_RECEIVE                             45
68#define RTEMS_SIGNAL_CATCH                              46
69#define RTEMS_SIGNAL_SEND                               47
70#define RTEMS_PARTITION_CREATE                          48
71#define RTEMS_PARTITION_NAME_TO_ID                      49
72#define RTEMS_PARTITION_DELETE                          50
73#define RTEMS_PARTITION_GET_BUFFER                      51
74#define RTEMS_PARTITION_RETURN_BUFFER                   52
75#define RTEMS_REGION_CREATE                             53
76#define RTEMS_REGION_EXTEND                             54
77#define RTEMS_REGION_NAME_TO_ID                         55
78#define RTEMS_REGION_DELETE                             56
79#define RTEMS_REGION_GET_SEGMENT_SIZE                   57
80#define RTEMS_REGION_GET_SEGMENT                        58
81#define RTEMS_REGION_RETURN_SEGMENT                     59
82#define RTEMS_DUAL_PORTED_MEMORY_CREATE                 60
83#define RTEMS_DUAL_PORTED_MEMORY_NAME_TO_ID             61
84#define RTEMS_DUAL_PORTED_MEMORY_DELETE                 62
85#define RTEMS_DUAL_PORTED_MEMORY_EXTERNAL_TO_INTERNAL   63
86#define RTEMS_DUAL_PORTED_MEMORY_INTERNAL_TO_EXTERNAL   64
87#define RTEMS_IO_INITIALIZE                             65
88#define RTEMS_IO_OPEN                                   66
89#define RTEMS_IO_CLOSE                                  67
90#define RTEMS_IO_READ                                   68
91#define RTEMS_IO_WRITE                                  69
92#define RTEMS_IO_CONTROL                                70
93#define RTEMS_FATAL_ERROR_OCCURRED                      71
94#define RTEMS_RATE_MONOTONIC_CREATE                     72
95#define RTEMS_RATE_MONOTONIC_NAME_TO_ID                 73
96#define RTEMS_RATE_MONOTONIC_DELETE                     74
97#define RTEMS_RATE_MONOTONIC_CANCEL                     75
98#define RTEMS_RATE_MONOTONIC_PERIOD                     76
99#define RTEMS_MULTIPROCESSING_ANNOUNCE                  77
100#define RTEMS_DEBUG_ENABLE                              78
101#define RTEMS_DEBUG_DISABLE                             79
102
103#ifdef __cplusplus
104}
105#endif
106
107#endif
108/* end of directives.h */
Note: See TracBrowser for help on using the repository browser.