Deleted Added
full compact
systm.h (72908) systm.h (74890)
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)systm.h 8.7 (Berkeley) 3/29/95
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)systm.h 8.7 (Berkeley) 3/29/95
39 * $FreeBSD: head/sys/sys/systm.h 72908 2001-02-22 17:14:24Z jhb $
39 * $FreeBSD: head/sys/sys/systm.h 74890 2001-03-28 01:37:29Z ps $
40 */
41
42#ifndef _SYS_SYSTM_H_
43#define _SYS_SYSTM_H_
44
45#include <machine/atomic.h>
46#include <machine/cpufunc.h>
47#include <sys/callout.h>

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

86struct mtx;
87struct proc;
88struct timeval;
89struct tty;
90struct ucred;
91struct uio;
92
93void Debugger __P((const char *msg));
40 */
41
42#ifndef _SYS_SYSTM_H_
43#define _SYS_SYSTM_H_
44
45#include <machine/atomic.h>
46#include <machine/cpufunc.h>
47#include <sys/callout.h>

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

86struct mtx;
87struct proc;
88struct timeval;
89struct tty;
90struct ucred;
91struct uio;
92
93void Debugger __P((const char *msg));
94int dumpstatus __P((vm_offset_t addr, long count));
94int nullop __P((void));
95int eopnotsupp __P((void));
96int einval __P((void));
97int seltrue __P((dev_t dev, int which, struct proc *p));
98int ureadc __P((int, struct uio *));
99void *hashinit __P((int count, struct malloc_type *type, u_long *hashmask));
100void *phashinit __P((int count, struct malloc_type *type, u_long *nentries));
101

--- 176 unchanged lines hidden ---
95int nullop __P((void));
96int eopnotsupp __P((void));
97int einval __P((void));
98int seltrue __P((dev_t dev, int which, struct proc *p));
99int ureadc __P((int, struct uio *));
100void *hashinit __P((int count, struct malloc_type *type, u_long *hashmask));
101void *phashinit __P((int count, struct malloc_type *type, u_long *nentries));
102

--- 176 unchanged lines hidden ---