Changeset 9c59c2d9 in rtems
- Timestamp:
- Feb 28, 2003, 7:08:21 AM (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 769f47a
- Parents:
- b9184faa
- Location:
- cpukit
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/sapi/ChangeLog
rb9184faa r9c59c2d9 1 2003-02-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * include/rtems/sptables.h.in: Remove RTEMS_VERSION (Moved to 4 cpuopts.h). 5 1 6 2003-02-03 Joel Sherrill <joel@OARcorp.com> 2 7 -
cpukit/sapi/include/rtems/sptables.h.in
rb9184faa r9c59c2d9 64 64 #endif 65 65 66 /*67 * This is the version string.68 */69 70 #define RTEMS_VERSION "rtems-@RTEMS_VERSION@"71 72 66 #if defined(SAPI_INIT) 73 67 const char _RTEMS_version[] = -
cpukit/score/ChangeLog
rb9184faa r9c59c2d9 1 2002-02-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * include/rtems/system.h: Add __RTEMS_MAJOR__, __RTEMS_MINOR__. 4 1 5 2003-02-14 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/score/cpu/arm/ChangeLog
rb9184faa r9c59c2d9 1 2003-02-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * rtems/score/arm.h: Set up ARM_HAS_FPU based on -D__SOFTFP__. 4 1 5 2002-12-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/arm/rtems/score/arm.h
rb9184faa r9c59c2d9 66 66 67 67 /* All ARM CPUs are assumed to not have floating point units */ 68 #if defined(__SOFTFP__) 68 69 #define ARM_HAS_FPU 0 70 #else 71 #define ARM_HAS_FPU 1 72 # error "FPU-support not yet implemented for the arm" 73 #endif 74 69 75 70 76 /* -
cpukit/score/include/rtems/system.h
rb9184faa r9c59c2d9 21 21 extern "C" { 22 22 #endif 23 24 /* 25 * Major and minor version number of RTEMS. 26 * Use these macros to test for features in specific releases. 27 */ 28 #define __RTEMS_MAJOR__ 4 29 #define __RTEMS_MINOR__ 6 23 30 24 31 /*
Note: See TracChangeset
for help on using the changeset viewer.