Changeset e001d84 in rtems
- Timestamp:
- 07/24/00 22:28:15 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ca8dfbc
- Parents:
- ce21604c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/src/objectget.c
rce21604c re001d84 55 55 56 56 /* index = _Objects_Get_index( id ); */ 57 index = (unsigned16) id; 57 index = id & 0x0000ffff; 58 /* This should work but doesn't always :( */ 59 /* index = (unsigned16) id; */ 58 60 59 61 if ( information->maximum >= index ) { -
c/src/exec/score/src/objectgetisr.c
rce21604c re001d84 59 59 60 60 /* index = _Objects_Get_index( id ); */ 61 index = (unsigned16) id; 61 index = id & 0x0000ffff; 62 /* This should work but doesn't always :( */ 63 /* index = (unsigned16) id; */ 62 64 63 65 _ISR_Disable( level ); -
cpukit/score/src/objectget.c
rce21604c re001d84 55 55 56 56 /* index = _Objects_Get_index( id ); */ 57 index = (unsigned16) id; 57 index = id & 0x0000ffff; 58 /* This should work but doesn't always :( */ 59 /* index = (unsigned16) id; */ 58 60 59 61 if ( information->maximum >= index ) { -
cpukit/score/src/objectgetisr.c
rce21604c re001d84 59 59 60 60 /* index = _Objects_Get_index( id ); */ 61 index = (unsigned16) id; 61 index = id & 0x0000ffff; 62 /* This should work but doesn't always :( */ 63 /* index = (unsigned16) id; */ 62 64 63 65 _ISR_Disable( level );
Note: See TracChangeset
for help on using the changeset viewer.