note a leak that needs fixing eventually
[trinity.git] / syscalls / socketpair.c
blob418a7ac6f2c3d0bc8bd7ac70a389d6be9d768dd7
1 /*
2 * SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol, int __user *, usockvec)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_socketpair = {
7 .name = "socketpair",
8 .num_args = 4,
9 .arg1name = "family",
10 .arg2name = "type",
11 .arg3name = "protocol",
12 .arg4name = "usockvec",
13 .arg4type = ARG_ADDRESS,