source: rtems/cpukit/score/include/rtems/system.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.3 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/percpu.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#ifdef RTEMS_POSIX_API
39/** The following is used by the POSIX implementation to catch bad paths.  */
40int POSIX_NOT_IMPLEMENTED( void );
41#endif
42
43/**
44 *  The following is the extern for the RTEMS version string.
45 *
46 *  @note The contents of this string are CPU specific.
47 */
48extern const char _RTEMS_version[];
49
50/**
51 *  The following is the extern for the RTEMS copyright string.
52 */
53extern const char _Copyright_Notice[];
54
55/** This macro defines the maximum length of a Classic API name. */
56#define RTEMS_MAXIMUM_NAME_LENGTH sizeof(rtems_name)
57
58#endif /* ASM */
59
60#ifdef __cplusplus
61}
62#endif
63
64/**@}*/
65#endif
66/* end of include file */
Note: See TracBrowser for help on using the repository browser.