diff options
author | Roland McGrath <roland@gnu.org> | 1999-07-11 01:43:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-07-11 01:43:00 +0000 |
commit | ae9742d818167edba0609ca0a63e4c6d1dabfcdb (patch) | |
tree | fed0ffd35b39e4ae30cbb96a3295d83db2a734fc /ufs | |
parent | 2112c5aebddcc9b15a7c8a5ca2cdc0b848d92eb0 (diff) |
1999-07-10 Roland McGrath <roland@baalperazim.frob.com>
* ufs.h: Add #include <sys/mman.h> for munmap decl.
Diffstat (limited to 'ufs')
-rw-r--r-- | ufs/ufs.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation + Copyright (C) 1994, 1995, 1996, 1997, 1999 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -17,11 +17,13 @@ #include <mach.h> #include <hurd.h> +#include <sys/mman.h> #include <hurd/ports.h> #include <hurd/pager.h> #include <hurd/fshelp.h> #include <hurd/iohelp.h> #include <hurd/diskfs.h> +#include <sys/mman.h> #include <assert.h> #include "fs.h" #include "dinode.h" @@ -81,7 +83,7 @@ struct user_pager_info } type; struct pager *p; vm_prot_t max_prot; - + vm_offset_t allow_unlocked_pagein; vm_size_t unlocked_pagein_length; }; @@ -223,7 +225,7 @@ swab_long_long (long long arg) abort (); \ ret; \ }) - + /* Execute A = B, but byteswap it along the way if necessary */ #define write_disk_entry(a,b) \ ({ \ |