aboutgitcodelistschat:MatrixIRC
path: root/actions.c
diff options
context:
space:
mode:
Diffstat (limited to 'actions.c')
-rw-r--r--actions.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/actions.c b/actions.c
index 946d9fc..8f08252 100644
--- a/actions.c
+++ b/actions.c
@@ -201,6 +201,15 @@ int do_actions(struct action actions[], unsigned int n_actions, int pid,
if (send_target(&resp, notifyfd) == -1)
return -1;
break;
+
+ case A_CONT:
+ resp.id = id;
+ resp.flags |= SECCOMP_USER_NOTIF_FLAG_CONTINUE;
+ resp.error = 0;
+ resp.val = 0;
+ if (send_target(&resp, notifyfd) == -1)
+ return -1;
+ break;
default:
fprintf(stderr, "unknow action %d \n", actions[i].type);
}