aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/vm/mmap.h
blob: 8c5638cf5c393a667c92d893997df36e7b7d2929 (plain)
1
2
3
4
5
6
7
8
#include "types.h"

struct proc;

long do_munmap(void *addr, size_t len);

long do_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t off,
             void **ret);