On 08/12/2018 01:45 PM, Laurent Vivier wrote:
> Le 12/06/2018 à 02:51, Richard Henderson a écrit :
>> Defines a unified structure for implementation and strace.
>> Supplies a generator script to build the declarations and
>> the lookup function.
>>
>> Signed-off-by: Richard Henderson
>> ---
>> li
Le 12/06/2018 à 02:51, Richard Henderson a écrit :
> Defines a unified structure for implementation and strace.
> Supplies a generator script to build the declarations and
> the lookup function.
>
> Signed-off-by: Richard Henderson
> ---
> linux-user/syscall.h | 178 +++
>
On 06/22/2018 03:30 AM, Peter Maydell wrote:
>> +struct SyscallDef {
>> +const char *name;
>> +SyscallArgsFn *args;
>> +SyscallImplFn *impl;
>> +SyscallPrintFn *print;
>> +SyscallPrintRetFn *print_ret;
>
> Are all these hook functions mandatory, or can a syscall
> implementatio
On 12 June 2018 at 01:51, Richard Henderson
wrote:
> Defines a unified structure for implementation and strace.
> Supplies a generator script to build the declarations and
> the lookup function.
>
> Signed-off-by: Richard Henderson
> ---
> linux-user/syscall.h | 178 +++
>
Defines a unified structure for implementation and strace.
Supplies a generator script to build the declarations and
the lookup function.
Signed-off-by: Richard Henderson
---
linux-user/syscall.h | 178 +++
linux-user/strace.c| 386 --