Mercurial > hg > Game > Cerium
view example/fileread/ppe/task_init.cc @ 1824:016746241fc7 draft
fix fileread
author | masakoha |
---|---|
date | Sat, 14 Dec 2013 18:31:15 +0900 |
parents | 797e3ec1ca74 |
children | 82c2b9eec625 |
line wrap: on
line source
#include "Func.h" #include "Scheduler.h" /* 必ずこの位置に書いて */ SchedExternTask(Read_task); SchedExternTask(Print_task); /** * この関数は ../spe/spe-main と違って * 自分で呼び出せばいい関数なので * 好きな関数名でおk (SchedRegisterTask は必須) */ void task_init(void) { SchedRegister(Read_task); SchedRegister(Print_task); }