svn commit: r283381 - head/sys/sys

Dmitry Chagin dchagin at FreeBSD.org
Sun May 24 14:49:22 UTC 2015


Author: dchagin
Date: Sun May 24 14:49:21 2015
New Revision: 283381
URL: https://svnweb.freebsd.org/changeset/base/283381

Log:
  In preparation for switching linuxulator to the use the native 1:1
  threads add per thread emulator state data.
  
  Differential Revision:	https://reviews.freebsd.org/D1037
  Reviewed by:	trasz

Modified:
  head/sys/sys/proc.h

Modified: head/sys/sys/proc.h
==============================================================================
--- head/sys/sys/proc.h	Sun May 24 14:47:00 2015	(r283380)
+++ head/sys/sys/proc.h	Sun May 24 14:49:21 2015	(r283381)
@@ -325,6 +325,7 @@ struct thread {
 	struct proc	*td_rfppwait_p;	/* (k) The vforked child */
 	struct vm_page	**td_ma;	/* (k) uio pages held */
 	int		td_ma_cnt;	/* (k) size of *td_ma */
+	void		*td_emuldata;	/* Emulator state data */
 };
 
 struct mtx *thread_lock_block(struct thread *);


More information about the svn-src-all mailing list