Re: [PATCH 2/3] linux-user: Add strace support for printing arguments of syscalls used to lock and unlock memory

2020-07-02 Thread Laurent Vivier
Le 26/06/2020 à 23:39, Filip Bozuta a écrit : > This patch implements strace argument printing functionality for following > syscalls: > > * mlock, munlock, mlockall, munlockall - lock and unlock memory > >int mlock(const void *addr, size_t len) >int munlock(const void *addr,

[PATCH 2/3] linux-user: Add strace support for printing arguments of syscalls used to lock and unlock memory

2020-06-26 Thread Filip Bozuta
This patch implements strace argument printing functionality for following syscalls: * mlock, munlock, mlockall, munlockall - lock and unlock memory int mlock(const void *addr, size_t len) int munlock(const void *addr, size_t len) int mlockall(int flags) int munlo