source: rtems/cpukit/score/include/rtems/sysinit.h @ ed8b00e6

5
Last change on this file since ed8b00e6 was ed8b00e6, checked in by Sebastian Huber <sebastian.huber@…>, on 12/14/15 at 14:02:45

Optional Classic Message Queue initialization

Update #2408.

  • Property mode set to 100644
File size: 2.6 KB
Line 
1/*
2 * Copyright (c) 2015 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#ifndef _RTEMS_SYSINIT_H
16#define _RTEMS_SYSINIT_H
17
18#include <rtems/linkersets.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif /* __cplusplus */
23
24/*
25 * The value of each module define must consist of exactly six hexadecimal
26 * digits without a 0x-prefix.  A 0x-prefix is concatenated with the module and
27 * order values to form a proper integer literal.
28 */
29#define RTEMS_SYSINIT_BSP_WORK_AREAS             000100
30#define RTEMS_SYSINIT_BSP_START                  000200
31#define RTEMS_SYSINIT_INITIAL_EXTENSIONS         000300
32#define RTEMS_SYSINIT_DATA_STRUCTURES            000301
33#define RTEMS_SYSINIT_USER_EXTENSIONS            000320
34#define RTEMS_SYSINIT_CLASSIC_TASKS              000340
35#define RTEMS_SYSINIT_CLASSIC_TIMER              000341
36#define RTEMS_SYSINIT_CLASSIC_SIGNAL             000342
37#define RTEMS_SYSINIT_CLASSIC_EVENT              000343
38#define RTEMS_SYSINIT_CLASSIC_MESSAGE_QUEUE      000344
39#define RTEMS_SYSINIT_IDLE_THREADS               000380
40#define RTEMS_SYSINIT_BSP_LIBC                   000400
41#define RTEMS_SYSINIT_BEFORE_DRIVERS             000500
42#define RTEMS_SYSINIT_BSP_PRE_DRIVERS            000600
43#define RTEMS_SYSINIT_DEVICE_DRIVERS             000700
44#define RTEMS_SYSINIT_BSP_POST_DRIVERS           000800
45
46/*
47 * The value of each order define must consist of exactly two hexadecimal
48 * digits without a 0x-prefix.  A 0x-prefix is concatenated with the module and
49 * order values to form a proper integer literal.
50 */
51#define RTEMS_SYSINIT_ORDER_FIRST  00
52#define RTEMS_SYSINIT_ORDER_MIDDLE 08
53#define RTEMS_SYSINIT_ORDER_LAST   0f
54
55typedef void ( *rtems_sysinit_handler )( void );
56
57typedef struct {
58  rtems_sysinit_handler handler;
59} rtems_sysinit_item;
60
61/* The enum helps to detect typos in the module and order parameters */
62#define _RTEMS_SYSINIT_INDEX_ITEM( handler, index ) \
63  enum { _Sysinit_##handler = index }; \
64  RTEMS_LINKER_ROSET_ITEM_ORDERED( \
65    _Sysinit, \
66    rtems_sysinit_item, \
67    handler, \
68    index \
69  ) = { handler }
70
71/* Create index from module and order */
72#define _RTEMS_SYSINIT_ITEM( handler, module, order ) \
73  _RTEMS_SYSINIT_INDEX_ITEM( handler, 0x##module##order )
74
75/* Perform parameter expansion */
76#define RTEMS_SYSINIT_ITEM( handler, module, order ) \
77  _RTEMS_SYSINIT_ITEM( handler, module, order )
78
79#ifdef __cplusplus
80}
81#endif /* __cplusplus */
82
83#endif /* _RTEMS_SYSINIT_H */
Note: See TracBrowser for help on using the repository browser.