svn commit: trunk/uClibc/libc/sysdeps/linux/arm
kraj at uclibc.org
kraj at uclibc.org
Sat Oct 7 22:22:51 UTC 2006
Author: kraj
Date: 2006-10-07 15:22:51 -0700 (Sat, 07 Oct 2006)
New Revision: 16341
Log:
Add the mmap.c missed out in the last commit.
Added:
trunk/uClibc/libc/sysdeps/linux/arm/mmap.c
Changeset:
Added: trunk/uClibc/libc/sysdeps/linux/arm/mmap.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/arm/mmap.c 2006-10-07 16:24:46 UTC (rev 16340)
+++ trunk/uClibc/libc/sysdeps/linux/arm/mmap.c 2006-10-07 22:22:51 UTC (rev 16341)
@@ -0,0 +1,30 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * _mmap() for uClibc
+ *
+ * Copyright (C) 2000-2004 by Erik Andersen <andersen at 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)
More information about the uClibc-cvs
mailing list