aboutgitcodelistschat:MatrixIRC
path: root/actions.h
blob: c3376b7878bd94b88c11c504680bdf5e4b8efd77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 act_call *args;
	pid_t pid;
	long ret;
	int err;
};

int do_call(struct arg_clone *c);
int do_actions(void *data, struct action actions[], unsigned int n_actions,
	       int tpid, int notifyfd, uint64_t id);
#endif /* ACTIONS_H */