summaryrefslogtreecommitdiff
path: root/userland/libc/sys/mman/mmap.c
blob: b9ad3a2b152b24d6cb4dadbc7296f2fd5559c0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <syscall.h>
#include <errno.h>
#include <sys/mman.h>

extern int errno;

void *mmap(void *addr, size_t length, int prot, int flags, int fd,
           size_t offset) {
  SYS_MMAP_PARAMS args = {
      .addr = addr,
      .length = length,
      .prot = prot,
      .flags = flags,
      .fd = fd,
      .offset = offset,
  };
//  return (void*)syscall(SYS_MMAP, &args, 0, 0, 0, 0);
  RC_ERRNO(syscall(SYS_MMAP, &args, 0, 0, 0, 0));
}