Changeset 7fa919fc in rtems
- Timestamp:
- Sep 8, 2008, 3:19:16 PM (11 years ago)
- Branches:
- 4.10, 4.11, 4.9, master
- Children:
- df4fcaa
- Parents:
- edb1810e
- Location:
- cpukit/score/cpu
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/h8300/ChangeLog
redb1810e r7fa919fc 1 2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * rtems/score/cpu.h: Remove extraneous spaces. 4 1 5 2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org> 2 6 -
cpukit/score/cpu/h8300/rtems/score/cpu.h
redb1810e r7fa919fc 778 778 else (_the_context)->ccr = CPU_CCR_INTERRUPTS_ON; \ 779 779 \ 780 _stack = ((uint32_t 780 _stack = ((uint32_t)(_stack_base)) + (_size) - 4; \ 781 781 *((proc_ptr *)(_stack)) = (_entry_point); \ 782 782 (_the_context)->er7 = (void *) _stack; \ -
cpukit/score/cpu/i386/ChangeLog
redb1810e r7fa919fc 1 2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * rtems/score/cpu.h: Remove extraneous spaces. 4 1 5 2008-09-05 Ralf Corsépius <ralf.corsepius@rtems.org> 2 6 -
cpukit/score/cpu/i386/rtems/score/cpu.h
redb1810e r7fa919fc 301 301 else (_the_context)->eflags = CPU_EFLAGS_INTERRUPTS_ON; \ 302 302 \ 303 _stack = ((uint32_t 303 _stack = ((uint32_t)(_stack_base)) + (_size) - 4; \ 304 304 \ 305 305 *((proc_ptr *)(_stack)) = (_entry_point); \ -
cpukit/score/cpu/nios2/ChangeLog
redb1810e r7fa919fc 1 2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * rtems/score/cpu.h: Remove extraneous spaces. 4 1 5 2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org> 2 6 -
cpukit/score/cpu/nios2/rtems/score/cpu.h
redb1810e r7fa919fc 900 900 do { \ 901 901 extern char _gp[]; \ 902 uint32_t _stack = (uint32_t 902 uint32_t _stack = (uint32_t)(_stack_base) + (_size) - 4; \ 903 903 (_the_context)->gp = (void *)_gp; \ 904 904 (_the_context)->fp = (void *)_stack; \
Note: See TracChangeset
for help on using the changeset viewer.