Deleted Added
sdiff udiff text old ( 131942 ) new ( 153241 )
full compact
1/*-
2 * Copyright (c) 2003 Peter Wemm.
3 * Copyright (c) 1990 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * William Jolitz.
8 *

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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: @(#)frame.h 5.2 (Berkeley) 1/18/91
34 * $FreeBSD: head/sys/amd64/include/frame.h 153241 2005-12-08 18:33:30Z jhb $
35 */
36
37#ifndef _MACHINE_FRAME_H_
38#define _MACHINE_FRAME_H_ 1
39
40/*
41 * System stack frames.
42 */

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

71 register_t tf_err;
72 register_t tf_rip;
73 register_t tf_cs;
74 register_t tf_rflags;
75 register_t tf_rsp;
76 register_t tf_ss;
77};
78
79/* frame of clock (same as interrupt frame) */
80
81struct clockframe {
82 register_t cf_rdi;
83 register_t cf_rsi;
84 register_t cf_rdx;
85 register_t cf_rcx;
86 register_t cf_r8;

--- 23 unchanged lines hidden ---