view include/TaskManager/TaskList.h @ 301:bcb81858aa62

remove deprecated source. not work.
author tkaito@localhost.localdomain
date Sun, 07 Jun 2009 19:45:41 +0900
parents 59c3b9df3c67
children
line wrap: on
line source

#ifndef INCLUDED_TASKLIST
#define INCLUDED_TASKLIST

#include "base.h"
#include "Task.h"


// sizeof(Task)*TASK_MAX_SIZE = 512 byte
#define TASK_MAX_SIZE 16

class TaskList { // 528byte
public:
    BASE_NEW_DELETE(TaskList);

    int length; // 4 byte
    TaskList *next; // 4 byte
    Task tasks[TASK_MAX_SIZE]; // 512
    TaskList *output; // 4 byte
    int a[1]; // padding

    static TaskList* append(TaskList*, TaskList*);
};

typedef TaskList* TaskListPtr;

#endif