Module Name: src
Committed By: matt
Date: Wed Apr 6 05:38:19 UTC 2011
Modified Files:
src/sys/arch/mips/mips: genassym.cf
Log Message:
Sort LWP fields
To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/mips/mips/genassym.cf
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/mips/genassym.cf
diff -u src/sys/arch/mips/mips/genassym.cf:1.53 src/sys/arch/mips/mips/genassym.cf:1.54
--- src/sys/arch/mips/mips/genassym.cf:1.53 Tue Mar 15 07:39:22 2011
+++ src/sys/arch/mips/mips/genassym.cf Wed Apr 6 05:38:19 2011
@@ -1,4 +1,4 @@
-# $NetBSD: genassym.cf,v 1.53 2011/03/15 07:39:22 matt Exp $
+# $NetBSD: genassym.cf,v 1.54 2011/04/06 05:38:19 matt Exp $
#
# Copyright (c) 1992, 1993
# The Regents of the University of California. All rights reserved.
@@ -106,20 +106,20 @@
define MIPS_XKSEG_START MIPS_XKSEG_START
# Important offsets into the lwp and proc structs & associated constants
-define L_PCB offsetof(struct lwp, l_addr)
define L_CPU offsetof(struct lwp, l_cpu)
+define L_CTXSWITCH offsetof(struct lwp, l_ctxswtch)
+define L_PCB offsetof(struct lwp, l_addr)
define L_PRIORITY offsetof(struct lwp, l_priority)
-define L_WCHAN offsetof(struct lwp, l_wchan)
-define L_STAT offsetof(struct lwp, l_stat)
-define L_PROC offsetof(struct lwp, l_proc)
define L_PRIVATE offsetof(struct lwp, l_private)
-define L_CTXSWITCH offsetof(struct lwp, l_ctxswtch)
+define L_PROC offsetof(struct lwp, l_proc)
+define L_STAT offsetof(struct lwp, l_stat)
define L_MD_UTF offsetof(struct lwp, l_md.md_utf)
if USPACE > PAGE_SIZE
define L_MD_UPTE_0 offsetof(struct lwp, l_md.md_upte[0])
define L_MD_UPTE_1 offsetof(struct lwp, l_md.md_upte[1])
endif
define L_MD_ASTPENDING offsetof(struct lwp, l_md.md_astpending)
+define L_WCHAN offsetof(struct lwp, l_wchan)
define P_RASLIST offsetof(struct proc, p_raslist)
define P_MD_SYSCALL offsetof(struct proc, p_md.md_syscall)