Update of /cvsroot/linux-vax/kernel-2.4/arch/mips/tools
In directory usw-pr-cvs1:/tmp/cvs-serv16972/mips/tools
Modified Files:
Makefile offset.c
Log Message:
synch 2.4.15
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/mips/tools/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
Index: offset.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/mips/tools/offset.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- offset.c 14 Jan 2001 19:28:33 -0000 1.1.1.1
+++ offset.c 10 Apr 2002 14:38:10 -0000 1.2
@@ -1,12 +1,13 @@
-/* $Id$
- *
+/*
* offset.c: Calculate pt_regs and task_struct offsets.
*
* Copyright (C) 1996 David S. Miller
* Copyright (C) 1997, 1998, 1999 Ralf Baechle
* Copyright (C) 1999 Silicon Graphics, Inc.
+ *
+ * Kevin Kissell, ke...@mi... and Carsten Langgaard, car...@mi...
+ * Copyright (C) 2000 MIPS Technologies, Inc.
*/
-
#include <linux/types.h>
#include <linux/sched.h>
@@ -84,6 +85,7 @@
offset("#define TASK_COUNTER ", struct task_struct, counter);
offset("#define TASK_NICE ", struct task_struct, nice);
offset("#define TASK_MM ", struct task_struct, mm);
+ offset("#define TASK_PID ", struct task_struct, pid);
size("#define TASK_STRUCT_SIZE ", struct task_struct);
linefeed;
}
@@ -119,6 +121,10 @@
thread.irix_trampoline);
offset("#define THREAD_OLDCTX ", struct task_struct, \
thread.irix_oldctx);
+ offset("#define THREAD_DSEEPC ", struct task_struct, \
+ thread.dsemul_epc);
+ offset("#define THREAD_DSEAERPC ", struct task_struct, \
+ thread.dsemul_aerpc);
linefeed;
}
|