view TaskManager/Cell/CellTaskManagerImpl.h @ 496:58240647b23b

PS3 double linked TaskQueue worked.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 10 Oct 2009 20:32:55 +0900
parents b4b8345b5366
children 4a2c9ff53605
line wrap: on
line source

#ifndef INCLUDED_CELL_TASK_MANAGER_IMPL
#define INCLUDED_CELL_TASK_MANAGER_IMPL

#include "TaskManagerImpl.h"
#include "FifoTaskManagerImpl.h"
#include "SpeThreads.h"

class CellTaskManagerImpl : public TaskManagerImpl {
public:
    /* constructor */
    CellTaskManagerImpl(int num = 1) : TaskManagerImpl(num) {}
    ~CellTaskManagerImpl(void);

    /* variables */
    TaskListPtr *speTaskList;
    TaskListPtr *speTaskList_bg;

    SpeThreads *speThreads;
    int *flag_sendTaskList;
    FifoTaskManagerImpl *ppeManager;

    /* functions */
    // system
    void init(void);
    void run(void);
    TaskListPtr mail_check(MailQueuePtr mail_list);
    void set_runTaskList(void);
    void append_activeTask(TaskQueuePtr);

    // user
    int add_data(ListDataPtr, uint32, int);
    void* allocate(int size);
    Scheduler* get_scheduler();

private:
    void send_taskList(int id);
};

#ifdef Cerium_malloc
#undef Cerium_malloc
#endif

#define Cerium_malloc(dest, align, size) \
    posix_memalign((void**)(dest), (align), (size))

#endif