ARM9 OS: Difference between revisions
Hallowizer (talk | contribs) created with info i found in the dsi system menu. note that "unknown" means I haven't found it, not that nobody knows. |
Hallowizer (talk | contribs) added OSMessageQueue |
||
| Line 53: | Line 53: | ||
struct OSThread *prev; | struct OSThread *prev; | ||
struct OSThread *next; | struct OSThread *next; | ||
} | |||
</pre> | |||
== Message queues == | |||
<pre> | |||
struct OSMessageQueue { | |||
struct OSThreadQueue waitForReceive; | |||
struct OSThreadQueue waitForSend; | |||
u32 *buf; | |||
u32 capacity; | |||
u32 rotation; | |||
u32 messagesEnqueued; | |||
} | } | ||
</pre> | </pre> | ||