Mercurial > hg > Game > Cerium
view 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 |
line wrap: on
line source
#ifndef included_exporttasklog #define included_exporttasklog #include <stdio.h> #include "TaskLog.h" #include "QueueInfo.h" class ExportTaskLog { public: ExportTaskLog(QueueInfo<TaskLog> *_tasklog); virtual ~ExportTaskLog(); public: void open(); void printOut(); void close(); private: QueueInfo<TaskLog> *tasklog; FILE *fp; static const char* const FILENAME; }; #endif