Deleted Added
full compact
proc.h (144637) proc.h (188540)
1/*-
2 * Copyright (c) 1991 Regents of the University of California.
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

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

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * from: @(#)proc.h 7.1 (Berkeley) 5/15/91
34 * from: FreeBSD: src/sys/i386/include/proc.h,v 1.11 2001/06/29
1/*-
2 * Copyright (c) 1991 Regents of the University of California.
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

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

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * from: @(#)proc.h 7.1 (Berkeley) 5/15/91
34 * from: FreeBSD: src/sys/i386/include/proc.h,v 1.11 2001/06/29
35 * $FreeBSD: head/sys/arm/include/proc.h 144637 2005-04-04 21:53:56Z jhb $
35 * $FreeBSD: head/sys/arm/include/proc.h 188540 2009-02-12 23:23:30Z cognet $
36 */
37
38#ifndef _MACHINE_PROC_H_
39#define _MACHINE_PROC_H_
40
41#include <machine/utrap.h>
42
43struct md_utrap {
44 utrap_entry_t *ut_precise[UT_MAX]; /* must be first */
45 int ut_refcnt;
46};
47
48struct mdthread {
49 int md_spinlock_count; /* (k) */
50 register_t md_saved_cspr; /* (k) */
51 int md_ptrace_instr;
52 int md_ptrace_addr;
53 void *md_tp;
36 */
37
38#ifndef _MACHINE_PROC_H_
39#define _MACHINE_PROC_H_
40
41#include <machine/utrap.h>
42
43struct md_utrap {
44 utrap_entry_t *ut_precise[UT_MAX]; /* must be first */
45 int ut_refcnt;
46};
47
48struct mdthread {
49 int md_spinlock_count; /* (k) */
50 register_t md_saved_cspr; /* (k) */
51 int md_ptrace_instr;
52 int md_ptrace_addr;
53 void *md_tp;
54 void *md_ras_start;
55 void *md_ras_end;
54};
55
56struct mdproc {
57 struct md_utrap *md_utrap;
58 void *md_sigtramp;
59};
60
61#endif /* !_MACHINE_PROC_H_ */
56};
57
58struct mdproc {
59 struct md_utrap *md_utrap;
60 void *md_sigtramp;
61};
62
63#endif /* !_MACHINE_PROC_H_ */