Xinu7/src/serve11/sys/pinit.c
/* pinit.c - pinit */
#include <conf.h>
#include <kernel.h>
#include <mark.h>
#include <ports.h>
#ifdef MEMMARK
MARKER ptmark;
#endif
struct ptnode *ptfree; /* list of free queue nodes */
struct pt ports[NPORTS];
int ptnextp;
/*------------------------------------------------------------------------
* pinit -- initialize all ports
*------------------------------------------------------------------------
*/
SYSCALL pinit(maxmsgs)
int maxmsgs;
{
int i;
struct ptnode *next, *prev;
ptfree = (struct ptnode *) getmem(maxmsgs*sizeof(struct ptnode));
if ( (int)ptfree == SYSERR )
panic("pinit: no memory");
for (i=0 ; i<NPORTS ; i++) {
ports[i].ptstate = PTFREE;
ports[i].ptseq = 0;
}
ptnextp = NPORTS - 1;
/* link up free list of message pointer nodes */
for ( prev=next=ptfree ; --maxmsgs > 0 ; prev=next )
prev->ptnext = ++next;
prev->ptnext = (struct ptnode *)NULL;
return(OK);
}