diff options
author | Alice Frosi <afrosi@redhat.com> | 2023-05-11 11:26:11 +0200 |
---|---|---|
committer | Alice Frosi <afrosi@redhat.com> | 2023-05-11 17:48:29 +0200 |
commit | 46a3a54c0a0e1ce9d8f5705184e46386565d2319 (patch) | |
tree | 37b92e09745d9e02d98406d2f9bdc92c1fa818fc /operations.h | |
parent | 1b40d186058e1c8c16a9fe0ada522e2a6dee37a0 (diff) | |
download | seitan-46a3a54c0a0e1ce9d8f5705184e46386565d2319.tar seitan-46a3a54c0a0e1ce9d8f5705184e46386565d2319.tar.gz seitan-46a3a54c0a0e1ce9d8f5705184e46386565d2319.tar.bz2 seitan-46a3a54c0a0e1ce9d8f5705184e46386565d2319.tar.lz seitan-46a3a54c0a0e1ce9d8f5705184e46386565d2319.tar.xz seitan-46a3a54c0a0e1ce9d8f5705184e46386565d2319.tar.zst seitan-46a3a54c0a0e1ce9d8f5705184e46386565d2319.zip |
Adjust op_call with gluten_offset
Diffstat (limited to 'operations.h')
-rw-r--r-- | operations.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/operations.h b/operations.h index ccc42c2..f68ea89 100644 --- a/operations.h +++ b/operations.h @@ -27,9 +27,14 @@ } while (0); \ break +struct ns_path { + char path[PATH_MAX]; +}; + struct arg_clone { - const struct op_call *args; - pid_t pid; + long nr; + void *args[6]; + struct ns_path ns[sizeof(enum ns_type)]; long ret; int err; }; |