move_pages: just use calloc
[trinity.git] / syscalls / signal.c
blob42248e798f76ea763ac2dce90549a94d99ed81ed
1 /*
2 * SYSCALL_DEFINE2(signal, int, sig, __sighandler_t, handler)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_signal = {
7 .name = "signal",
8 .num_args = 2,
9 .arg1name = "sig",
10 .arg2name = "handler",
11 .arg2type = ARG_ADDRESS,
12 .flags = AVOID_SYSCALL,