From 36cbebd3c81b75f709ac5e6f6df36e0e37893d3d Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Wed, 22 Feb 2023 17:13:59 +0100 Subject: operations: add op_copy --- operations.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'operations.h') diff --git a/operations.h b/operations.h index aeb09d5..8996065 100644 --- a/operations.h +++ b/operations.h @@ -2,6 +2,7 @@ #define ACTIONS_H #include +#include #define STACK_SIZE (1024 * 1024 / 8) #define NS_NUM (sizeof(enum ns_type)) @@ -14,6 +15,7 @@ struct arg_clone { }; int do_call(struct arg_clone *c); -int do_operations(void *data, struct op operations[], unsigned int n_operations, - int tpid, int notifyfd, uint64_t id); +int do_operations(void *data, struct op operations[], struct seccomp_notif *req, + unsigned int n_operations, int tpid, int notifyfd, + uint64_t id); #endif /* ACTIONS_H */ -- cgit v1.2.3