Deleted Added
full compact
frame.h (103614) frame.h (132520)
1/*
2 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3 * Copyright (C) 1995, 1996 TooLs GmbH.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $NetBSD: frame.h,v 1.2 1999/01/10 10:13:15 tsubai Exp $
1/*
2 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3 * Copyright (C) 1995, 1996 TooLs GmbH.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $NetBSD: frame.h,v 1.2 1999/01/10 10:13:15 tsubai Exp $
32 * $FreeBSD: head/sys/powerpc/include/frame.h 103614 2002-09-19 04:45:32Z grehan $
32 * $FreeBSD: head/sys/powerpc/include/frame.h 132520 2004-07-22 01:28:51Z grehan $
33 */
34
35#ifndef _MACHINE_FRAME_H_
36#define _MACHINE_FRAME_H_
37
38#include <sys/types.h>
39
40/*

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

80 int pri;
81 int depth;
82};
83
84/*
85 * Call frame for PowerPC used during fork.
86 */
87struct callframe {
33 */
34
35#ifndef _MACHINE_FRAME_H_
36#define _MACHINE_FRAME_H_
37
38#include <sys/types.h>
39
40/*

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

80 int pri;
81 int depth;
82};
83
84/*
85 * Call frame for PowerPC used during fork.
86 */
87struct callframe {
88 register_t cf_dummy_fp; /* dummy frame pointer */
89 register_t cf_lr; /* space for link register save */
88 register_t cf_func;
89 register_t cf_arg0;
90 register_t cf_arg1;
91};
92
93#define IFRAMELEN sizeof(struct intrframe)
94struct intrframe {
95 register_t r1; /* 0 */

--- 49 unchanged lines hidden ---
90 register_t cf_func;
91 register_t cf_arg0;
92 register_t cf_arg1;
93};
94
95#define IFRAMELEN sizeof(struct intrframe)
96struct intrframe {
97 register_t r1; /* 0 */

--- 49 unchanged lines hidden ---