Re: [PATCH v3] linux-user: Adjust child_tidptr on set_tid_address() syscall

2022-06-21 Thread Laurent Vivier
Le 28/05/2022 à 12:52, Helge Deller a écrit : Keep track of the new child tidptr given by a set_tid_address() syscall. Do not call the host set_tid_address() syscall because we are emulating the behaviour of writing to child_tidptr in the exit() path. Signed-off-by: Helge Deller Reviewed-by: Ri

Re: [PATCH v3] linux-user: Adjust child_tidptr on set_tid_address() syscall

2022-06-21 Thread Laurent Vivier
Le 28/05/2022 à 12:52, Helge Deller a écrit : Keep track of the new child tidptr given by a set_tid_address() syscall. Do not call the host set_tid_address() syscall because we are emulating the behaviour of writing to child_tidptr in the exit() path. Signed-off-by: Helge Deller Reviewed-by: Ri

[PATCH v3] linux-user: Adjust child_tidptr on set_tid_address() syscall

2022-05-28 Thread Helge Deller
Keep track of the new child tidptr given by a set_tid_address() syscall. Do not call the host set_tid_address() syscall because we are emulating the behaviour of writing to child_tidptr in the exit() path. Signed-off-by: Helge Deller Reviewed-by: Richard Henderson -- v3: - Respin of the patch b