From 5c12c8eecd5f2e06c200651e90befe85efcf166f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 11 Oct 2001 08:29:22 +0000 Subject: Patch from Miles Bader to support the v850. He sent this patch to me a month ago, but I forgot to apply it... --- libc/sysdeps/linux/common/syscalls.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common') diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index 05179548d..0d470db8c 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -2,7 +2,7 @@ /* * Syscalls for uClibc * - * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen + * Copyright (C) 2000, 2001 by Lineo, inc. Written by Erik Andersen * , * * This program is free software; you can redistribute it and/or modify it @@ -635,13 +635,16 @@ int reboot(int flag) //#define __NR_readdir 89 //#define __NR_mmap 90 -#ifdef L__mmap +#ifdef L_mmap #define __NR__mmap __NR_mmap #ifdef __STR_NR_mmap #define __STR_NR__mmap __STR_NR_mmap #endif #include #include + +#if __UCLIBC_OLD_STYLE_MMAP__ + extern __ptr_t _mmap(unsigned long *buffer); _syscall1(__ptr_t, _mmap, unsigned long *, buffer); @@ -659,6 +662,15 @@ __ptr_t mmap(__ptr_t addr, size_t len, int prot, buffer[5] = (unsigned long) offset; return (__ptr_t) _mmap(buffer); } + +#else /* !__UCLIBC_OLD_STYLE_MMAP__ */ + +_syscall6(__ptr_t, mmap, + __ptr_t, addr, size_t, len, int, prot, + int, flags, int, fd, __off_t, offset); + +#endif /* __UCLIBC_OLD_STYLE_MMAP__ */ + #endif //#define __NR_munmap 91 -- cgit v1.2.3