summaryrefslogtreecommitdiff
path: root/src/os/osCreateMesgQueue.c
blob: 865a49b2ba9a3688a1dec106dac5284a6950121c (plain)
1
2
3
4
5
6
7
8
9
10
#include "libultra_internal.h"

void osCreateMesgQueue(OSMesgQueue* mq, OSMesg* msgBuf, s32 count) {
    mq->mtqueue = (OSThread*) &__osThreadTail.next;
    mq->fullqueue = (OSThread*) &__osThreadTail.next;
    mq->validCount = 0;
    mq->first = 0;
    mq->msgCount = count;
    mq->msg = msgBuf;
}