diff options
| author | John Dyson <dyson@FreeBSD.org> | 1998-01-22 17:30:44 +0000 |
|---|---|---|
| committer | John Dyson <dyson@FreeBSD.org> | 1998-01-22 17:30:44 +0000 |
| commit | 2d8acc0f4aee0ac81e6a065fad89c82c6237faf5 (patch) | |
| tree | 86c4ccabc14032118674f6622f05e65c86ec4467 /sys/miscfs | |
| parent | ececc3f031c06e3a96cfd45be2b7f25610452b82 (diff) | |
Notes
Diffstat (limited to 'sys/miscfs')
| -rw-r--r-- | sys/miscfs/procfs/procfs_mem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_mem.c b/sys/miscfs/procfs/procfs_mem.c index 1a9d6aba6598..c5ad55aa964d 100644 --- a/sys/miscfs/procfs/procfs_mem.c +++ b/sys/miscfs/procfs/procfs_mem.c @@ -37,7 +37,7 @@ * * @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94 * - * $Id: procfs_mem.c,v 1.26 1997/08/02 14:32:14 bde Exp $ + * $Id: procfs_mem.c,v 1.27 1997/08/12 04:34:28 sef Exp $ */ /* @@ -107,7 +107,7 @@ procfs_rwmem(p, uio) int page_offset; /* offset into page */ vm_map_entry_t out_entry; vm_prot_t out_prot; - boolean_t wired, single_use; + boolean_t wired; vm_pindex_t pindex; u_int len; vm_page_t m; @@ -180,7 +180,7 @@ procfs_rwmem(p, uio) tmap = map; error = vm_map_lookup(&tmap, pageno, reqprot, &out_entry, &object, &pindex, &out_prot, - &wired, &single_use); + &wired); if (error) { error = EFAULT; |
