Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

Commit 204c9fd

Browse files
committed
del irq dump from task.c
1 parent 7b9f459 commit 204c9fd

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/kernel/task/multi_task.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -387,12 +387,6 @@ void task_schedule(void) {
387387

388388
irq_restore(flags);
389389

390-
/* 非 IRQ コンテキストでトレースバッファをダンプ(必要なら) */
391-
extern void irq_trace_dump(void);
392-
if (next_task == &idle_task) {
393-
irq_trace_dump();
394-
}
395-
396390
// コンテキストスイッチ(異なるタスクの場合のみ)
397391
if (old_task != next_task) {
398392
task_switch(&old_task->regs, &next_task->regs);

0 commit comments

Comments
 (0)