Update mmap, munmap stubs to match new prototypes.
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 24 Mar 2005 06:37:53 +0000 (06:37 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 24 Mar 2005 06:37:53 +0000 (06:37 +0000)
src/lib/user/syscall.c

index aaeb109314775c49f626e3bf9b27445a96d93416..b6120fd154227f9301dd029412c015e2156bf10a 100644 (file)
@@ -141,16 +141,16 @@ close (int fd)
   syscall1 (SYS_close, fd);
 }
 
-bool
-mmap (int fd, void *addr, unsigned length)
+mapid_t
+mmap (int fd, void *addr)
 {
-  return syscall3 (SYS_mmap, fd, addr, length);
+  return syscall2 (SYS_mmap, fd, addr);
 }
 
 bool
-munmap (void *addr, unsigned length)
+munmap (mapid_t mapid)
 {
-  return syscall2 (SYS_munmap, addr, length);
+  return syscall1 (SYS_munmap, mapid);
 }
 
 bool