109
|
1 #ifndef INCLUDED_HTASK
|
|
2 #define INCLUDED_HTASK
|
|
3
|
|
4 #ifndef INCLUDED_BASE_H_
|
|
5 # include "base.h"
|
|
6 #endif
|
|
7
|
|
8 #ifndef INCLUDED_TYPES
|
|
9 # include "types.h"
|
|
10 #endif
|
|
11
|
|
12 #ifndef INCLUDED_TASK
|
|
13 # include "Task.h"
|
|
14 #endif
|
|
15
|
|
16 #ifndef INCLUDED_TASK_QUEUE_INFO
|
|
17 # include "TaskQueueInfo.h"
|
|
18 #endif
|
|
19
|
|
20 class TaskManagerImpl;
|
|
21
|
293
|
22 /*!
|
|
23 @class
|
|
24
|
|
25 @brief
|
|
26
|
|
27 Cerium の Task で、spawn() でキューに格納されて順次実行される。
|
|
28 cpu の指定があれば並列に実行される。
|
|
29 特定の Task を待ち合わせる事が可能。
|
|
30 Task の入出力は dma などで copy される。
|
|
31 */
|
|
32
|
109
|
33 class HTask : public Task {
|
|
34 public:
|
|
35 BASE_NEW_DELETE(HTask);
|
|
36
|
|
37 TaskQueuePtr wait_me; // List of task waiting for me
|
|
38 TaskQueuePtr wait_i; // List of task for which I am waiting
|
|
39 void (*post_func)(void *);
|
|
40 void *post_arg;
|
|
41 CPU_TYPE cpu_type;
|
|
42 HTask *next;
|
|
43 TaskManagerImpl *mimpl;
|
|
44
|
|
45 void spawn(void);
|
293
|
46 void wait_for(HTask *);
|
109
|
47 void set_cpu(CPU_TYPE type);
|
|
48 void set_post(void (*func)(void *), void *arg);
|
|
49 };
|
|
50
|
|
51 typedef HTask* HTaskPtr;
|
|
52
|
|
53 #endif
|