source: rtems/cpukit/include/rtems/system.h @ 549b1d6

5
Last change on this file since 549b1d6 was 549b1d6, checked in by Sebastian Huber <sebastian.huber@…>, on 03/26/18 at 14:09:19

Remove unused POSIX_NOT_IMPLEMENTED() declaration

  • 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 ScoreSystem System Information
27 *
28 *  @ingroup Score
29 */
30/**@{*/
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#ifndef ASM
37
38/**
39 *  The following is the extern for the RTEMS version string.
40 *
41 *  @note The contents of this string are CPU specific.
42 */
43extern const char _RTEMS_version[];
44
45/**
46 *  The following is the extern for the RTEMS copyright string.
47 */
48extern const char _Copyright_Notice[];
49
50/** This macro defines the maximum length of a Classic API name. */
51#define RTEMS_MAXIMUM_NAME_LENGTH sizeof(rtems_name)
52
53#endif /* ASM */
54
55#ifdef __cplusplus
56}
57#endif
58
59/**@}*/
60#endif
61/* end of include file */
Note: See TracBrowser for help on using the repository browser.