svn commit: r333817 - head/sys/sys

Matt Macy mmacy at FreeBSD.org
Fri May 18 23:17:50 UTC 2018


Author: mmacy
Date: Fri May 18 23:17:49 2018
New Revision: 333817
URL: https://svnweb.freebsd.org/changeset/base/333817

Log:
  Annotate td_pre_epoch_prio in struct thread
  
  Reported by:	jhb

Modified:
  head/sys/sys/proc.h

Modified: head/sys/sys/proc.h
==============================================================================
--- head/sys/sys/proc.h	Fri May 18 22:57:52 2018	(r333816)
+++ head/sys/sys/proc.h	Fri May 18 23:17:49 2018	(r333817)
@@ -322,7 +322,7 @@ struct thread {
 	u_char		td_pri_class;	/* (t) Scheduling class. */
 	u_char		td_user_pri;	/* (t) User pri from estcpu and nice. */
 	u_char		td_base_user_pri; /* (t) Base user pri */
-	u_char		td_pre_epoch_prio;
+	u_char		td_pre_epoch_prio; /* (k) User pri on entry to epoch */
 	uintptr_t	td_rb_list;	/* (k) Robust list head. */
 	uintptr_t	td_rbp_list;	/* (k) Robust priv list head. */
 	uintptr_t	td_rb_inact;	/* (k) Current in-action mutex loc. */


More information about the svn-src-all mailing list