|
|
Xinu for 68000/68010
/* pcreate.c - pcreate */
#include <conf.h>
#include <kernel.h>
#include <mark.h>
#include <ports.h>
/*------------------------------------------------------------------------
* pcreate -- create a port that allows "count" outstanding messages
*------------------------------------------------------------------------
*/
SYSCALL pcreate(count)
int count;
{
int i, p;
struct pt *ptptr;
#ifdef DEBUG
dotrace("pcreate", &count, 1);
#endif
if (count < 0)
return(SYSERR);
disable();
#ifdef MEMMARK
if (mark(ptmark) == OK)
pinit(MAXMSGS);
#endif
for (i=0 ; i<NPORTS ; i++) {
if ( (p=ptnextp--) <= 0)
ptnextp = NPORTS - 1;
if ( (ptptr= &ports[p])->ptstate == PTFREE) {
ptptr->ptstate = PTALLOC;
ptptr->ptssem = screate(count);
ptptr->ptrsem = screate(0);
ptptr->pthead = ptptr->pttail = (struct ptnode *)NULL;
ptptr->ptseq++;
ptptr->ptmaxcnt = count;
restore();
return(p);
}
}
restore();
return(SYSERR);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.