summaryrefslogtreecommitdiff
path: root/lib/ultralib/src/os/createmesgqueue.c
blob: 4e71cba45571e161df25dfba5be0f0296d00f06f (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "PR/os_internal.h"
#include "osint.h"

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