_mmap.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Copyright (C) 2001 Hewlett-Packard
  2. This program is free software; you can redistribute it and/or modify it under
  3. the terms of the GNU Library General Public License as published by the Free
  4. Software Foundation; either version 2 of the License, or (at your option) any
  5. later version.
  6. This program is distributed in the hope that it will be useful, but WITHOUT
  7. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  8. FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  9. details.
  10. You should have received a copy of the GNU Library General Public License
  11. along with this program; if not, write to the Free Software Foundation, Inc.,
  12. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  13. Derived in part from the Linux-8086 C library, the GNU C Library, and several
  14. other sundry sources. Files within this library are copyright by their
  15. respective copyright holders.
  16. */
  17. #include <unistd.h>
  18. #include <errno.h>
  19. #include <sys/mman.h>
  20. #include <sys/syscall.h>
  21. #ifdef HIOS
  22. #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5, type6,arg6) \
  23. type name (type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6) \
  24. { \
  25. register long __sc3 __asm__ ("r3") = __NR_##name; \
  26. register long __sc4 __asm__ ("r4") = (long) arg1; \
  27. register long __sc5 __asm__ ("r5") = (long) arg2; \
  28. register long __sc6 __asm__ ("r6") = (long) arg3; \
  29. register long __sc7 __asm__ ("r7") = (long) arg4; \
  30. register long __sc0 __asm__ ("r0") = (long) arg5; \
  31. register long __sc1 __asm__ ("r1") = (long) arg6; \
  32. __asm__ __volatile__ ("trapa #0x2E" \
  33. : "=z" (__sc0) \
  34. : "0" (__sc0), "r" (__sc4), "r" (__sc5), "r" (__sc6), "r" (__sc7), \
  35. "r" (__sc3), "r" (__sc1) \
  36. : "memory" ); \
  37. __syscall_return(type,__sc0); \
  38. }
  39. #else // HIOS
  40. #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5, type6,arg6) \
  41. type name (type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6) \
  42. { \
  43. register long __sc3 __asm__ ("r3") = __NR_##name; \
  44. register long __sc4 __asm__ ("r4") = (long) arg1; \
  45. register long __sc5 __asm__ ("r5") = (long) arg2; \
  46. register long __sc6 __asm__ ("r6") = (long) arg3; \
  47. register long __sc7 __asm__ ("r7") = (long) arg4; \
  48. register long __sc0 __asm__ ("r0") = (long) arg5; \
  49. register long __sc1 __asm__ ("r1") = (long) arg6; \
  50. __asm__ __volatile__ ("trapa #0x15" \
  51. : "=z" (__sc0) \
  52. : "0" (__sc0), "r" (__sc4), "r" (__sc5), "r" (__sc6), "r" (__sc7), \
  53. "r" (__sc3), "r" (__sc1) \
  54. : "memory" ); \
  55. __syscall_return(type,__sc0); \
  56. }
  57. #endif // HIOS
  58. _syscall6(__ptr_t, mmap, __ptr_t, addr, size_t, len, int, prot, int, flags, int, fd, __off_t, offset);