annotate TaskManager/kernel/ppe/HTask.h @ 480:46464727d825

TaskQueueInfo initiaization...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 05 Oct 2009 12:24:07 +0900
parents 5bda98b0b56d
children cb5ecfc5aaa3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
1 #ifndef INCLUDED_HTASK
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
2 #define INCLUDED_HTASK
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
3
307
7075842aa155 clean up include
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 293
diff changeset
4 #include "base.h"
7075842aa155 clean up include
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 293
diff changeset
5 #include "types.h"
7075842aa155 clean up include
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 293
diff changeset
6 #include "Task.h"
7075842aa155 clean up include
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 293
diff changeset
7 #include "TaskQueueInfo.h"
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
8
479
5bda98b0b56d Double Linked List base TaskQueue
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 397
diff changeset
9 class TaskQueueInfo;
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
10 class TaskManagerImpl;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
11
293
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
12 /*!
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
13 @class
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
14
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
15 @brief
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
16
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
17 Cerium の Task で、spawn() でキューに格納されて順次実行される。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
18 cpu の指定があれば並列に実行される。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
19 特定の Task を待ち合わせる事が可能。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
20 Task の入出力は dma などで copy される。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
21 */
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
22
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
23 class HTask : public Task {
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
24 public:
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
25 BASE_NEW_DELETE(HTask);
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
26
479
5bda98b0b56d Double Linked List base TaskQueue
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 397
diff changeset
27 TaskQueueInfo *wait_me; // List of task waiting for me
5bda98b0b56d Double Linked List base TaskQueue
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 397
diff changeset
28 TaskQueueInfo *wait_i; // List of task for which I am waiting
397
a4f690f44842 delete manager (in kernel/ppe/TaskManager.h)
game@henri.cr.ie.u-ryukyu.ac.jp
parents: 366
diff changeset
29 void (*post_func)(void *arg);
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
30 void *post_arg;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
31 CPU_TYPE cpu_type;
480
46464727d825 TaskQueueInfo initiaization...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 479
diff changeset
32 HTask *next; // free list 用
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
33 TaskManagerImpl *mimpl;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
34
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
35 void spawn(void);
293
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
36 void wait_for(HTask *);
397
a4f690f44842 delete manager (in kernel/ppe/TaskManager.h)
game@henri.cr.ie.u-ryukyu.ac.jp
parents: 366
diff changeset
37 void set_cpu(CPU_TYPE type);
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
38 void set_post(void (*func)(void *), void *arg);
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
39 };
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
40
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
41 typedef HTask* HTaskPtr;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
42
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
43 #endif