Whitespace fixes to consistently use spaces before }'s and
wrap long lines.
This commit is contained in:
parent
fc43ff0865
commit
0a46af44bf
@ -119,11 +119,13 @@ static struct syscall syscalls[] = {
|
|||||||
.args = { { Atfd, 0 }, { Name, 1 }, { Readlinkres | OUT, 2 },
|
.args = { { Atfd, 0 }, { Name, 1 }, { Readlinkres | OUT, 2 },
|
||||||
{ Int, 3 } } },
|
{ Int, 3 } } },
|
||||||
{ .name = "lseek", .ret_type = 2, .nargs = 3,
|
{ .name = "lseek", .ret_type = 2, .nargs = 3,
|
||||||
.args = { { Int, 0 }, { Quad, 1 + QUAD_ALIGN }, { Whence, 1 + QUAD_SLOTS + QUAD_ALIGN } } },
|
.args = { { Int, 0 }, { Quad, 1 + QUAD_ALIGN },
|
||||||
|
{ Whence, 1 + QUAD_SLOTS + QUAD_ALIGN } } },
|
||||||
{ .name = "linux_lseek", .ret_type = 2, .nargs = 3,
|
{ .name = "linux_lseek", .ret_type = 2, .nargs = 3,
|
||||||
.args = { { Int, 0 }, { Int, 1 }, { Whence, 2 } } },
|
.args = { { Int, 0 }, { Int, 1 }, { Whence, 2 } } },
|
||||||
{ .name = "mmap", .ret_type = 2, .nargs = 6,
|
{ .name = "mmap", .ret_type = 2, .nargs = 6,
|
||||||
.args = { { Ptr, 0 }, { Int, 1 }, { Mprot, 2 }, { Mmapflags, 3 }, { Int, 4 }, { Quad, 5 + QUAD_ALIGN } } },
|
.args = { { Ptr, 0 }, { Int, 1 }, { Mprot, 2 }, { Mmapflags, 3 },
|
||||||
|
{ Int, 4 }, { Quad, 5 + QUAD_ALIGN } } },
|
||||||
{ .name = "linux_mkdir", .ret_type = 1, .nargs = 2,
|
{ .name = "linux_mkdir", .ret_type = 1, .nargs = 2,
|
||||||
.args = { { Name | IN, 0 }, { Int, 1 } } },
|
.args = { { Name | IN, 0 }, { Int, 1 } } },
|
||||||
{ .name = "mprotect", .ret_type = 1, .nargs = 3,
|
{ .name = "mprotect", .ret_type = 1, .nargs = 3,
|
||||||
@ -216,7 +218,8 @@ static struct syscall syscalls[] = {
|
|||||||
.args = { { Atfd, 0 }, { Name | IN, 1 }, { Accessmode, 2 },
|
.args = { { Atfd, 0 }, { Name | IN, 1 }, { Accessmode, 2 },
|
||||||
{ Atflags, 3 } } },
|
{ Atflags, 3 } } },
|
||||||
{ .name = "sigaction", .ret_type = 1, .nargs = 3,
|
{ .name = "sigaction", .ret_type = 1, .nargs = 3,
|
||||||
.args = { { Signal, 0 }, { Sigaction | IN, 1 }, { Sigaction | OUT, 2 } } },
|
.args = { { Signal, 0 }, { Sigaction | IN, 1 },
|
||||||
|
{ Sigaction | OUT, 2 } } },
|
||||||
{ .name = "accept", .ret_type = 1, .nargs = 3,
|
{ .name = "accept", .ret_type = 1, .nargs = 3,
|
||||||
.args = { { Int, 0 }, { Sockaddr | OUT, 1 }, { Ptr | OUT, 2 } } },
|
.args = { { Int, 0 }, { Sockaddr | OUT, 1 }, { Ptr | OUT, 2 } } },
|
||||||
{ .name = "bind", .ret_type = 1, .nargs = 3,
|
{ .name = "bind", .ret_type = 1, .nargs = 3,
|
||||||
@ -234,13 +237,17 @@ static struct syscall syscalls[] = {
|
|||||||
{ .name = "getsockname", .ret_type = 1, .nargs = 3,
|
{ .name = "getsockname", .ret_type = 1, .nargs = 3,
|
||||||
.args = { { Int, 0 }, { Sockaddr | OUT, 1 }, { Ptr | OUT, 2 } } },
|
.args = { { Int, 0 }, { Sockaddr | OUT, 1 }, { Ptr | OUT, 2 } } },
|
||||||
{ .name = "recvfrom", .ret_type = 1, .nargs = 6,
|
{ .name = "recvfrom", .ret_type = 1, .nargs = 6,
|
||||||
.args = { { Int, 0 }, { BinString | OUT, 1 }, { Int, 2 }, { Hex, 3 }, { Sockaddr | OUT, 4 }, { Ptr | OUT, 5 } } },
|
.args = { { Int, 0 }, { BinString | OUT, 1 }, { Int, 2 }, { Hex, 3 },
|
||||||
|
{ Sockaddr | OUT, 4 }, { Ptr | OUT, 5 } } },
|
||||||
{ .name = "sendto", .ret_type = 1, .nargs = 6,
|
{ .name = "sendto", .ret_type = 1, .nargs = 6,
|
||||||
.args = { { Int, 0 }, { BinString | IN, 1 }, { Int, 2 }, { Hex, 3 }, { Sockaddr | IN, 4 }, { Ptr | IN, 5 } } },
|
.args = { { Int, 0 }, { BinString | IN, 1 }, { Int, 2 }, { Hex, 3 },
|
||||||
|
{ Sockaddr | IN, 4 }, { Ptr | IN, 5 } } },
|
||||||
{ .name = "execve", .ret_type = 1, .nargs = 3,
|
{ .name = "execve", .ret_type = 1, .nargs = 3,
|
||||||
.args = { { Name | IN, 0 }, { StringArray | IN, 1 }, { StringArray | IN, 2 } } },
|
.args = { { Name | IN, 0 }, { StringArray | IN, 1 },
|
||||||
|
{ StringArray | IN, 2 } } },
|
||||||
{ .name = "linux_execve", .ret_type = 1, .nargs = 3,
|
{ .name = "linux_execve", .ret_type = 1, .nargs = 3,
|
||||||
.args = { { Name | IN, 0 }, { StringArray | IN, 1 }, { StringArray | IN, 2 } } },
|
.args = { { Name | IN, 0 }, { StringArray | IN, 1 },
|
||||||
|
{ StringArray | IN, 2 } } },
|
||||||
{ .name = "kldload", .ret_type = 0, .nargs = 1,
|
{ .name = "kldload", .ret_type = 0, .nargs = 1,
|
||||||
.args = { { Name | IN, 0 } } },
|
.args = { { Name | IN, 0 } } },
|
||||||
{ .name = "kldunload", .ret_type = 0, .nargs = 1,
|
{ .name = "kldunload", .ret_type = 0, .nargs = 1,
|
||||||
@ -256,7 +263,8 @@ static struct syscall syscalls[] = {
|
|||||||
{ .name = "nanosleep", .ret_type = 0, .nargs = 1,
|
{ .name = "nanosleep", .ret_type = 0, .nargs = 1,
|
||||||
.args = { { Timespec, 0 } } },
|
.args = { { Timespec, 0 } } },
|
||||||
{ .name = "select", .ret_type = 1, .nargs = 5,
|
{ .name = "select", .ret_type = 1, .nargs = 5,
|
||||||
.args = { { Int, 0 }, { Fd_set, 1 }, { Fd_set, 2 }, { Fd_set, 3 }, { Timeval, 4 } } },
|
.args = { { Int, 0 }, { Fd_set, 1 }, { Fd_set, 2 }, { Fd_set, 3 },
|
||||||
|
{ Timeval, 4 } } },
|
||||||
{ .name = "poll", .ret_type = 1, .nargs = 3,
|
{ .name = "poll", .ret_type = 1, .nargs = 3,
|
||||||
.args = { { Pollfd, 0 }, { Int, 1 }, { Int, 2 } } },
|
.args = { { Pollfd, 0 }, { Int, 1 }, { Int, 2 } } },
|
||||||
{ .name = "gettimeofday", .ret_type = 1, .nargs = 2,
|
{ .name = "gettimeofday", .ret_type = 1, .nargs = 2,
|
||||||
@ -270,7 +278,8 @@ static struct syscall syscalls[] = {
|
|||||||
{ .name = "kse_release", .ret_type = 0, .nargs = 1,
|
{ .name = "kse_release", .ret_type = 0, .nargs = 1,
|
||||||
.args = { { Timespec, 0 } } },
|
.args = { { Timespec, 0 } } },
|
||||||
{ .name = "kevent", .ret_type = 0, .nargs = 6,
|
{ .name = "kevent", .ret_type = 0, .nargs = 6,
|
||||||
.args = { { Int, 0 }, { Kevent, 1 }, { Int, 2 }, { Kevent | OUT, 3 }, { Int, 4 }, { Timespec, 5 } } },
|
.args = { { Int, 0 }, { Kevent, 1 }, { Int, 2 }, { Kevent | OUT, 3 },
|
||||||
|
{ Int, 4 }, { Timespec, 5 } } },
|
||||||
{ .name = "sigprocmask", .ret_type = 0, .nargs = 3,
|
{ .name = "sigprocmask", .ret_type = 0, .nargs = 3,
|
||||||
.args = { { Sigprocmask, 0 }, { Sigset, 1 }, { Sigset | OUT, 2 } } },
|
.args = { { Sigprocmask, 0 }, { Sigset, 1 }, { Sigset | OUT, 2 } } },
|
||||||
{ .name = "unmount", .ret_type = 1, .nargs = 2,
|
{ .name = "unmount", .ret_type = 1, .nargs = 2,
|
||||||
@ -979,7 +988,8 @@ print_arg(struct syscall_args *sc, unsigned long *args, long retval,
|
|||||||
what = buf;
|
what = buf;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
asprintf(&tmp, "(0x%lx)%s, 0x%lx", args[sc->offset], what, (long unsigned int)largs.args);
|
asprintf(&tmp, "(0x%lx)%s, 0x%lx", args[sc->offset], what,
|
||||||
|
(long unsigned int)largs.args);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Pollfd: {
|
case Pollfd: {
|
||||||
|
Loading…
Reference in New Issue
Block a user