On Thursday 26 April 2012 10:18:54 Mark Salter wrote:
> --- a/ldso/include/dl-syscall.h
> +++ b/ldso/include/dl-syscall.h
>
> +#if defined(__NR_open)
> #define __NR__dl_open __NR_open
> static __always_inline _syscall3(int, _dl_open, const char *, fn, int,
> flags, __kernel_mode_t, mode)
> +#elif defined(__NR_openat)
> +#define __NR__dl_openat __NR_openat
> +static __always_inline _syscall4(int, _dl_openat, int, dirfd, const char
> *, fn, + int, flags, __kernel_mode_t, mode)
> +static __always_inline ssize_t
> +_dl_open(const char *fn, int flags, __kernel_mode_t mode)
> +{
> + return _dl_openat(AT_FDCWD, fn, flags, mode);
> +}INLINE_SYSCALL() here and elsewhere please. i'll wait for a respin to look at the rest ;). -mike
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
