Deleted Added
full compact
syscallsubr.h (147178) syscallsubr.h (147302)
1/*-
2 * Copyright (c) 2002 Ian Dowse. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 *
1/*-
2 * Copyright (c) 2002 Ian Dowse. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 8 unchanged lines hidden (view full) ---

17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 *
25 * $FreeBSD: head/sys/sys/syscallsubr.h 147178 2005-06-09 17:44:46Z pjd $
25 * $FreeBSD: head/sys/sys/syscallsubr.h 147302 2005-06-11 14:58:20Z pjd $
26 */
27
28#ifndef _SYS_SYSCALLSUBR_H_
29#define _SYS_SYSCALLSUBR_H_
30
31#include <sys/signal.h>
32#include <sys/uio.h>
33#include <sys/socket.h>

--- 30 unchanged lines hidden (view full) ---

64int kern_execve(struct thread *td, struct image_args *args,
65 struct mac *mac_p);
66int kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg);
67int kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf);
68int kern_fstat(struct thread *td, int fd, struct stat *sbp);
69int kern_fstatfs(struct thread *td, int fd, struct statfs *buf);
70int kern_futimes(struct thread *td, int fd, struct timeval *tptr,
71 enum uio_seg tptrseg);
26 */
27
28#ifndef _SYS_SYSCALLSUBR_H_
29#define _SYS_SYSCALLSUBR_H_
30
31#include <sys/signal.h>
32#include <sys/uio.h>
33#include <sys/socket.h>

--- 30 unchanged lines hidden (view full) ---

64int kern_execve(struct thread *td, struct image_args *args,
65 struct mac *mac_p);
66int kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg);
67int kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf);
68int kern_fstat(struct thread *td, int fd, struct stat *sbp);
69int kern_fstatfs(struct thread *td, int fd, struct statfs *buf);
70int kern_futimes(struct thread *td, int fd, struct timeval *tptr,
71 enum uio_seg tptrseg);
72int kern_getfsstat(struct thread *td, struct statfs *buf, size_t bufsize,
72int kern_getfsstat(struct thread *td, struct statfs **buf, size_t bufsize,
73 enum uio_seg bufseg, int flags);
74int kern_getitimer(struct thread *, u_int, struct itimerval *);
75int kern_getrusage(struct thread *td, int who, struct rusage *rup);
76int kern_getsockopt(struct thread *td, int s, int level, int name,
77 void *optval, enum uio_seg valseg, socklen_t *valsize);
78int kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
79 struct kevent_copyops *k_ops, const struct timespec *timeout);
80int kern_lchown(struct thread *td, char *path, enum uio_seg pathseg,

--- 71 unchanged lines hidden ---
73 enum uio_seg bufseg, int flags);
74int kern_getitimer(struct thread *, u_int, struct itimerval *);
75int kern_getrusage(struct thread *td, int who, struct rusage *rup);
76int kern_getsockopt(struct thread *td, int s, int level, int name,
77 void *optval, enum uio_seg valseg, socklen_t *valsize);
78int kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
79 struct kevent_copyops *k_ops, const struct timespec *timeout);
80int kern_lchown(struct thread *td, char *path, enum uio_seg pathseg,

--- 71 unchanged lines hidden ---