diff options
author | Alice Frosi <afrosi@redhat.com> | 2023-02-22 15:52:54 +0100 |
---|---|---|
committer | Alice Frosi <afrosi@redhat.com> | 2023-02-22 16:15:03 +0100 |
commit | 977ffec509a95efeca2b7c508912d5d1df7cd677 (patch) | |
tree | 3d5c169951b05008415d5eafdf263c51e8cf164d /operations.h | |
parent | ba9623361f74be93674f2862903a39ae6d48e96e (diff) | |
download | seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.gz seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.bz2 seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.lz seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.xz seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.zst seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.zip |
Rename actions to operations
Replace all the action related names to operations to make them more
generic.
Diffstat (limited to 'operations.h')
-rw-r--r-- | operations.h | 19 |
1 files changed, 19 insertions, 0 deletions
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 <errno.h> + +#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 */ |