The big syscall split commit broke utimes(), lutimes() and futimes() when
[dragonfly.git] / sys / sys / kern_syscall.h
... / ...
CommitLineData
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.11 2003/11/10 20:57:17 dillon Exp $
29 */
30
31#ifndef _SYS_KERN_SYSCALL_H_
32#define _SYS_KERN_SYSCALL_H_
33
34enum dup_type {DUP_FIXED, DUP_VARIABLE};
35union fcntl_dat;
36struct mbuf;
37struct msghdr;
38struct nameidata;
39struct rlimit;
40struct rusage;
41struct sigaction;
42struct sigaltstack;
43struct __sigset;
44struct sf_hdtr;
45struct sockaddr;
46struct socket;
47struct sockopt;
48struct stat;
49struct statfs;
50struct timeval;
51struct uio;
52struct vnode;
53
54/*
55 * Prototypes for syscalls in kern/kern_descrip.c
56 */
57int kern_dup(enum dup_type type, int old, int new, int *res);
58int kern_fcntl(int fd, int cmd, union fcntl_dat *dat);
59int kern_fstat(int fd, struct stat *st);
60
61/*
62 * Prototypes for syscalls in kern/kern_exit.c
63 */
64int kern_wait(pid_t pid, int *status, int options, struct rusage *rusage,
65 int *res);
66
67/*
68 * Prototypes for syscalls in kern/kern_sig.c
69 */
70int kern_sigaction(int sig, struct sigaction *act, struct sigaction *oact);
71int kern_sigprocmask(int how, struct __sigset *set, struct __sigset *oset);
72int kern_sigpending(struct __sigset *set);
73int kern_sigsuspend(struct __sigset *mask);
74int kern_sigaltstack(struct sigaltstack *ss, struct sigaltstack *oss);
75int kern_kill(int sig, int id);
76
77/*
78 * Prototypes for syscalls in kern/sys_generic.c
79 */
80int kern_readv(int fd, struct uio *auio, int flags, int *res);
81int kern_writev(int fd, struct uio *auio, int flags, int *res);
82
83/*
84 * Prototypes for syscalls in kern/kern_resource.c
85 */
86int kern_setrlimit(u_int which, struct rlimit *limp);
87int kern_getrlimit(u_int which, struct rlimit *limp);
88
89/*
90 * Prototypes for syscalls in kern/uipc_syscalls.c
91 */
92int kern_accept(int s, struct sockaddr **name, int *namelen, int *res);
93int kern_bind(int s, struct sockaddr *sa);
94int kern_connect(int s, struct sockaddr *sa);
95int kern_listen(int s, int backlog);
96int kern_getpeername(int s, struct sockaddr **name, int *namelen);
97int kern_getsockopt(int s, struct sockopt *sopt);
98int kern_getsockname(int s, struct sockaddr **name, int *namelen);
99int kern_recvmsg(int s, struct sockaddr **sa, struct uio *auio,
100 struct mbuf **control, int *flags, int *res);
101int kern_shutdown(int s, int how);
102int kern_sendfile(struct vnode *vp, int s, off_t offset, size_t nbytes,
103 off_t *sbytes, int flags);
104int kern_sendmsg(int s, struct sockaddr *sa, struct uio *auio,
105 struct mbuf *control, int flags, int *res);
106int kern_setsockopt(int s, struct sockopt *sopt);
107int kern_socket(int domain, int type, int protocol, int *res);
108int kern_socketpair(int domain, int type, int protocol, int *sockv);
109
110/*
111 * Prototypes for syscalls in kern/vfs_syscalls.c
112 */
113int kern_access(struct nameidata *nd, int aflags);
114int kern_chdir(struct nameidata *nd);
115int kern_chmod(struct nameidata *nd, int mode);
116int kern_chown(struct nameidata *nd, int uid, int gid);
117int kern_fstatfs(int fd, struct statfs *buf);
118int kern_ftruncate(int fd, off_t length);
119int kern_futimes(int fd, struct timeval *tptr);
120int kern_getdirentries(int fd, char *buf, u_int count, long *basep, int *res);
121int kern_link(struct nameidata *nd, struct nameidata *linknd);
122int kern_lseek(int fd, off_t offset, int whence, off_t *res);
123int kern_mkdir(struct nameidata *nd, int mode);
124int kern_mknod(struct nameidata *nd, int mode, int dev);
125int kern_open(struct nameidata *nd, int flags, int mode, int *res);
126int kern_readlink(struct nameidata *nd, char *buf, int count, int *res);
127int kern_rename(struct nameidata *fromnd, struct nameidata *tond);
128int kern_rmdir(struct nameidata *nd);
129int kern_stat(struct nameidata *nd, struct stat *st);
130int kern_statfs(struct nameidata *nd, struct statfs *buf);
131int kern_symlink(char *path, struct nameidata *nd);
132int kern_truncate(struct nameidata *nd, off_t length);
133int kern_unlink(struct nameidata *nd);
134int kern_utimes(struct nameidata *nd, struct timeval *tptr);
135
136#endif /* !_SYS_KERN_SYSCALL_H_ */