plan 9 kernel history: overview | file list | diff list

1992/0207/gnot/segment.h (diff list | history)

1991/0705/sys/src/9/gnot/segment.h:12,201992/0207/sys/src/9/gnot/segment.h:12,20 (short | long | prev | next)
1991/0705    
	Page	*(*pgalloc)(ulong);	/* Allocation if we need it */ 
	void	(*pgfree)(Page*); 
}physseg[] = { 
	{ SG_SHARED,	"lock",		0,	SEGMAXSIZE,	&snewpage, 	&putpage }, 
	{ SG_SHARED,	"shared",	0,	SEGMAXSIZE,	&snewpage, 	&putpage }, 
1992/0207    
	{ SG_SHARED,	"lock",		0,	SEGMAXSIZE,	snewpage, 	putpage }, 
	{ SG_SHARED,	"shared",	0,	SEGMAXSIZE,	snewpage, 	putpage }, 
1991/0705    
	{ SG_PHYSICAL,	"kmem",		KZERO,	SEGMAXSIZE,	0,		0 	}, 
	{ SG_BSS,	"memory",	0,	SEGMAXSIZE,	&snewpage,	&putpage }, 
1992/0207    
	{ SG_BSS,	"memory",	0,	SEGMAXSIZE,	snewpage,	putpage }, 
1991/0705    
	{ 0,		0,		0,	0,		0,		0 	}, 
}; 


source code copyright © 1990-2005 Lucent Technologies; see license
Plan 9 distribution
comments to russ cox (rsc@swtch.com)