Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/task/ShowTime.cpp @ 352:9738837c225c draft
add global_alloc.h
author | admin@mb22-no-macbook-2.local |
---|---|
date | Mon, 13 Jul 2009 19:25:10 +0900 |
parents | 6b9883765f6a |
children |
rev | line source |
---|---|
327
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
1 #include "ShowTime.h" |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
2 #include "stdio.h" |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
3 |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
4 SchedDefineTask(ShowTime); |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
5 |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
6 int |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
7 ShowTime::run(void *rbuf, void *wbuf) |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
8 { |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
9 /* |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
10 * ここで show_dma_wait() を呼びたい |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
11 */ |
335 | 12 //printf("Show Time !\n"); |
326 | 13 |
14 return 0; | |
327
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
15 } |
c8edba9cabb7
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
aaa
parents:
diff
changeset
|
16 |