Deleted Added
full compact
proc.h (17702) proc.h (18277)
1/*-
2 * Copyright (c) 1986, 1989, 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 * @(#)proc.h 8.15 (Berkeley) 5/19/95
1/*-
2 * Copyright (c) 1986, 1989, 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 * @(#)proc.h 8.15 (Berkeley) 5/19/95
39 * $Id: proc.h,v 1.26 1996/07/31 09:26:54 davidg Exp $
39 * $Id: proc.h,v 1.27 1996/08/20 07:18:08 smpatel Exp $
40 */
41
42#ifndef _SYS_PROC_H_
43#define _SYS_PROC_H_
44
45#include <machine/proc.h> /* Machine-dependent proc substruct. */
46#include <sys/rtprio.h> /* For struct rtprio. */
47#include <sys/select.h> /* For struct selinfo. */

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

300void sleepinit __P((void));
301void remrq __P((struct proc *));
302void cpu_switch __P((struct proc *));
303int tsleep __P((void *chan, int pri, char *wmesg, int timo));
304void unsleep __P((struct proc *));
305void wakeup __P((void *chan));
306void wakeup_one __P((void *chan));
307
40 */
41
42#ifndef _SYS_PROC_H_
43#define _SYS_PROC_H_
44
45#include <machine/proc.h> /* Machine-dependent proc substruct. */
46#include <sys/rtprio.h> /* For struct rtprio. */
47#include <sys/select.h> /* For struct selinfo. */

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

300void sleepinit __P((void));
301void remrq __P((struct proc *));
302void cpu_switch __P((struct proc *));
303int tsleep __P((void *chan, int pri, char *wmesg, int timo));
304void unsleep __P((struct proc *));
305void wakeup __P((void *chan));
306void wakeup_one __P((void *chan));
307
308__dead void cpu_exit __P((struct proc *)) __dead2;
309__dead void exit1 __P((struct proc *, int)) __dead2;
308void cpu_exit __P((struct proc *)) __dead2;
309void exit1 __P((struct proc *, int)) __dead2;
310int cpu_fork __P((struct proc *, struct proc *));
311int trace_req __P((struct proc *));
312void cpu_wait __P((struct proc *));
313int cpu_coredump __P((struct proc *, struct vnode *, struct ucred *));
314#endif /* KERNEL */
315
316#endif /* !_SYS_PROC_H_ */
310int cpu_fork __P((struct proc *, struct proc *));
311int trace_req __P((struct proc *));
312void cpu_wait __P((struct proc *));
313int cpu_coredump __P((struct proc *, struct vnode *, struct ucred *));
314#endif /* KERNEL */
315
316#endif /* !_SYS_PROC_H_ */