aboutsummaryrefslogtreecommitdiffstats
path: root/release/include/declare_syscalls.h
blob: c4810f5678aa7534eac8fb5186844c1e1ac60e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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