Deleted Added
full compact
pipe.h (55205) pipe.h (70834)
1/*
2 * Copyright (c) 1996 John S. Dyson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

13 * documentation and/or other materials provided with the distribution.
14 * 3. Absolutely no warranty of function or purpose is made by the author
15 * John S. Dyson.
16 * 4. This work was done expressly for inclusion into FreeBSD. Other use
17 * is allowed if this notation is included.
18 * 5. Modifications may be freely made to this file if the above conditions
19 * are met.
20 *
1/*
2 * Copyright (c) 1996 John S. Dyson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

13 * documentation and/or other materials provided with the distribution.
14 * 3. Absolutely no warranty of function or purpose is made by the author
15 * John S. Dyson.
16 * 4. This work was done expressly for inclusion into FreeBSD. Other use
17 * is allowed if this notation is included.
18 * 5. Modifications may be freely made to this file if the above conditions
19 * are met.
20 *
21 * $FreeBSD: head/sys/sys/pipe.h 55205 1999-12-29 04:46:21Z peter $
21 * $FreeBSD: head/sys/sys/pipe.h 70834 2001-01-09 04:33:49Z wollman $
22 */
23
24#ifndef _SYS_PIPE_H_
25#define _SYS_PIPE_H_
26
27#ifndef _KERNEL
28#include <sys/time.h> /* for struct timespec */
22 */
23
24#ifndef _SYS_PIPE_H_
25#define _SYS_PIPE_H_
26
27#ifndef _KERNEL
28#include <sys/time.h> /* for struct timespec */
29#include <sys/select.h> /* for struct selinfo */
29#include <sys/selinfo.h> /* for struct selinfo */
30#include <vm/vm.h> /* for vm_page_t */
31#include <machine/param.h> /* for PAGE_SIZE */
32#endif
33
34/*
35 * Pipe buffer size, keep moderate in value, pipes take kva space.
36 */
37#ifndef PIPE_SIZE

--- 74 unchanged lines hidden ---
30#include <vm/vm.h> /* for vm_page_t */
31#include <machine/param.h> /* for PAGE_SIZE */
32#endif
33
34/*
35 * Pipe buffer size, keep moderate in value, pipes take kva space.
36 */
37#ifndef PIPE_SIZE

--- 74 unchanged lines hidden ---