Fix spelling, only one t in exiting
This commit is contained in:
parent
1909c44f87
commit
40972de8d7
@ -79,7 +79,7 @@ void _exit(int status)
|
|||||||
{
|
{
|
||||||
FAR struct tcb_s* tcb;
|
FAR struct tcb_s* tcb;
|
||||||
|
|
||||||
dbg("TCB=%p exitting\n", tcb);
|
dbg("TCB=%p exiting\n", tcb);
|
||||||
|
|
||||||
/* Disable interrupts. Interrupts will remain disabled until
|
/* Disable interrupts. Interrupts will remain disabled until
|
||||||
* the new task is resumed below when the save IE is restored.
|
* the new task is resumed below when the save IE is restored.
|
||||||
|
@ -144,7 +144,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(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)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
slldbg("Other tasks:\n");
|
slldbg("Other tasks:\n");
|
||||||
|
@ -144,7 +144,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(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)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
slldbg("Other tasks:\n");
|
slldbg("Other tasks:\n");
|
||||||
|
@ -144,7 +144,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(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)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
slldbg("Other tasks:\n");
|
slldbg("Other tasks:\n");
|
||||||
|
@ -146,7 +146,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(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)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
slldbg("Other tasks:\n");
|
slldbg("Other tasks:\n");
|
||||||
|
@ -145,7 +145,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(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)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
slldbg("Other tasks:\n");
|
slldbg("Other tasks:\n");
|
||||||
|
@ -78,7 +78,7 @@ void _exit(int status)
|
|||||||
{
|
{
|
||||||
struct tcb_s* tcb;
|
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. */
|
/* Destroy the task at the head of the ready to run list. */
|
||||||
|
|
||||||
|
@ -144,7 +144,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(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)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
slldbg("Other tasks:\n");
|
slldbg("Other tasks:\n");
|
||||||
|
@ -146,7 +146,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(void)irqsave();
|
||||||
|
|
||||||
slldbg("TCB=%p exitting\n", tcb);
|
slldbg("TCB=%p exiting\n", tcb);
|
||||||
|
|
||||||
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
lldbg("Other tasks:\n");
|
lldbg("Other tasks:\n");
|
||||||
|
@ -147,7 +147,7 @@ void _exit(int status)
|
|||||||
|
|
||||||
(void)irqsave();
|
(void)irqsave();
|
||||||
|
|
||||||
slldbg("TCB=%p exitting\n", tcb);
|
slldbg("TCB=%p exiting\n", tcb);
|
||||||
|
|
||||||
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
#if defined(CONFIG_DUMP_ON_EXIT) && defined(CONFIG_DEBUG)
|
||||||
lldbg("Other tasks:\n");
|
lldbg("Other tasks:\n");
|
||||||
|
@ -49,6 +49,14 @@ Version 4.11.1
|
|||||||
81400 and 81459 or not. It is unknown if the code will run without -reduceopt
|
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).
|
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
|
Version 5.0.1
|
||||||
|
|
||||||
On November 29, 2012, all of the z16f configurations were converted to use 5.0.1,
|
On November 29, 2012, all of the z16f configurations were converted to use 5.0.1,
|
||||||
|
Loading…
Reference in New Issue
Block a user