9
0
Fork 0

Fix spelling, only one t in exiting

This commit is contained in:
Gregory Nutt 2014-04-27 15:49:38 -06:00
parent 53db27bef8
commit ed8c667da4
11 changed files with 18 additions and 10 deletions

View File

@ -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.

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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. */

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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,