Deleted Added
full compact
proc.h (182961) proc.h (207152)
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * from: @(#)proc.h 7.1 (Berkeley) 5/15/91
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * from: @(#)proc.h 7.1 (Berkeley) 5/15/91
30 * $FreeBSD: head/sys/i386/include/proc.h 182961 2008-09-12 09:53:29Z kib $
30 * $FreeBSD: head/sys/i386/include/proc.h 207152 2010-04-24 12:49:52Z kib $
31 */
32
33#ifndef _MACHINE_PROC_H_
34#define _MACHINE_PROC_H_
35
36#include <machine/segments.h>
37
38struct proc_ldt {

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

52 int md_spinlock_count; /* (k) */
53 register_t md_saved_flags; /* (k) */
54};
55
56struct mdproc {
57 struct proc_ldt *md_ldt; /* (t) per-process ldt */
58};
59
31 */
32
33#ifndef _MACHINE_PROC_H_
34#define _MACHINE_PROC_H_
35
36#include <machine/segments.h>
37
38struct proc_ldt {

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

52 int md_spinlock_count; /* (k) */
53 register_t md_saved_flags; /* (k) */
54};
55
56struct mdproc {
57 struct proc_ldt *md_ldt; /* (t) per-process ldt */
58};
59
60#define KINFO_PROC_SIZE 768
61
60#ifdef _KERNEL
61
62/* Get the current kernel thread stack usage. */
63#define GET_STACK_USAGE(total, used) do { \
64 struct thread *td = curthread; \
65 (total) = td->td_kstack_pages * PAGE_SIZE; \
66 (used) = (char *)td->td_kstack + \
67 td->td_kstack_pages * PAGE_SIZE - \

--- 13 unchanged lines hidden ---
62#ifdef _KERNEL
63
64/* Get the current kernel thread stack usage. */
65#define GET_STACK_USAGE(total, used) do { \
66 struct thread *td = curthread; \
67 (total) = td->td_kstack_pages * PAGE_SIZE; \
68 (used) = (char *)td->td_kstack + \
69 td->td_kstack_pages * PAGE_SIZE - \

--- 13 unchanged lines hidden ---