annotate TaskManager/kernel/ppe/HTask.h @ 498:cb5ecfc5aaa3

double linked HTaskInfo/HTask
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 11 Oct 2009 11:46:41 +0900
parents 46464727d825
children eacbcdb23986
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
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
9 class TaskManagerImpl;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
10
293
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
11 /*!
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
12 @class
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
13
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
14 @brief
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
15
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
16 Cerium の Task で、spawn() でキューに格納されて順次実行される。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
17 cpu の指定があれば並列に実行される。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
18 特定の Task を待ち合わせる事が可能。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
19 Task の入出力は dma などで copy される。
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
20 */
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
21
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
22 class HTask : public Task {
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
23 public:
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
24 BASE_NEW_DELETE(HTask);
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
25
479
5bda98b0b56d Double Linked List base TaskQueue
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 397
diff changeset
26 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
27 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
28 void (*post_func)(void *arg);
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
29 void *post_arg;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
30 CPU_TYPE cpu_type;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
31 TaskManagerImpl *mimpl;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
32
498
cb5ecfc5aaa3 double linked HTaskInfo/HTask
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 480
diff changeset
33 Task *task;
cb5ecfc5aaa3 double linked HTaskInfo/HTask
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 480
diff changeset
34 HTask *waiter;
cb5ecfc5aaa3 double linked HTaskInfo/HTask
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 480
diff changeset
35 HTask *next;
cb5ecfc5aaa3 double linked HTaskInfo/HTask
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 480
diff changeset
36 HTask *prev;
cb5ecfc5aaa3 double linked HTaskInfo/HTask
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 480
diff changeset
37
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
38 void spawn(void);
293
9f4f99d459aa add wait_for document
e065746@localhost.localdomain
parents: 109
diff changeset
39 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
40 void set_cpu(CPU_TYPE type);
109
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
41 void set_post(void (*func)(void *), void *arg);
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
42 };
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
43
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
44 typedef HTask* HTaskPtr;
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
45
5c194c71eca8 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
46 #endif