qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 02/16] linux-user: add tkill(), tgkill() and


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH v2 02/16] linux-user: add tkill(), tgkill() and rt_sigqueueinfo() strace
Date: Fri, 2 Jun 2017 13:31:56 +0100

On 15 May 2017 at 15:59, Miloš Stojanović <address@hidden> wrote:
> Improve strace support for syscall tkill(), tgkill() and rt_sigqueueinfo()
> by implementing print functions that match arguments types of the system
> calls and add them to the corresponding starce.list entry.
>
> tkill:
> Prior to this commit, typical strace output used to look like this:
> 4886 tkill(4886,50,0,4832615904,0,-9151031864016699136) = 0
> After this commit, it looks like this:
> 4886 tkill(4886,50) = 0
>
> tgkill:
> Prior to this commit, typical strace output used to look like this:
> 4890 tgkill(4890,4890,50,8,4832630528,4832615904) = 0
> After this commit, it looks like this:
> 4890 tgkill(4890,4890,50) = 0
>
> rt_sigqueueinfo:
> Prior to this commit, typical strace output used to look like this:
> 8307 rt_sigqueueinfo(8307,50,1996483164,0,0,50) = 0
> After this commit, it looks like this:
> 8307 rt_sigqueueinfo(8307,50,0x00000040007ff6b0) = 0
>
> Signed-off-by: Miloš Stojanović <address@hidden>

Reviewed-by: Peter Maydell <address@hidden>

thanks
-- PMM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]