From c398e6ec613c1f90ffe33608c511208100e7372f Mon Sep 17 00:00:00 2001 From: Yalei Wang Date: Mon, 12 Mar 2018 10:07:58 +0800 Subject: Add the nSocket module for dmm Change-Id: I8b97fbe50c9c1c479072510b8d799fe711360da7 Signed-off-by: Yalei Wang --- src/nSocket/include/declare_syscalls.h | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/nSocket/include/declare_syscalls.h (limited to 'src/nSocket/include/declare_syscalls.h') diff --git a/src/nSocket/include/declare_syscalls.h b/src/nSocket/include/declare_syscalls.h new file mode 100644 index 0000000..c4810f5 --- /dev/null +++ b/src/nSocket/include/declare_syscalls.h @@ -0,0 +1,51 @@ +/* +* +* Copyright (c) 2018 Huawei Technologies Co.,Ltd. +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at: +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +NSTACK_MK_DECL (int, socket, (int, int, int)); +NSTACK_MK_DECL (int, bind, (int, const struct sockaddr *, socklen_t)); +NSTACK_MK_DECL (int, listen, (int, int)); +NSTACK_MK_DECL (int, shutdown, (int, int)); +NSTACK_MK_DECL (int, getsockname, (int, struct sockaddr *, socklen_t *)); +NSTACK_MK_DECL (int, getpeername, (int, struct sockaddr *, socklen_t *)); +NSTACK_MK_DECL (int, getsockopt, (int, int, int, void *, socklen_t *)); +NSTACK_MK_DECL (int, setsockopt, (int, int, int, const void *, socklen_t)); +NSTACK_MK_DECL (int, accept, (int, struct sockaddr *, socklen_t *)); +NSTACK_MK_DECL (int, accept4, + (int, struct sockaddr *, socklen_t *, int flags)); +NSTACK_MK_DECL (int, connect, (int, const struct sockaddr *, socklen_t)); +NSTACK_MK_DECL (ssize_t, recv, (int, void *, size_t, int)); +NSTACK_MK_DECL (ssize_t, send, (int, const void *, size_t, int)); +NSTACK_MK_DECL (ssize_t, read, (int, void *, size_t)); +NSTACK_MK_DECL (ssize_t, write, (int, const void *, size_t)); +NSTACK_MK_DECL (ssize_t, writev, (int, const struct iovec *, int)); +NSTACK_MK_DECL (ssize_t, readv, (int, const struct iovec *, int)); +NSTACK_MK_DECL (ssize_t, sendto, + (int, const void *, size_t, int, const struct sockaddr *, + socklen_t)); +NSTACK_MK_DECL (ssize_t, recvfrom, + (int, void *, size_t, int, struct sockaddr *, socklen_t *)); +NSTACK_MK_DECL (ssize_t, sendmsg, (int, const struct msghdr *, int flags)); +NSTACK_MK_DECL (ssize_t, recvmsg, (int, struct msghdr *, int flags)); +NSTACK_MK_DECL (int, close, (int)); +NSTACK_MK_DECL (int, select, + (int, fd_set *, fd_set *, fd_set *, struct timeval *)); +NSTACK_MK_DECL (int, ioctl, (int, unsigned long, unsigned long)); +NSTACK_MK_DECL (int, fcntl, (int, int, unsigned long)); +NSTACK_MK_DECL (int, epoll_create, (int)); +NSTACK_MK_DECL (int, epoll_ctl, (int, int, int, struct epoll_event *)); +NSTACK_MK_DECL (int, epoll_wait, (int, struct epoll_event *, int, int)); +NSTACK_MK_DECL (pid_t, fork, (void)); +#undef NSTACK_MK_DECL -- cgit 1.2.3-korg