Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Cell/spe/ShowTime.cc @ 802:496a8159e840
global id
author | yutaka@localhost.localdomain |
---|---|
date | Wed, 19 May 2010 14:59:41 +0900 |
parents | 3b6290c05f9f |
children | e015a4e5e4b0 |
rev | line source |
---|---|
507 | 1 #include "ShowTime.h" |
2 #include "stdio.h" | |
672 | 3 #include "SchedTask.h" |
507 | 4 |
5 SchedDefineTask(ShowTime); | |
6 | |
7 static int | |
8 run(SchedTask *smanager, void *rbuf, void *wbuf) | |
9 { | |
10 /* | |
11 * ここで show_dma_wait() を呼びたい | |
12 */ | |
13 smanager->show_dma_wait(); | |
14 //printf("Show Time !\n"); | |
15 | |
16 return 0; | |
17 } | |
18 |