From 1c1a9da7a4f9c4c1990192e14763ebf423d812a9 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Wed, 7 Jun 2023 16:54:53 +0200 Subject: seitan, cooker: refactor op_return Refactor OP_RETURN: - merged OP_BLOCK and OP_CONT into OP_RETURN - add desc field for op_return - updated the demo files --- operations.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'operations.h') diff --git a/operations.h b/operations.h index 2f26fc6..f07b86f 100644 --- a/operations.h +++ b/operations.h @@ -44,12 +44,8 @@ int do_call(struct arg_clone *c); int eval(struct gluten *g, const struct seccomp_notif *req, int notifier); int op_call(const struct seccomp_notif *req, int notifier, struct gluten *g, struct op_call *op); -int op_block(const struct seccomp_notif *req, int notifier, struct gluten *g, - struct op_block *op); int op_return(const struct seccomp_notif *req, int notifier, struct gluten *g, struct op_return *op); -int op_continue(const struct seccomp_notif *req, int notifier, struct gluten *g, - void *); int op_cmp(const struct seccomp_notif *req, int notifier, struct gluten *g, struct op_cmp *op); int op_resolve_fd(const struct seccomp_notif *req, int notifier, -- cgit v1.2.3