svn commit: r334060 - head/sys/sys

Mark Johnston markj at FreeBSD.org
Tue May 22 16:33:10 UTC 2018


Author: markj
Date: Tue May 22 16:33:09 2018
New Revision: 334060
URL: https://svnweb.freebsd.org/changeset/base/334060

Log:
  Fix the definition of td_startzero after r333466.

Modified:
  head/sys/sys/proc.h

Modified: head/sys/sys/proc.h
==============================================================================
--- head/sys/sys/proc.h	Tue May 22 16:32:34 2018	(r334059)
+++ head/sys/sys/proc.h	Tue May 22 16:33:09 2018	(r334060)
@@ -254,8 +254,8 @@ struct thread {
 	u_char		td_lend_user_pri; /* (t) Lend user pri. */
 
 /* Cleared during fork1() */
-#define	td_startzero td_flags
-	u_char	td_epochnest; /* (k) Private thread epoch nest counter */
+#define	td_startzero td_epochnest
+	u_char		td_epochnest;	/* (k) Epoch nest counter. */
 	int		td_flags;	/* (t) TDF_* flags. */
 	int		td_inhibitors;	/* (t) Why can not run. */
 	int		td_pflags;	/* (k) Private thread (TDP_*) flags. */


More information about the svn-src-all mailing list