Re: [PATCH v3 1/6] sandbox: Add function os_flush()

2022-09-24 Thread Tom Rini
On Mon, Sep 05, 2022 at 11:31:16AM +0200, Pali Rohár wrote: > It flushes stdout. > > Signed-off-by: Pali Rohár > Reviewed-by: Simon Glass For the series, and with 4/6 fixed-up as suggested, applied to u-boot/next, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH v3 1/6] sandbox: Add function os_flush()

2022-09-07 Thread Simon Glass
On Mon, 5 Sept 2022 at 03:31, Pali Rohár wrote: > > It flushes stdout. > > Signed-off-by: Pali Rohár > --- > arch/sandbox/cpu/os.c | 5 + > include/os.h | 8 > 2 files changed, 13 insertions(+) Reviewed-by: Simon Glass BTW this should report an error.

[PATCH v3 1/6] sandbox: Add function os_flush()

2022-09-05 Thread Pali Rohár
It flushes stdout. Signed-off-by: Pali Rohár --- arch/sandbox/cpu/os.c | 5 + include/os.h | 8 2 files changed, 13 insertions(+) diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index f937991139c9..01845e388d35 100644 --- a/arch/sandbox/cpu/os.c +++