for compatability with older images.

This commit is contained in:
Ben Gras 2008-12-11 15:50:33 +00:00
parent 5db1a042c2
commit 6009642110

View file

@ -2,6 +2,15 @@
sys/vm.h
*/
/* MIOCMAP */
struct mapreq
{
void *base;
size_t size;
off_t offset;
int readonly;
};
/* used in ioctl to tty for mapvm map and unmap request. */
struct mapreqvm
{