Deleted Added
full compact
syscallsubr.h (139825) syscallsubr.h (140483)
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 139825 2005-01-07 02:29:27Z imp $
25 * $FreeBSD: head/sys/sys/syscallsubr.h 140483 2005-01-19 18:09:50Z ps $
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>

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

65int kern_lutimes(struct thread *td, char *path, enum uio_seg pathseg,
66 struct timeval *tptr, enum uio_seg tptrseg);
67int kern_mkdir(struct thread *td, char *path, enum uio_seg segflg,
68 int mode);
69int kern_mkfifo(struct thread *td, char *path, enum uio_seg pathseg,
70 int mode);
71int kern_mknod(struct thread *td, char *path, enum uio_seg pathseg,
72 int mode, int dev);
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>

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

65int kern_lutimes(struct thread *td, char *path, enum uio_seg pathseg,
66 struct timeval *tptr, enum uio_seg tptrseg);
67int kern_mkdir(struct thread *td, char *path, enum uio_seg segflg,
68 int mode);
69int kern_mkfifo(struct thread *td, char *path, enum uio_seg pathseg,
70 int mode);
71int kern_mknod(struct thread *td, char *path, enum uio_seg pathseg,
72 int mode, int dev);
73int kern_nanosleep(struct thread *td, struct timespec *rqt,
74 struct timespec *rmt);
73int kern_open(struct thread *td, char *path, enum uio_seg pathseg,
74 int flags, int mode);
75int kern_ptrace(struct thread *td, int req, pid_t pid, void *addr,
76 int data);
77int kern_readlink(struct thread *td, char *path, enum uio_seg pathseg,
78 char *buf, enum uio_seg bufseg, int count);
79int kern_rename(struct thread *td, char *from, char *to,
80 enum uio_seg pathseg);

--- 33 unchanged lines hidden ---
75int kern_open(struct thread *td, char *path, enum uio_seg pathseg,
76 int flags, int mode);
77int kern_ptrace(struct thread *td, int req, pid_t pid, void *addr,
78 int data);
79int kern_readlink(struct thread *td, char *path, enum uio_seg pathseg,
80 char *buf, enum uio_seg bufseg, int count);
81int kern_rename(struct thread *td, char *from, char *to,
82 enum uio_seg pathseg);

--- 33 unchanged lines hidden ---