summaryrefslogtreecommitdiff
path: root/nuttx/arch/sh
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-13 20:37:02 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-13 20:37:02 +0000
commiteef7fd41b4fa6afb8a2f34b57467622f0904cdb2 (patch)
tree0cbda2a97aab3abb0c68309cd073503b792b3d83 /nuttx/arch/sh
parentd756b4d6a208ba3b4974ecda054e02f25ffa946a (diff)
downloadpx4-nuttx-eef7fd41b4fa6afb8a2f34b57467622f0904cdb2.tar.gz
px4-nuttx-eef7fd41b4fa6afb8a2f34b57467622f0904cdb2.tar.bz2
px4-nuttx-eef7fd41b4fa6afb8a2f34b57467622f0904cdb2.zip
Change configuration name
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1226 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/sh')
-rw-r--r--nuttx/arch/sh/src/common/up_assert.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_head.S8
2 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/arch/sh/src/common/up_assert.c b/nuttx/arch/sh/src/common/up_assert.c
index cef369dc7..f4a1bc080 100644
--- a/nuttx/arch/sh/src/common/up_assert.c
+++ b/nuttx/arch/sh/src/common/up_assert.c
@@ -170,7 +170,7 @@ static void up_dumpstate(void)
if (rtcb->pid == 0)
{
ustackbase = g_heapbase - 4;
- ustacksize = CONFIG_PROC_STACK_SIZE;
+ ustacksize = CONFIG_IDLETHREAD_STACKSIZE;
}
else
{
diff --git a/nuttx/arch/sh/src/sh1/sh1_head.S b/nuttx/arch/sh/src/sh1/sh1_head.S
index 155723f54..61f14443d 100644
--- a/nuttx/arch/sh/src/sh1/sh1_head.S
+++ b/nuttx/arch/sh/src/sh1/sh1_head.S
@@ -192,9 +192,9 @@ __vector_table:
*/
.long __start /* 0-1: Power-on reset (hard, NMI high) PC & SP */
- .long _ebss+CONFIG_PROC_STACK_SIZE-4
+ .long _ebss+CONFIG_IDLETHREAD_STACKSIZE-4
.long __start /* 2-3: Manual reset (soft, NMI low) PC & SP */
- .long _ebss+CONFIG_PROC_STACK_SIZE-4
+ .long _ebss+CONFIG_IDLETHREAD_STACKSIZE-4
.rept SH1_NCMN_VECTORS-4
.long _up_invalid_handler
@@ -358,7 +358,7 @@ __start:
.align 2
.Lstack:
- .long _ebss+CONFIG_PROC_STACK_SIZE-4
+ .long _ebss+CONFIG_IDLETHREAD_STACKSIZE-4
.Lwcr1:
.long 0x5ffffa2
.Lbcr:
@@ -517,7 +517,7 @@ __start0:
.globl _g_heapbase
.type _g_heapbase, object
_g_heapbase:
- .long _ebss+CONFIG_PROC_STACK_SIZE
+ .long _ebss+CONFIG_IDLETHREAD_STACKSIZE
.size _g_heapbase, .-_g_heapbase
.end