add to, and prioritize the TODO a little.
[trinity.git] / syscalls / mq_open.c
blobf8cb8883d4fc6e6614a2d192e91e9d050de2e1a8
1 /*
2 * SYSCALL_DEFINE4(mq_open, const char __user *, u_name, int, oflag, mode_t, mode, struct mq_attr __user *, u_a>
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_mq_open = {
7 .name = "mq_open",
8 .num_args = 4,
9 .arg1name = "u_name",
10 .arg1type = ARG_ADDRESS,
11 .arg2name = "oflag",
12 .arg3name = "mode",
13 .arg3type = ARG_MODE_T,
14 .arg4name = "u_attr",
15 .arg4type = ARG_ADDRESS,