view include/TaskManager/FifoTaskInfo.h @ 3:2356238ebea7

*** empty log message ***
author gongo
date Tue, 05 Feb 2008 20:22:50 +0900
parents
children 7aa4c006e4be
line wrap: on
line source

#ifndef INCLUDED_FIFO_TASK_INFO
#define INCLUDED_FIFO_TASK_INFO

#ifndef INCLUDED_TASK_INFO
#  include "TaskInfo.h"
#endif

class FifoTaskInfo : public TaskInfo {
public:
    /* function */
    void init(void);
    int extend_pool_taskList(int num);
    TaskListPtr get_available_taskList(void);
    void clear_taskList(void);

    /* variables */
    TaskListPtr machineTaskList;
};

#endif