Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/ppe/ExportTaskLog.h @ 1553:21ddbc06dcde draft
fix GpuScheduler
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 17 Feb 2013 19:42:36 +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 |