arch/: remove duplicated task exit logs
Newly added logging in `sched/task_exit.c` obsoletes the existing ones in `arch/up_exit()`, thus remove the latter to reduce duplications. Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
This commit is contained in:
parent
87c9a0ee76
commit
1e9434e2db
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -61,8 +61,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -60,8 +60,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -60,8 +60,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -58,8 +58,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", this_task());
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
||||
nxtask_exit();
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
(void)enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Update scheduler parameters */
|
||||
|
|
|
@ -61,8 +61,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -60,8 +60,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", this_task());
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -60,8 +60,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
|
@ -62,8 +62,6 @@ void up_exit(int status)
|
|||
|
||||
enter_critical_section();
|
||||
|
||||
sinfo("TCB=%p exiting\n", tcb);
|
||||
|
||||
nxsched_dumponexit();
|
||||
|
||||
/* Destroy the task at the head of the ready to run list. */
|
||||
|
|
Loading…
Reference in New Issue