Re: [PATCH v2 4/6] linux-user: Add strace support for printing arguments of lseek()

2020-06-10 Thread Laurent Vivier
Le 08/06/2020 à 18:43, Filip Bozuta a écrit : > From: Filip Bozuta > > This patch implements strace argument printing functionality for syscall: > > *lseek - reposition read/write file offset > > off_t lseek(int fd, off_t offset, int whence) > man page: https://www.man7.or

[PATCH v2 4/6] linux-user: Add strace support for printing arguments of lseek()

2020-06-08 Thread Filip Bozuta
From: Filip Bozuta This patch implements strace argument printing functionality for syscall: *lseek - reposition read/write file offset off_t lseek(int fd, off_t offset, int whence) man page: https://www.man7.org/linux/man-pages/man2/lseek.2.html Implementation notes: