blob: 7935f2fcb4e996bb212196abf953352c606d54f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#include <revolution.h>
#include <revolution/os.h>
void OSInitMessageQueue(OSMessageQueue* mq, void* msgArray, s32 msgCount) {
OSInitThreadQueue(&mq->queueSend);
OSInitThreadQueue(&mq->queueReceive);
mq->msgArray = msgArray;
mq->msgCount = msgCount;
mq->firstIndex = 0;
mq->usedCount = 0;
}
int OSSendMessage(OSMessageQueue* mq, void* msg, s32 flags) {
BOOL enabled;
s32 lastIndex;
enabled = OSDisableInterrupts();
while(mq->msgCount <= mq->usedCount) {
if (!(flags & 1)) {
OSRestoreInterrupts(enabled);
return 0;
}
OSSleepThread(&mq->queueSend);
}
lastIndex = (mq->firstIndex + mq->usedCount) % mq->msgCount;
((u32*)mq->msgArray)[lastIndex] = (u32)msg;
mq->usedCount++;
OSWakeupThread(&mq->queueReceive);
OSRestoreInterrupts(enabled);
return 1;
}
int OSReceiveMessage(OSMessageQueue* mq, void* msg, s32 flags) {
BOOL enabled = OSDisableInterrupts();
while(mq->usedCount == 0) {
if (!(flags & 1)) {
OSRestoreInterrupts(enabled);
return 0;
}
OSSleepThread(&mq->queueReceive);
}
if(msg != NULL) {
*(u32*)msg = ((u32*)mq->msgArray)[mq->firstIndex];
}
mq->firstIndex = (mq->firstIndex + 1) % mq->msgCount;
mq->usedCount--;
OSWakeupThread(&mq->queueSend);
OSRestoreInterrupts(enabled);
return 1;
}
int OSJamMessage(OSMessageQueue* mq, void* msg, s32 flags) {
BOOL enabled = OSDisableInterrupts();
while(mq->msgCount <= mq->usedCount) {
if(!(flags & 1)) {
OSRestoreInterrupts(enabled);
return 0;
}
OSSleepThread(&mq->queueSend);
}
mq->firstIndex = (mq->firstIndex + mq->msgCount - 1) % mq->msgCount;
((u32*)mq->msgArray)[mq->firstIndex] = (u32)msg;
mq->usedCount++;
OSWakeupThread(&mq->queueReceive);
OSRestoreInterrupts(enabled);
return 1;
}
|