summaryrefslogtreecommitdiff
path: root/devio/mem.h
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-06-17 04:05:45 +0000
committerMiles Bader <miles@gnu.org>1997-06-17 04:05:45 +0000
commit640552eff1b6a77315124b36788cf45e4ed350c8 (patch)
treecafb2e3c89c9614a84afc5e631eace0248b03fa4 /devio/mem.h
parent98635d194cc2399e53f8b4d8677f468765a9aef8 (diff)
Replaced by storeio.
Diffstat (limited to 'devio/mem.h')
-rw-r--r--devio/mem.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/devio/mem.h b/devio/mem.h
deleted file mode 100644
index e19b590c..00000000
--- a/devio/mem.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Some random handy memory ops that know about VM.
-
- Copyright (C) 1995 Free Software Foundation, Inc.
-
- Written by Miles Bader <miles@gnu.ai.mit.edu>
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License as
- published by the Free Software Foundation; either version 2, or (at
- your option) any later version.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-/* For bcopy &c. */
-#include <string.h>
-
-/* Makes sure that BUF, points to a buffer with AMOUNT bytes available.
- *BUF_LEN should be the current length of *BUF, and if this isn't enough to
- hold AMOUNT bytes, then more is allocated and the new buffer is returned
- in *BUF and *BUF_LEN. If a memory allocation error occurs, the error code
- is returned, otherwise 0. */
-error_t allocate(vm_address_t *buf, vm_size_t *buf_len, vm_size_t amount);
-
-/* Deallocates any pages entirely within the last EXCESS bytes of the BUF_LEN
- long buffer, BUF. */
-error_t deallocate_excess(vm_address_t buf, vm_size_t buf_len, vm_size_t excess);