Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/ppe/ExportTaskLog.h @ 1602:e33e106ca3e0 draft
change default make parallel from fifo
author | Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 06 Apr 2013 17:27:30 +0900 |
parents | f578c190a661 |
children |
rev | line source |
---|---|
1430 | 1 #ifndef included_exporttasklog |
2 #define included_exporttasklog | |
3 | |
4 #include <stdio.h> | |
5 #include "TaskLog.h" | |
6 #include "QueueInfo.h" | |
7 | |
8 class ExportTaskLog { | |
9 public: | |
10 ExportTaskLog(QueueInfo<TaskLog> *_tasklog); | |
11 virtual ~ExportTaskLog(); | |
12 | |
13 public: | |
14 void open(); | |
15 void printOut(); | |
16 void close(); | |
17 | |
18 private: | |
19 QueueInfo<TaskLog> *tasklog; | |
20 FILE *fp; | |
21 | |
22 static const char* const FILENAME; | |
23 | |
24 }; | |
25 | |
26 | |
27 | |
28 #endif |