vm_map.h

Bruno Lauzé brunolauze at msn.com
Wed Mar 12 21:14:35 UTC 2014


The two defines in vm/vm_map.h 

#define min_offset   header.start    /* (c) */
#define max_offset   header.end      /* (c) */


are really getting in the way because those words are most likely to be used downstream.

I would suggest renaming those defines to:

#define vm_min_offset   header.start    /* (c) */
#define vm_max_offset   header.end      /* (c) */

Am I missing something? 		 	   		  


More information about the freebsd-current mailing list