|
|
Xinu for 68000/68010
/* recvclr.c - recvclr */
#include <conf.h>
#include <kernel.h>
#include <proc.h>
/*------------------------------------------------------------------------
* recvclr -- clear messages, returning waiting message (if any)
*------------------------------------------------------------------------
*/
SYSCALL recvclr()
{
WORD msg;
disable();
if (proctab[currpid].phasmsg) {
proctab[currpid].phasmsg = 0;
msg = proctab[currpid].pmsg;
} else
msg = OK;
restore();
return(msg);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.