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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
6b9883765f6a change show_time.cpp
e065746@localhost.localdomain
parents: 328
diff changeset
12 //printf("Show Time !\n");
326
fbd7337bf220 add test_render/{spe, task}/ShowTime.cpp but incomplete
aaa
parents:
diff changeset
13
fbd7337bf220 add test_render/{spe, task}/ShowTime.cpp but incomplete
aaa
parents:
diff changeset
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