source: rtems/cpukit/include/rtems/system.h @ 34b098e

5
Last change on this file since 34b098e was 34b098e, checked in by Sebastian Huber <sebastian.huber@…>, on 05/05/20 at 12:37:30

rtems: Deprecate use of _RTEMS_version

Close #3970.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @file
3 *
4 * @brief Information Included in Every Function in the Executive
5 *
6 * This include file contains information that is included in every
7 * function in the executive.  This must be the first include file
8 * included in all internal RTEMS files.
9 */
10
11/*
12 *  COPYRIGHT (c) 1989-2007.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.org/license/LICENSE.
18 */
19
20#ifndef _RTEMS_SYSTEM_H
21#define _RTEMS_SYSTEM_H
22
23#include <rtems/score/cpu.h>
24
25/**
26 *  @defgroup RTEMSScoreSystem System Information
27 *
28 *  @ingroup RTEMSScore
29 */
30/**@{*/
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#ifndef ASM
37
38/*
39 * The use of this variable is deprecated, use rtems_get_version_string()
40 * instead.
41 */
42extern RTEMS_DEPRECATED const char _RTEMS_version[];
43
44/**
45 *  The following is the extern for the RTEMS copyright string.
46 */
47extern const char _Copyright_Notice[];
48
49/** This macro defines the maximum length of a Classic API name. */
50#define RTEMS_MAXIMUM_NAME_LENGTH sizeof(rtems_name)
51
52#endif /* ASM */
53
54#ifdef __cplusplus
55}
56#endif
57
58/**@}*/
59#endif
60/* end of include file */
Note: See TracBrowser for help on using the repository browser.