Re: [PATCH v2 07/74] semihosting: Split out guestfd.c

2022-05-16 Thread Richard Henderson
On 5/16/22 08:14, Peter Maydell wrote: diff --git a/configs/targets/aarch64-linux-user.mak b/configs/targets/aarch64-linux-user.mak index d0c603c54e..db552f1839 100644 --- a/configs/targets/aarch64-linux-user.mak +++ b/configs/targets/aarch64-linux-user.mak @@ -2,4 +2,5 @@ TARGET_ARCH=aarch64

Re: [PATCH v2 07/74] semihosting: Split out guestfd.c

2022-05-16 Thread Peter Maydell
On Tue, 3 May 2022 at 21:02, Richard Henderson wrote: > > In arm-compat-semi.c, we have more advanced treatment of > guest file descriptors than we do in other implementations. > Split out GuestFD and related functions to a new file so > that they can be shared. > > Signed-off-by: Richard Henderso

[PATCH v2 07/74] semihosting: Split out guestfd.c

2022-05-03 Thread Richard Henderson
In arm-compat-semi.c, we have more advanced treatment of guest file descriptors than we do in other implementations. Split out GuestFD and related functions to a new file so that they can be shared. Signed-off-by: Richard Henderson --- configs/targets/aarch64-linux-user.mak| 1 + configs/t