aboutgitcodelistschat:MatrixIRC
path: root/gluten.h
diff options
context:
space:
mode:
authorAlice Frosi <afrosi@redhat.com>2023-01-26 17:12:23 +0100
committerAlice Frosi <afrosi@redhat.com>2023-02-15 13:15:56 +0100
commit7cb6760e3ebdc7a95f167bbeee793e8050215d2c (patch)
treed192cbda53e6b58fa0a5d402f9a29bd57f50896d /gluten.h
parentdd9d5a78f0e48f92cd290cf23185c381e2153e40 (diff)
downloadseitan-7cb6760e3ebdc7a95f167bbeee793e8050215d2c.tar
seitan-7cb6760e3ebdc7a95f167bbeee793e8050215d2c.tar.gz
seitan-7cb6760e3ebdc7a95f167bbeee793e8050215d2c.tar.bz2
seitan-7cb6760e3ebdc7a95f167bbeee793e8050215d2c.tar.lz
seitan-7cb6760e3ebdc7a95f167bbeee793e8050215d2c.tar.xz
seitan-7cb6760e3ebdc7a95f167bbeee793e8050215d2c.tar.zst
seitan-7cb6760e3ebdc7a95f167bbeee793e8050215d2c.zip
seitan: add injection actions
The inject actions install a new fd into the target. If the action is an atomic injection then the target is unblock after this action and the return value of the syscall will be the the file descriptor number that was allocated in the target Signed-off-by: Alice Frosi <afrosi@redhat.com>
Diffstat (limited to 'gluten.h')
-rw-r--r--gluten.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/gluten.h b/gluten.h
index 85254e9..c9f6600 100644
--- a/gluten.h
+++ b/gluten.h
@@ -75,12 +75,6 @@ struct act_inject {
uint32_t old;
};
-struct act_inject_a {
- uint32_t newfd;
- uint32_t old;
- int64_t value;
-};
-
struct action {
enum action_type type;
union {
@@ -89,7 +83,6 @@ struct action {
struct act_continue cont;
struct act_return ret;
struct act_inject inj;
- struct act_inject_a inj_a;
};
};
#endif /* GLUTEN_H */