Re: [PATCH] v4l-utils: use openat when available

2013-02-02 Thread Gregor Jasny
Hello, On 1/22/13 5:37 PM, Riku Voipio wrote: > New architectures such as 64-Bit arm build kernels without legacy > system calls - Such as the the no-at system calls. Thus, use > SYS_openat whenever it is available. > +#ifdef SYS_openat > +#define SYS_OPEN(file, oflag, mode) \ > + syscall(SYS

[PATCH] v4l-utils: use openat when available

2013-01-22 Thread Riku Voipio
New architectures such as 64-Bit arm build kernels without legacy system calls - Such as the the no-at system calls. Thus, use SYS_openat whenever it is available. Signed-off-by: Riku Voipio --- lib/libv4lconvert/libv4lsyscall-priv.h |5 + 1 file changed, 5 insertions(+) diff --git a/li