split up constants.h some
[trinity.git] / syscalls / sigaction.c
blobade956c4c6a2f0fb861f5640da494f8fe698f501
1 /*
2 * asmlinkage int
3 sys_sigaction(int sig, const struct old_sigaction __user *act,
4 struct old_sigaction __user *oact)
5 */
6 #include "sanitise.h"
8 struct syscallentry syscall_sigaction = {
9 .name = "sigaction",
10 .num_args = 3,
11 .sanitise = sanitise_rt_sigaction,
12 .arg1name = "sig",
13 .arg2name = "act",
14 .arg2type = ARG_ADDRESS,
15 .arg3name = "oact",
16 .flags = AVOID_SYSCALL,