summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/arm/mmap.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-12-16 04:24:22 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-12-16 04:24:22 +0000
commit8ed820548200d1ff5d99d3a27e53d46d531650f9 (patch)
treed25725da61430158fc028327be3b3e841e794dcd /libc/sysdeps/linux/arm/mmap.c
parent8eb00d632d242e94779851587f175f82eb8a14a4 (diff)
downloaduClibc-alpine-8ed820548200d1ff5d99d3a27e53d46d531650f9.tar.bz2
uClibc-alpine-8ed820548200d1ff5d99d3a27e53d46d531650f9.tar.xz
Copy from trunk.
Diffstat (limited to 'libc/sysdeps/linux/arm/mmap.c')
-rw-r--r--libc/sysdeps/linux/arm/mmap.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/mmap.c b/libc/sysdeps/linux/arm/mmap.c
new file mode 100644
index 000000000..4d01caadb
--- /dev/null
+++ b/libc/sysdeps/linux/arm/mmap.c
@@ -0,0 +1,30 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * _mmap() for uClibc
+ *
+ * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
+ *
+ * GNU Library General Public License (LGPL) version 2 or later.
+ */
+#include <errno.h>
+#include <unistd.h>
+#include <sys/mman.h>
+#include <sys/syscall.h>
+
+libc_hidden_proto (mmap)
+
+#if defined __ARM_EABI__
+#define __NR__mmap __NR_mmap2
+#else
+#define __NR__mmap __NR_mmap
+#endif
+static inline _syscall6 (__ptr_t, _mmap, __ptr_t, addr, size_t, len,
+ int, prot, int, flags, int, fd, __off_t, offset);
+
+__ptr_t mmap(__ptr_t addr, size_t len, int prot,
+ int flags, int fd, __off_t offset)
+{
+ return (__ptr_t) _mmap (addr, len, prot, flags, fd, offset);
+}
+
+libc_hidden_def (mmap)