diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-07-03 23:51:02 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-07-03 23:51:02 +0000 |
commit | f3e41afcc2e04bad2016382f70c4f4c066dc9ded (patch) | |
tree | bdcdc49f25b84f84648561873ffcd6866ceee6e7 /libpager/pager.h | |
parent | 9453e9c4b42441016d4cb7c9830750a5bd5d84ad (diff) | |
download | hurd-f3e41afcc2e04bad2016382f70c4f4c066dc9ded.tar.gz hurd-f3e41afcc2e04bad2016382f70c4f4c066dc9ded.tar.bz2 hurd-f3e41afcc2e04bad2016382f70c4f4c066dc9ded.zip |
1999-07-03 Thomas Bushnell, BSG <tb@mit.edu>
* data-return.c (_pager_do_write_request): Use munmap instead of
vm_deallocate.
* object-terminate.c (_pager_free_structure): Likewise.
* pagemap.c (_pager_pagemap_resize): Likewise.
* pager-memcpy.c (pager_memcpy): Likewise.
* pager.h (pager_write_page): Doc adjustment.
Diffstat (limited to 'libpager/pager.h')
-rw-r--r-- | libpager/pager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpager/pager.h b/libpager/pager.h index cec7f8e7..d3f1162c 100644 --- a/libpager/pager.h +++ b/libpager/pager.h @@ -1,5 +1,5 @@ /* Definitions for multi-threaded pager library - Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -159,7 +159,7 @@ pager_read_page (struct user_pager_info *pager, int *write_lock); /* The user must define this function. For pager PAGER, synchronously - write one page from BUF to offset PAGE. In addition, vm_deallocate + write one page from BUF to offset PAGE. In addition, mfree (or equivalent) BUF. The only permissable error returns are EIO, EDQUOT, and ENOSPC. */ error_t |