~kris/9p

9hist

e7bee5b0430fe2128d48ba43c16995cabe1cd0df — David du Colombier 31 years ago 4ed6f37
Plan 9 from Bell Labs 1995-06-16
1 files changed, 5 insertions(+), 5 deletions(-)

M port/alloc.c
M port/alloc.c => port/alloc.c +5 -5
@@ 83,7 83,7 @@ void
xinit(void)
{
	Hole *h, *eh;
	int up, np0, np1;
	int upages, np0, np1;

	eh = &xlists.hole[Nhole-1];
	for(h = xlists.hole; h < eh; h++)


@@ 91,8 91,8 @@ xinit(void)

	xlists.flist = xlists.hole;

	up = conf.upages;
	np1 = up;
	upages = conf.upages;
	np1 = upages;
	if(np1 > conf.npage1)
		np1 = conf.npage1;



@@ 100,9 100,9 @@ xinit(void)
	conf.npage1 -= np1;
	xhole(conf.base1, conf.npage1*BY2PG);
	conf.npage1 = conf.base1+(conf.npage1*BY2PG);
	up -= np1;
	upages -= np1;

	np0 = up;
	np0 = upages;
	if(np0 > conf.npage0)
		np0 = conf.npage0;