comparison TaskManager/Test/test_render/task/task_init.cc @ 419:9348e49f63cf

merge
author Hiroki NAKASONE <hiroki@cr.ie.u-ryukyu.ac.jp>
date Wed, 23 Sep 2009 21:24:38 +0900
parents 475a01e217cd a71cc69f2343
children bd5b93d39597
comparison
equal deleted inserted replaced
417:475a01e217cd 419:9348e49f63cf
20 SchedExternTask(Dummy); 20 SchedExternTask(Dummy);
21 21
22 SchedExternTask(ShowTime); 22 SchedExternTask(ShowTime);
23 SchedExternTask(ChainMove); 23 SchedExternTask(ChainMove);
24 SchedExternTask(SendKey); 24 SchedExternTask(SendKey);
25
25 SchedExternTask(UpdateKey); 26 SchedExternTask(UpdateKey);
26 SchedExternTask(InitKey); 27 SchedExternTask(InitKey);
28
29 SchedExternTask(ChainMove);
30 SchedExternTask(Switch);
31
27 32
28 /** 33 /**
29 * set_cpu(CPU_PPE) で動作する task 34 * set_cpu(CPU_PPE) で動作する task
30 */ 35 */
31 void 36 void
51 56
52 SchedRegisterTask(UPDATE_KEY, UpdateKey); 57 SchedRegisterTask(UPDATE_KEY, UpdateKey);
53 SchedRegisterTask(INIT_KEY_TASK, InitKey); 58 SchedRegisterTask(INIT_KEY_TASK, InitKey);
54 59
55 SchedRegisterTask(SHOW_TIME, ShowTime); 60 SchedRegisterTask(SHOW_TIME, ShowTime);
61 SchedRegisterTask(TASK_SWITCH, Switch);
56 62
57 // usr 63 // usr
58 SchedRegisterTask(CHAIN_MOVE, ChainMove); 64 SchedRegisterTask(CHAIN_MOVE, ChainMove);
59 } 65 }