move_pages: just use calloc
[trinity.git] / syscalls / listen.c
blobf51006da62c280f6d9c6f6255714a9106ef1270f
1 /*
2 * SYSCALL_DEFINE2(listen, int, fd, int, backlog)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_listen = {
7 .name = "listen",
8 .num_args = 2,
9 .arg1name = "fd",
10 .arg1type = ARG_FD,
11 .arg2name = "backlog",
12 .flags = NEED_ALARM,