Deleted Added
full compact
proc.h (206819) proc.h (207152)
1/* $OpenBSD: proc.h,v 1.2 1998/09/15 10:50:12 pefo Exp $ */
2
3/*-
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Ralph Campbell.

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

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)proc.h 8.1 (Berkeley) 6/10/93
35 * JNPR: proc.h,v 1.7.2.1 2007/09/10 06:25:24 girish
1/* $OpenBSD: proc.h,v 1.2 1998/09/15 10:50:12 pefo Exp $ */
2
3/*-
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Ralph Campbell.

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

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)proc.h 8.1 (Berkeley) 6/10/93
35 * JNPR: proc.h,v 1.7.2.1 2007/09/10 06:25:24 girish
36 * $FreeBSD: head/sys/mips/include/proc.h 206819 2010-04-18 22:32:07Z jmallett $
36 * $FreeBSD: head/sys/mips/include/proc.h 207152 2010-04-24 12:49:52Z kib $
37 */
38
39#ifndef _MACHINE_PROC_H_
40#define _MACHINE_PROC_H_
41
42/*
43 * Machine-dependent part of the proc structure.
44 */

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

63 /* empty */
64};
65
66struct thread;
67
68void mips_cpu_switch(struct thread *, struct thread *, struct mtx *);
69void mips_cpu_throw(struct thread *, struct thread *);
70
37 */
38
39#ifndef _MACHINE_PROC_H_
40#define _MACHINE_PROC_H_
41
42/*
43 * Machine-dependent part of the proc structure.
44 */

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

63 /* empty */
64};
65
66struct thread;
67
68void mips_cpu_switch(struct thread *, struct thread *, struct mtx *);
69void mips_cpu_throw(struct thread *, struct thread *);
70
71#ifdef __mips_n64
72#define KINFO_PROC_SIZE 1088
73#else
74#define KINFO_PROC_SIZE 816
75#endif
76
71#endif /* !_MACHINE_PROC_H_ */
77#endif /* !_MACHINE_PROC_H_ */