]> Zhao Yanbai Git Server - minix.git/commitdiff
Actually remove allocmem and freemem sources from the library.
authorPhilip Homburg <philip@cs.vu.nl>
Fri, 19 May 2006 12:45:55 +0000 (12:45 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Fri, 19 May 2006 12:45:55 +0000 (12:45 +0000)
lib/other/_allocmem.c [deleted file]
lib/other/_freemem.c [deleted file]
lib/syscall/allocmem.s [deleted file]
lib/syscall/freemem.s [deleted file]

diff --git a/lib/other/_allocmem.c b/lib/other/_allocmem.c
deleted file mode 100644 (file)
index 4887e76..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <lib.h>
-#define allocmem       _allocmem
-#include <unistd.h>
-
-
-PUBLIC int allocmem(size, base)
-phys_bytes size;                       /* size of mem chunk requested */
-phys_bytes *base;                      /* return base address */
-{
-  message m;
-  m.m4_l1 = size;              
-  if (_syscall(MM, ALLOCMEM, &m) < 0) return(-1);
-  *base = m.m4_l2;
-  return(0);
-}
-
diff --git a/lib/other/_freemem.c b/lib/other/_freemem.c
deleted file mode 100644 (file)
index d0c4eee..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <lib.h>
-#define freemem        _freemem
-#include <unistd.h>
-
-
-PUBLIC int freemem(size, base)
-phys_bytes size;                       /* size of mem chunk requested */
-phys_bytes base;                       /* base address of mem chunk */
-{
-  message m;
-  m.m4_l1 = size;              
-  m.m4_l2 = base;              
-  if (_syscall(MM, FREEMEM, &m) < 0) return(-1);
-  return(0);
-}
-
diff --git a/lib/syscall/allocmem.s b/lib/syscall/allocmem.s
deleted file mode 100644 (file)
index f5cdd44..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.sect .text
-.extern        __allocmem
-.define        _allocmem
-.align 2
-
-_allocmem:
-       jmp     __allocmem
diff --git a/lib/syscall/freemem.s b/lib/syscall/freemem.s
deleted file mode 100644 (file)
index 24434ac..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.sect .text
-.extern        __freemem
-.define        _freemem
-.align 2
-
-_freemem:
-       jmp     __freemem