Shipwright/soh/src/libultra/os/sendmesg.c
M4xw 39cc86c260 git subrepo clone https://github.com/HarbourMasters/soh.git
subrepo:
  subdir:   "soh"
  merged:   "ba904bbd0"
upstream:
  origin:   "https://github.com/HarbourMasters/soh.git"
  branch:   "master"
  commit:   "ba904bbd0"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
2022-03-22 02:51:23 +01:00

29 lines
664 B
C

#include "global.h"
s32 osSendMesg(OSMesgQueue* mq, OSMesg mesg, s32 flag) {
register u32 prevInt = __osDisableInt();
register u32 index;
while (mq->validCount >= mq->msgCount) {
if (flag == OS_MESG_BLOCK) {
__osRunningThread->state = 8;
__osEnqueueAndYield(&mq->fullqueue);
} else {
__osRestoreInt(prevInt);
return -1;
}
}
index = (mq->first + mq->validCount) % mq->msgCount;
mq->msg[index] = mesg;
mq->validCount++;
if (mq->mtqueue->next != NULL) {
osStartThread(__osPopThread(&mq->mtqueue));
}
__osRestoreInt(prevInt);
return 0;
}