Deleted Added
full compact
procfs_fpregs.c (75893) procfs_fpregs.c (76166)
1/*
2 * Copyright (c) 1993 Jan-Simon Pendry
3 * Copyright (c) 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Jan-Simon Pendry.
8 *

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

32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)procfs_fpregs.c 8.2 (Berkeley) 6/15/94
38 *
39 * From:
1/*
2 * Copyright (c) 1993 Jan-Simon Pendry
3 * Copyright (c) 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Jan-Simon Pendry.
8 *

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

32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)procfs_fpregs.c 8.2 (Berkeley) 6/15/94
38 *
39 * From:
40 * $FreeBSD: head/sys/fs/procfs/procfs_fpregs.c 75893 2001-04-24 00:51:53Z jhb $
40 * $FreeBSD: head/sys/fs/procfs/procfs_fpregs.c 76166 2001-05-01 08:13:21Z markm $
41 */
42
43#include <sys/param.h>
41 */
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/lock.h>
46#include <sys/mutex.h>
44#include <sys/proc.h>
45#include <sys/vnode.h>
47#include <sys/proc.h>
48#include <sys/vnode.h>
46#include <sys/systm.h>
49
47#include <machine/reg.h>
50#include <machine/reg.h>
51
48#include <miscfs/procfs/procfs.h>
52#include <miscfs/procfs/procfs.h>
53
49#include <vm/vm.h>
50
51int
52procfs_dofpregs(curp, p, pfs, uio)
53 struct proc *curp;
54 struct proc *p;
55 struct pfsnode *pfs;
56 struct uio *uio;

--- 43 unchanged lines hidden ---
54#include <vm/vm.h>
55
56int
57procfs_dofpregs(curp, p, pfs, uio)
58 struct proc *curp;
59 struct proc *p;
60 struct pfsnode *pfs;
61 struct uio *uio;

--- 43 unchanged lines hidden ---