Re: [PATCH 3/5] tools: selftests: riscv: Add missing include for vector test

2023-12-15 Thread Andy Chiu
On Fri, Nov 24, 2023 at 2:58 AM Christoph Muellner wrote: > > From: Christoph Müllner > > GCC raises the following warning: > warning: 'status' may be used uninitialized > The warning comes from the fact, that the signature of waitpid() is > unknown and therefore the initialization of GCC canno

Re: [PATCH 3/5] tools: selftests: riscv: Add missing include for vector test

2023-12-15 Thread Alexandre Ghiti
On 23/11/2023 19:58, Christoph Muellner wrote: From: Christoph Müllner GCC raises the following warning: warning: 'status' may be used uninitialized The warning comes from the fact, that the signature of waitpid() is unknown and therefore the initialization of GCC cannot be guessed. Let's ad

[PATCH 3/5] tools: selftests: riscv: Add missing include for vector test

2023-11-23 Thread Christoph Muellner
From: Christoph Müllner GCC raises the following warning: warning: 'status' may be used uninitialized The warning comes from the fact, that the signature of waitpid() is unknown and therefore the initialization of GCC cannot be guessed. Let's add the relevant header to address this warning. Si