Re: [PATCH v2] linux-user: Implement stracing madvise()

2022-09-05 Thread Ilya Leoshkevich
On Mon, 2022-09-05 at 23:40 +0200, Ilya Leoshkevich wrote: > The default implementation has several problems: the first argument > is > not displayed as a pointer, making it harder to grep; the third > argument is not symbolized; and there are several extra unused > arguments. > > Signed-off-by:

[PATCH v2] linux-user: Implement stracing madvise()

2022-09-05 Thread Ilya Leoshkevich
The default implementation has several problems: the first argument is not displayed as a pointer, making it harder to grep; the third argument is not symbolized; and there are several extra unused arguments. Signed-off-by: Ilya Leoshkevich --- v1: