summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/powerpc/rtems/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-10 13:09:22 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-22 14:19:00 +0200
commit7837728b13076fce67b67025ad7a02890748c94c (patch)
treeda6e613a9b93d446de8cccb5742c5cdea040a42a /cpukit/score/cpu/powerpc/rtems/score
parentpowerpc: 64-bit support for CPU_SIZEOF_POINTER (diff)
downloadrtems-7837728b13076fce67b67025ad7a02890748c94c.tar.bz2
powerpc: 64-bit _CPU_Context_Initialize() support
Update #3082.
Diffstat (limited to 'cpukit/score/cpu/powerpc/rtems/score')
-rw-r--r--cpukit/score/cpu/powerpc/rtems/score/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/cpu/powerpc/rtems/score/cpu.h b/cpukit/score/cpu/powerpc/rtems/score/cpu.h
index fbebbf643e..72fc48318f 100644
--- a/cpukit/score/cpu/powerpc/rtems/score/cpu.h
+++ b/cpukit/score/cpu/powerpc/rtems/score/cpu.h
@@ -818,8 +818,8 @@ static inline CPU_Counter_ticks _CPU_Counter_difference(
void _CPU_Context_Initialize(
Context_Control *the_context,
- uint32_t *stack_base,
- uint32_t size,
+ void *stack_base,
+ size_t size,
uint32_t new_level,
void *entry_point,
bool is_fp,