OSDN Git Service

Add recvmmsg and sendmmsg syscalls.
authorGuillaume Ranquet <guillaumex.ranquet@intel.com>
Mon, 10 Feb 2014 12:11:29 +0000 (13:11 +0100)
committerElliott Hughes <enh@google.com>
Thu, 27 Feb 2014 22:29:01 +0000 (14:29 -0800)
commit6ff0c75c838e73d2aeccc0102ab58a7b865172ca
tree664bed83a31a736af22e3ac37ff36b14e809724c
parent000ffd8ab0b4112173ce319869f4111f08fbe975
Add recvmmsg and sendmmsg syscalls.

Also add the corresponding constant, struct, and function declarations
to <sys/socket.h>, and perfunctory tests so we know that the symbols
actually exist.

Signed-off-by: Guillaume Ranquet <guillaumex.ranquet@intel.com>
Change-Id: Ib0d854239d3716be90ad70973c579aff4895a4f7
16 files changed:
libc/SYSCALLS.TXT
libc/arch-arm/syscalls/recvmmsg.S [new file with mode: 0644]
libc/arch-arm/syscalls/sendmmsg.S [new file with mode: 0644]
libc/arch-arm64/syscalls/recvmmsg.S [new file with mode: 0644]
libc/arch-arm64/syscalls/sendmmsg.S [new file with mode: 0644]
libc/arch-mips/syscalls/recvmmsg.S [new file with mode: 0644]
libc/arch-mips/syscalls/sendmmsg.S [new file with mode: 0644]
libc/arch-mips64/syscalls/recvmmsg.S [new file with mode: 0644]
libc/arch-mips64/syscalls/sendmmsg.S [new file with mode: 0644]
libc/arch-x86/syscalls/recvmmsg.S [new file with mode: 0644]
libc/arch-x86/syscalls/sendmmsg.S [new file with mode: 0644]
libc/arch-x86_64/syscalls/recvmmsg.S [new file with mode: 0644]
libc/arch-x86_64/syscalls/sendmmsg.S [new file with mode: 0644]
libc/include/sys/socket.h
tests/Android.mk
tests/sys_socket_test.cpp [new file with mode: 0644]