summaryrefslogtreecommitdiff
path: root/devio/mem.h
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-04-05 00:54:58 +0000
committerMiles Bader <miles@gnu.org>1995-04-05 00:54:58 +0000
commit28630f6da0ab09f1a87852b7221f7b99bc2ef21c (patch)
treebbec9dc8f3c59b5dba5f7f9ef48a524d916923b7 /devio/mem.h
parent5360e84d14494a6bc105edca255dcd3afe327848 (diff)
Initial revision
Diffstat (limited to 'devio/mem.h')
-rw-r--r--devio/mem.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/devio/mem.h b/devio/mem.h
new file mode 100644
index 00000000..e19b590c
--- /dev/null
+++ b/devio/mem.h
@@ -0,0 +1,33 @@
+/* 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);