From ed8c667da4ed457c0d2361f96ee63943bcaaf281 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 27 Apr 2014 15:49:38 -0600 Subject: Fix spelling, only one t in exiting --- nuttx/arch/8051/src/up_exit.c | 2 +- nuttx/arch/arm/src/common/up_exit.c | 2 +- nuttx/arch/avr/src/common/up_exit.c | 2 +- nuttx/arch/hc/src/common/up_exit.c | 2 +- nuttx/arch/mips/src/common/up_exit.c | 2 +- nuttx/arch/sh/src/common/up_exit.c | 2 +- nuttx/arch/sim/src/up_exit.c | 2 +- nuttx/arch/x86/src/common/up_exit.c | 2 +- nuttx/arch/z16/src/common/up_exit.c | 2 +- nuttx/arch/z80/src/common/up_exit.c | 2 +- nuttx/configs/z16f2800100zcog/README.txt | 8 ++++++++ 11 files changed, 18 insertions(+), 10 deletions(-) diff --git a/nuttx/arch/8051/src/up_exit.c b/nuttx/arch/8051/src/up_exit.c index 31d8c99ab..235eb691f 100644 --- a/nuttx/arch/8051/src/up_exit.c +++ b/nuttx/arch/8051/src/up_exit.c @@ -79,7 +79,7 @@ void _exit(int status) { FAR struct tcb_s* tcb; - dbg("TCB=%p exitting\n", tcb); + dbg("TCB=%p exiting\n", tcb); /* Disable interrupts. Interrupts will remain disabled until * the new task is resumed below when the save IE is restored. diff --git a/nuttx/arch/arm/src/common/up_exit.c b/nuttx/arch/arm/src/common/up_exit.c index 34dc3138a..37b603e50 100644 --- a/nuttx/arch/arm/src/common/up_exit.c +++ b/nuttx/arch/arm/src/common/up_exit.c @@ -144,7 +144,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", g_readytorun.head); + slldbg("TCB=%p exiting\n", g_readytorun.head); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) slldbg("Other tasks:\n"); diff --git a/nuttx/arch/avr/src/common/up_exit.c b/nuttx/arch/avr/src/common/up_exit.c index d2a4f85a9..355163359 100644 --- a/nuttx/arch/avr/src/common/up_exit.c +++ b/nuttx/arch/avr/src/common/up_exit.c @@ -144,7 +144,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", g_readytorun.head); + slldbg("TCB=%p exiting\n", g_readytorun.head); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) slldbg("Other tasks:\n"); diff --git a/nuttx/arch/hc/src/common/up_exit.c b/nuttx/arch/hc/src/common/up_exit.c index e015cf1d5..7fa526ff7 100644 --- a/nuttx/arch/hc/src/common/up_exit.c +++ b/nuttx/arch/hc/src/common/up_exit.c @@ -144,7 +144,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", g_readytorun.head); + slldbg("TCB=%p exiting\n", g_readytorun.head); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) slldbg("Other tasks:\n"); diff --git a/nuttx/arch/mips/src/common/up_exit.c b/nuttx/arch/mips/src/common/up_exit.c index 41fe57a6d..415ca64ee 100644 --- a/nuttx/arch/mips/src/common/up_exit.c +++ b/nuttx/arch/mips/src/common/up_exit.c @@ -146,7 +146,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", g_readytorun.head); + slldbg("TCB=%p exiting\n", g_readytorun.head); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) slldbg("Other tasks:\n"); diff --git a/nuttx/arch/sh/src/common/up_exit.c b/nuttx/arch/sh/src/common/up_exit.c index d7de0154c..d4669caf4 100644 --- a/nuttx/arch/sh/src/common/up_exit.c +++ b/nuttx/arch/sh/src/common/up_exit.c @@ -145,7 +145,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", g_readytorun.head); + slldbg("TCB=%p exiting\n", g_readytorun.head); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) slldbg("Other tasks:\n"); diff --git a/nuttx/arch/sim/src/up_exit.c b/nuttx/arch/sim/src/up_exit.c index 7d7d4d041..f4c91e544 100644 --- a/nuttx/arch/sim/src/up_exit.c +++ b/nuttx/arch/sim/src/up_exit.c @@ -78,7 +78,7 @@ void _exit(int status) { struct tcb_s* tcb; - sdbg("TCB=%p exitting\n", tcb); + sdbg("TCB=%p exiting\n", tcb); /* Destroy the task at the head of the ready to run list. */ diff --git a/nuttx/arch/x86/src/common/up_exit.c b/nuttx/arch/x86/src/common/up_exit.c index 424a89f4f..ad1ec41c6 100644 --- a/nuttx/arch/x86/src/common/up_exit.c +++ b/nuttx/arch/x86/src/common/up_exit.c @@ -144,7 +144,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", g_readytorun.head); + slldbg("TCB=%p exiting\n", g_readytorun.head); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) slldbg("Other tasks:\n"); diff --git a/nuttx/arch/z16/src/common/up_exit.c b/nuttx/arch/z16/src/common/up_exit.c index 6f118fe24..c578a3bfe 100644 --- a/nuttx/arch/z16/src/common/up_exit.c +++ b/nuttx/arch/z16/src/common/up_exit.c @@ -146,7 +146,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", tcb); + slldbg("TCB=%p exiting\n", tcb); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) lldbg("Other tasks:\n"); diff --git a/nuttx/arch/z80/src/common/up_exit.c b/nuttx/arch/z80/src/common/up_exit.c index d38e4fb03..50d675f96 100644 --- a/nuttx/arch/z80/src/common/up_exit.c +++ b/nuttx/arch/z80/src/common/up_exit.c @@ -147,7 +147,7 @@ void _exit(int status) (void)irqsave(); - slldbg("TCB=%p exitting\n", tcb); + slldbg("TCB=%p exiting\n", tcb); #if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG) lldbg("Other tasks:\n"); diff --git a/nuttx/configs/z16f2800100zcog/README.txt b/nuttx/configs/z16f2800100zcog/README.txt index c999b9d63..2c0edbcb5 100644 --- a/nuttx/configs/z16f2800100zcog/README.txt +++ b/nuttx/configs/z16f2800100zcog/README.txt @@ -49,6 +49,14 @@ Version 4.11.1 81400 and 81459 or not. It is unknown if the code will run without -reduceopt either. (Basically, it compiles with 4.11.1, but is untested with that version). +Version 4.12.0 + + Never tested + +Version 5.0.0 + + Never tested + Version 5.0.1 On November 29, 2012, all of the z16f configurations were converted to use 5.0.1, -- cgit v1.2.3