From 40972de8d7d5aaa339c40cf4ab5237978c39cffa Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 27 Apr 2014 15:49:38 -0600 Subject: [PATCH] Fix spelling, only one t in exiting --- arch/8051/src/up_exit.c | 2 +- arch/arm/src/common/up_exit.c | 2 +- arch/avr/src/common/up_exit.c | 2 +- arch/hc/src/common/up_exit.c | 2 +- arch/mips/src/common/up_exit.c | 2 +- arch/sh/src/common/up_exit.c | 2 +- arch/sim/src/up_exit.c | 2 +- arch/x86/src/common/up_exit.c | 2 +- arch/z16/src/common/up_exit.c | 2 +- arch/z80/src/common/up_exit.c | 2 +- configs/z16f2800100zcog/README.txt | 8 ++++++++ 11 files changed, 18 insertions(+), 10 deletions(-) diff --git a/arch/8051/src/up_exit.c b/arch/8051/src/up_exit.c index 31d8c99ab7..235eb691fb 100644 --- a/arch/8051/src/up_exit.c +++ b/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/arch/arm/src/common/up_exit.c b/arch/arm/src/common/up_exit.c index 34dc3138ae..37b603e505 100644 --- a/arch/arm/src/common/up_exit.c +++ b/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/arch/avr/src/common/up_exit.c b/arch/avr/src/common/up_exit.c index d2a4f85a98..355163359e 100644 --- a/arch/avr/src/common/up_exit.c +++ b/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/arch/hc/src/common/up_exit.c b/arch/hc/src/common/up_exit.c index e015cf1d52..7fa526ff72 100644 --- a/arch/hc/src/common/up_exit.c +++ b/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/arch/mips/src/common/up_exit.c b/arch/mips/src/common/up_exit.c index 41fe57a6d9..415ca64eee 100644 --- a/arch/mips/src/common/up_exit.c +++ b/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/arch/sh/src/common/up_exit.c b/arch/sh/src/common/up_exit.c index d7de0154cd..d4669caf47 100644 --- a/arch/sh/src/common/up_exit.c +++ b/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/arch/sim/src/up_exit.c b/arch/sim/src/up_exit.c index 7d7d4d0411..f4c91e544a 100644 --- a/arch/sim/src/up_exit.c +++ b/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/arch/x86/src/common/up_exit.c b/arch/x86/src/common/up_exit.c index 424a89f4f1..ad1ec41c61 100644 --- a/arch/x86/src/common/up_exit.c +++ b/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/arch/z16/src/common/up_exit.c b/arch/z16/src/common/up_exit.c index 6f118fe249..c578a3bfed 100644 --- a/arch/z16/src/common/up_exit.c +++ b/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/arch/z80/src/common/up_exit.c b/arch/z80/src/common/up_exit.c index d38e4fb030..50d675f96e 100644 --- a/arch/z80/src/common/up_exit.c +++ b/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/configs/z16f2800100zcog/README.txt b/configs/z16f2800100zcog/README.txt index c999b9d63b..2c0edbcb5a 100644 --- a/configs/z16f2800100zcog/README.txt +++ b/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,