Changeset 7a55888 in rtems
- Timestamp:
- 01/22/01 13:47:07 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 227ae749
- Parents:
- 32ba727
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/rtems/ChangeLog
r32ba727 r7a55888 1 2001-01-22 Michael Hamel <mhamel@adi.co.nz> 2 3 * include/rtems.h, src/signalcatch.c: Modifications to make 4 CodeWarrior happy. 5 1 6 2000-12-06 Joel Sherrill <joel@OARcorp.com> 2 7 -
c/src/exec/rtems/include/rtems.h
r32ba727 r7a55888 31 31 */ 32 32 33 #if !defined(__RTEMS_VIOLATE_KERNEL_VISIBILITY__) && !defined(__RTEMS_INSIDE__)33 #if (!defined(__RTEMS_VIOLATE_KERNEL_VISIBILITY__)) && (!defined(__RTEMS_INSIDE__)) 34 34 #define __RTEMS_APPLICATION__ 35 35 #endif -
c/src/exec/rtems/src/signalcatch.c
r32ba727 r7a55888 49 49 /* XXX normalize mode */ 50 50 executing = _Thread_Executing; 51 api = executing->API_Extensions[ THREAD_API_RTEMS ];51 api = (RTEMS_API_Control*)executing->API_Extensions[ THREAD_API_RTEMS ]; 52 52 asr = &api->Signal; 53 53 -
cpukit/rtems/ChangeLog
r32ba727 r7a55888 1 2001-01-22 Michael Hamel <mhamel@adi.co.nz> 2 3 * include/rtems.h, src/signalcatch.c: Modifications to make 4 CodeWarrior happy. 5 1 6 2000-12-06 Joel Sherrill <joel@OARcorp.com> 2 7 -
cpukit/rtems/include/rtems.h
r32ba727 r7a55888 31 31 */ 32 32 33 #if !defined(__RTEMS_VIOLATE_KERNEL_VISIBILITY__) && !defined(__RTEMS_INSIDE__)33 #if (!defined(__RTEMS_VIOLATE_KERNEL_VISIBILITY__)) && (!defined(__RTEMS_INSIDE__)) 34 34 #define __RTEMS_APPLICATION__ 35 35 #endif -
cpukit/rtems/src/signalcatch.c
r32ba727 r7a55888 49 49 /* XXX normalize mode */ 50 50 executing = _Thread_Executing; 51 api = executing->API_Extensions[ THREAD_API_RTEMS ];51 api = (RTEMS_API_Control*)executing->API_Extensions[ THREAD_API_RTEMS ]; 52 52 asr = &api->Signal; 53 53
Note: See TracChangeset
for help on using the changeset viewer.