[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Minios-devel] [UNIKRAFT/PROTOBUF PATCH 3/4] Add glue.cc for stubbed functions
Hi Vlad, looks good. Reviewed-by: Felipe Huici <felipe.huici@xxxxxxxxx> -- Felipe On 31.10.19, 00:36, "Vlad-Andrei BĂDOIU (78692)" <vlad_andrei.badoiu@xxxxxxxxxxxxxxx> wrote: We add a stub for the execvp function. Signed-off-by: Vlad-Andrei Badoiu <vlad_andrei.badoiu@xxxxxxxxxxxxxxx> --- glue.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 glue.c diff --git a/glue.c b/glue.c new file mode 100644 index 0000000..f7edeb9 --- /dev/null +++ b/glue.c @@ -0,0 +1,6 @@ +#include <unistd.h> + +int __attribute__((weak)) execvp(const char *file, char *const argv[]) +{ + return 0; +} -- 2.20.1 _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |