svn commit: r229372 - stable/9/sys/i386/include

Konstantin Belousov kib at FreeBSD.org
Tue Jan 3 09:27:23 UTC 2012


Author: kib
Date: Tue Jan  3 09:27:23 2012
New Revision: 229372
URL: http://svn.freebsd.org/changeset/base/229372

Log:
  MFC r229104:
  Make the comment in i386/include/ucontext.h identical to the one in
  amd64/include/ucontext.h. The later is better worded.

Modified:
  stable/9/sys/i386/include/ucontext.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/i386/include/ucontext.h
==============================================================================
--- stable/9/sys/i386/include/ucontext.h	Tue Jan  3 09:17:50 2012	(r229371)
+++ stable/9/sys/i386/include/ucontext.h	Tue Jan  3 09:27:23 2012	(r229372)
@@ -33,9 +33,10 @@
 
 typedef struct __mcontext {
 	/*
-	 * The definition of mcontext_t shall match the layout of
-	 * struct sigcontext after the sc_mask member.  So that we can
-	 * support sigcontext and ucontext_t at the same time.
+	 * The definition of mcontext_t must match the layout of
+	 * struct sigcontext after the sc_mask member.  This is so
+	 * that we can support sigcontext and ucontext_t at the same
+	 * time.
 	 */
 	__register_t	mc_onstack;	/* XXX - sigcontext compat. */
 	__register_t	mc_gs;		/* machine state (struct trapframe) */


More information about the svn-src-all mailing list