MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / __DSP_add_task

Function __DSP_add_task

src/dolphin/src/dsp/dsp_task.c:429–444  ·  view source on GitHub ↗

Unused, but close enough.

Source from the content-addressed store, hash-verified

427
428// Unused, but close enough.
429void __DSP_add_task(DSPTaskInfo* task)
430{
431 if (__DSP_last_task == NULL)
432 {
433 __DSP_first_task = __DSP_last_task = __DSP_curr_task = task;
434 task->next = task->prev = NULL;
435 }
436 else
437 {
438 __DSP_last_task->next = task;
439 task->next = NULL;
440 task->prev = __DSP_last_task;
441 __DSP_last_task = task;
442 }
443 __DSP_debug_printf("__DSP_add_task() : Added task : 0x%08X\n", (u32)(task->next));
444}

Callers

nothing calls this directly

Calls 1

__DSP_debug_printfFunction · 0.85

Tested by

no test coverage detected