Deleted Added
full compact
syscallsubr.h (286309) syscallsubr.h (286618)
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 286309 2015-08-05 07:36:50Z ed $
25 * $FreeBSD: head/sys/sys/syscallsubr.h 286618 2015-08-11 08:43:50Z ed $
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>

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

69 enum uio_seg pathseg, int flags, int mode);
70int kern_adjtime(struct thread *td, struct timeval *delta,
71 struct timeval *olddelta);
72int kern_alternate_path(struct thread *td, const char *prefix, const char *path,
73 enum uio_seg pathseg, char **pathbuf, int create, int dirfd);
74int kern_bindat(struct thread *td, int dirfd, int fd, struct sockaddr *sa);
75int kern_cap_ioctls_limit(struct thread *td, int fd, u_long *cmds,
76 size_t ncmds);
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>

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

69 enum uio_seg pathseg, int flags, int mode);
70int kern_adjtime(struct thread *td, struct timeval *delta,
71 struct timeval *olddelta);
72int kern_alternate_path(struct thread *td, const char *prefix, const char *path,
73 enum uio_seg pathseg, char **pathbuf, int create, int dirfd);
74int kern_bindat(struct thread *td, int dirfd, int fd, struct sockaddr *sa);
75int kern_cap_ioctls_limit(struct thread *td, int fd, u_long *cmds,
76 size_t ncmds);
77int kern_cap_rights_limit(struct thread *td, int fd, cap_rights_t *rights);
77int kern_chdir(struct thread *td, char *path, enum uio_seg pathseg);
78int kern_clock_getcpuclockid2(struct thread *td, id_t id, int which,
79 clockid_t *clk_id);
80int kern_clock_getres(struct thread *td, clockid_t clock_id,
81 struct timespec *ts);
82int kern_clock_gettime(struct thread *td, clockid_t clock_id,
83 struct timespec *ats);
84int kern_clock_settime(struct thread *td, clockid_t clock_id,

--- 177 unchanged lines hidden ---
78int kern_chdir(struct thread *td, char *path, enum uio_seg pathseg);
79int kern_clock_getcpuclockid2(struct thread *td, id_t id, int which,
80 clockid_t *clk_id);
81int kern_clock_getres(struct thread *td, clockid_t clock_id,
82 struct timespec *ts);
83int kern_clock_gettime(struct thread *td, clockid_t clock_id,
84 struct timespec *ats);
85int kern_clock_settime(struct thread *td, clockid_t clock_id,

--- 177 unchanged lines hidden ---