socket: Add accept4 syscall and bump __DragonFly_version
authorSepherosa Ziehau <sephe@dragonflybsd.org>
Thu, 29 Oct 2015 03:20:39 +0000 (11:20 +0800)
committerSepherosa Ziehau <sephe@dragonflybsd.org>
Fri, 30 Oct 2015 05:29:56 +0000 (13:29 +0800)
commit73610d44ed87143945db264816803a31975470b5
treec8a7633e2b809a345b3075113d9c7e064e118b3f
parent61814ab4fc71b4497163e7c803eaa759ced2ef9b
socket: Add accept4 syscall and bump __DragonFly_version

Suggested-by: zrj on #dragonflybsd@efnet
46 files changed:
lib/libc/sys/Makefile.inc
lib/libc/sys/Symbol.map
lib/libc/sys/accept.2
sys/emulation/43bsd/43bsd_socket.c
sys/emulation/linux/linux_socket.c
sys/kern/init_sysent.c
sys/kern/syscalls.c
sys/kern/syscalls.master
sys/kern/uipc_syscalls.c
sys/sys/kern_syscall.h
sys/sys/param.h
sys/sys/socket.h
sys/sys/syscall.h
sys/sys/syscall.mk
sys/sys/sysproto.h
sys/sys/sysunion.h
test/socket/Makefile [new file with mode: 0644]
test/socket/Makefile.inc [copied from test/sockext/checkfd/Makefile with 53% similarity]
test/socket/accept/Makefile [new file with mode: 0644]
test/socket/accept/Makefile.inc [new file with mode: 0644]
test/socket/accept/block/Makefile [new file with mode: 0644]
test/socket/accept/block/accept_block.c [new file with mode: 0644]
test/socket/accept/nonblock/Makefile [new file with mode: 0644]
test/socket/accept/nonblock/accept_nblock.c [new file with mode: 0644]
test/socket/accept4/Makefile [new file with mode: 0644]
test/socket/accept4/Makefile.inc [new file with mode: 0644]
test/socket/accept4/block/Makefile [new file with mode: 0644]
test/socket/accept4/block/accept4_block.c [new file with mode: 0644]
test/socket/accept4/cloexec/Makefile [new file with mode: 0644]
test/socket/accept4/cloexec/accept4_cloexec.c [new file with mode: 0644]
test/socket/accept4/nonblock/Makefile [new file with mode: 0644]
test/socket/accept4/nonblock/accept4_nblock.c [new file with mode: 0644]
test/socket/checkfd/Makefile [moved from test/sockext/checkfd/Makefile with 100% similarity]
test/socket/checkfd/checkfd.c [moved from test/sockext/checkfd/checkfd.c with 81% similarity]
test/socket/socket/Makefile [new file with mode: 0644]
test/socket/socket/Makefile.inc [new file with mode: 0644]
test/socket/socket/cloexec/Makefile [moved from test/sockext/socket/cloexec/Makefile with 50% similarity]
test/socket/socket/cloexec/socket_cloexec.c [moved from test/sockext/socket/cloexec/socket_cloexec.c with 95% similarity]
test/socket/socket/nonblock/Makefile [moved from test/sockext/socket/nonblock/Makefile with 50% similarity]
test/socket/socket/nonblock/socket_nblock.c [moved from test/sockext/socket/nonblock/socket_nblock.c with 92% similarity]
test/socket/socketpair/Makefile [new file with mode: 0644]
test/socket/socketpair/Makefile.inc [new file with mode: 0644]
test/socket/socketpair/cloexec/Makefile [moved from test/sockext/socketpair/cloexec/Makefile with 51% similarity]
test/socket/socketpair/cloexec/sockpair_cloexec.c [moved from test/sockext/socketpair/cloexec/sockpair_cloexec.c with 95% similarity]
test/socket/socketpair/nonblock/Makefile [moved from test/sockext/socketpair/nonblock/Makefile with 51% similarity]
test/socket/socketpair/nonblock/sockpair_nblock.c [moved from test/sockext/socketpair/nonblock/sockpair_nblock.c with 86% similarity]