xref: /original-bsd/sys/sys/map.h (revision d25e1985)
1 /*	map.h	3.3	07/01/80	*/
2 
3 /*
4  * Resource Allocation Maps
5  */
6 struct map
7 {
8 	int	m_size;
9 	int	m_addr;
10 };
11 
12 #ifdef KERNEL
13 struct	map swapmap[SMAPSIZ];	/* space for swap allocation */
14 #define	AMAPSIZ	25
15 struct	map argmap[AMAPSIZ];
16 
17 struct	map kernelmap[NPROC];	/* space for kernel map for user page tables */
18 #endif
19