From 977ffec509a95efeca2b7c508912d5d1df7cd677 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Wed, 22 Feb 2023 15:52:54 +0100 Subject: Rename actions to operations Replace all the action related names to operations to make them more generic. --- operations.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 operations.h (limited to 'operations.h') diff --git a/operations.h b/operations.h new file mode 100644 index 0000000..aeb09d5 --- /dev/null +++ b/operations.h @@ -0,0 +1,19 @@ +#ifndef ACIONS_H +#define ACTIONS_H + +#include + +#define STACK_SIZE (1024 * 1024 / 8) +#define NS_NUM (sizeof(enum ns_type)) + +struct arg_clone { + const struct op_call *args; + pid_t pid; + long ret; + int err; +}; + +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); +#endif /* ACTIONS_H */ -- cgit v1.2.3