Create the kern_fstat() and kern_ftruncate() in-kernel syscalls.
[dragonfly.git] / sys / sys / kern_syscall.h
1 /*
2  * KERN_SYSCALL.H       - Split syscall prototypes
3  *
4  * Copyright (c) 2003 David P. Reese, Jr. <daver@gomerbud.com>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $DragonFly: src/sys/sys/kern_syscall.h,v 1.8 2003/10/21 01:05:09 daver Exp $
29  */
30
31 #ifndef _SYS_KERN_SYSCALL_H_
32 #define _SYS_KERN_SYSCALL_H_
33
34 enum dup_type {DUP_FIXED, DUP_VARIABLE};
35 union fcntl_dat;
36 struct mbuf;
37 struct msghdr;
38 struct sf_hdtr;
39 struct sockaddr;
40 struct socket;
41 struct sockopt;
42 struct uio;
43 struct vnode;
44
45 /*
46  * Prototypes for syscalls in kern/kern_descrip.c
47  */
48 int kern_dup(enum dup_type type, int old, int new, int *res);
49 int kern_fcntl(int fd, int cmd, union fcntl_dat *dat);
50 int kern_fstat(int fd, struct stat *st);
51
52 /*
53  * Prototypes for syscalls in kern/sys_generic.c
54  */
55 int kern_readv(int fd, struct uio *auio, int flags, int *res);
56 int kern_writev(int fd, struct uio *auio, int flags, int *res);
57
58 /*
59  * Prototypes for syscalls in kern/uipc_syscalls.c
60  */
61 int kern_accept(int s, struct sockaddr **name, int *namelen, int *res);
62 int kern_bind(int s, struct sockaddr *sa);
63 int kern_connect(int s, struct sockaddr *sa);
64 int kern_listen(int s, int backlog);
65 int kern_getpeername(int s, struct sockaddr **name, int *namelen);
66 int kern_getsockopt(int s, struct sockopt *sopt);
67 int kern_getsockname(int s, struct sockaddr **name, int *namelen);
68 int kern_recvmsg(int s, struct sockaddr **sa, struct uio *auio,
69         struct mbuf **control, int *flags, int *res);
70 int kern_shutdown(int s, int how);
71 int kern_sendfile(struct vnode *vp, int s, off_t offset, size_t nbytes,
72         off_t *sbytes, int flags);
73 int kern_sendmsg(int s, struct sockaddr *sa, struct uio *auio,
74         struct mbuf *control, int flags, int *res);
75 int kern_setsockopt(int s, struct sockopt *sopt);
76 int kern_socket(int domain, int type, int protocol, int *res);
77 int kern_socketpair(int domain, int type, int protocol, int *sockv);
78
79 /*
80  * Prototypes for syscalls in kern/vfs_syscalls.c
81  */
82 int kern_ftruncate(int fd, off_t length);
83
84 #endif /* !_SYS_KERN_SYSCALL_H_ */