remap_file_pages.c 390 B

12345678910111213141516
  1. /*
  2. * remap_file_pages() for uClibc
  3. *
  4. * Copyright (C) 2008 Will Newton <will.newton@imgtec.com>
  5. *
  6. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. */
  8. #include <sys/syscall.h>
  9. #ifdef __NR_remap_file_pages
  10. _syscall5(int, remap_file_pages, unsigned long, start, unsigned long, size,
  11. unsigned long, prot, unsigned long, pgoff, unsigned long, flags);
  12. #endif