view TaskManager/Cell/spe/MailQueue.h @ 1009:c67379f9d411

not yet....
author yutaka@localhost.localdomain
date Thu, 28 Oct 2010 13:00:51 +0900
parents b48fffbba5fc
children
line wrap: on
line source

#ifndef INCLUDED_MAILQUEUE
#define INCLUDED_MAILQUEUE

class MailQueue {
public:
    memaddr data;
    MailQueue *next; // 4 byte
    MailQueue *prev; // 4 byte
    MailQueue *waiter; // 4 byte

    void init() { data = 0; }
    void initOnce() {}
    void freeOnce() {}

} ;

typedef MailQueue* MailQueuePtr;

#endif