svn commit: r197028 - stable/8/sys/sys

Konstantin Belousov kib at FreeBSD.org
Wed Sep 9 10:31:11 UTC 2009


Author: kib
Date: Wed Sep  9 10:31:09 2009
New Revision: 197028
URL: http://svn.freebsd.org/changeset/base/197028

Log:
  Use traditional td_unusedX names for the padding members.
  
  Suggested by:	julian
  Approved by:	re (kensmith)

Modified:
  stable/8/sys/sys/proc.h

Modified: stable/8/sys/sys/proc.h
==============================================================================
--- stable/8/sys/sys/proc.h	Wed Sep  9 10:13:56 2009	(r197027)
+++ stable/8/sys/sys/proc.h	Wed Sep  9 10:31:09 2009	(r197028)
@@ -267,9 +267,9 @@ struct thread {
 	struct vm_object *td_kstack_obj;/* (a) Kstack object. */
 	vm_offset_t	td_kstack;	/* (a) Kernel VA of kstack. */
 	int		td_kstack_pages; /* (a) Size of the kstack. */
-	void		*td_space1;
-	vm_offset_t	td_space2;
-	int		td_space3;
+	void		*td_unused1;
+	vm_offset_t	td_unused2;
+	int		td_unused3;
 	volatile u_int	td_critnest;	/* (k*) Critical section nest level. */
 	struct mdthread td_md;		/* (k) Any machine-dependent fields. */
 	struct td_sched	*td_sched;	/* (*) Scheduler-specific data. */


More information about the svn-src-stable mailing list