Changeset 7fb8379 in rtems
- Timestamp:
- Sep 8, 2003, 9:02:11 PM (17 years ago)
- Children:
- 8a323b09
- Parents:
- 792f239
- Location:
- cpukit/score
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/ChangeLog
r792f239 r7fb8379 1 2003-09-08 Mikec Ivica <mikici@acm.org> 2 3 * inline/rtems/score/userext.inl, macros/rtems/score/userext.inl: 4 Add missing cast. 5 6 2003-09-08 Mikec Ivica <mikici@acm.org> 7 8 * inline/rtems/score/userext.inl, macros/rtems/score/userext.inl: 9 Add missing cast. 10 1 11 2003-07-18 Till Straumann <strauman@slac.stanford.edu> 2 12 -
cpukit/score/inline/rtems/score/userext.inl
r792f239 r7fb8379 71 71 72 72 if ( initial_extensions ) { 73 extension = 73 extension = (User_extensions_Control *) 74 74 _Workspace_Allocate_or_fatal_error( 75 75 number_of_extensions * sizeof( User_extensions_Control ) -
cpukit/score/macros/rtems/score/userext.inl
r792f239 r7fb8379 61 61 \ 62 62 if ( (_initial_extensions) ) { \ 63 extension = _Workspace_Allocate_or_fatal_error( \ 63 extension = (User_extensions_Control *) \ 64 _Workspace_Allocate_or_fatal_error( \ 64 65 sizeof(User_extensions_Control) * _number_of_extensions ); \ 65 66 \
Note: See TracChangeset
for help on using the changeset viewer.