From 1644bbec6161ec971a2ba3c213ce285b995cac22 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Thu, 1 Jun 2023 11:04:38 +0200 Subject: cooker: OP_CALL and OP_COPY stuff ...mostly. Signed-off-by: Stefano Brivio --- cooker/calls/process.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'cooker/calls/process.c') diff --git a/cooker/calls/process.c b/cooker/calls/process.c index 7c0f36e..b133629 100644 --- a/cooker/calls/process.c +++ b/cooker/calls/process.c @@ -36,13 +36,15 @@ clone3 #include "../calls.h" static struct arg unshare_args[] = { - { - 0, "flags", INTFLAGS, 0, - { 0 /* TODO */ } - }, + { 0, + { + "flags", UNDEF /* TODO */, FLAGS, 0, 0, + { 0 /* TODO */ } + } + } }; struct call syscalls_process[] = { { __NR_unshare, "unshare", unshare_args }, - { 0 }, + { 0 } }; -- cgit v1.2.3