view TaskManager/Cell/spe/MailQueue.h @ 1015:80b18af207c2

debug mail timing.
author yutaka@localhost.localdomain
date Fri, 05 Nov 2010 22:25:33 +0900
parents c67379f9d411
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