blob: a3a8b33dd17445a005baf751893485c7602c5f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef DSP_TASK_H
#define DSP_TASK_H
#include "dolphin/dsp.h"
extern DSPTaskInfo* __DSP_tmp_task;
extern DSPTaskInfo* __DSP_last_task;
extern DSPTaskInfo* __DSP_first_task;
extern DSPTaskInfo* __DSP_curr_task;
#ifdef __cplusplus
extern "C" {
#endif
void __DSP_boot_task(DSPTaskInfo* task);
void __DSP_insert_task(DSPTaskInfo* task);
void __DSP_exec_task(DSPTaskInfo* curr, DSPTaskInfo* next);
void __DSP_remove_task(DSPTaskInfo* task);
#ifdef __cplusplus
}
#endif
#endif /* DSP_TASK_H */
|