svn commit: r293489 - stable/10/sys/sys
Dmitry Chagin
dchagin at FreeBSD.org
Sat Jan 9 14:51:52 UTC 2016
Author: dchagin
Date: Sat Jan 9 14:51:50 2016
New Revision: 293489
URL: https://svnweb.freebsd.org/changeset/base/293489
Log:
MFC r283381:
In preparation for switching linuxulator to the use the native 1:1
threads add per thread emulator state data.
Modified:
stable/10/sys/sys/proc.h
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/sys/proc.h
==============================================================================
--- stable/10/sys/sys/proc.h Sat Jan 9 14:48:23 2016 (r293488)
+++ stable/10/sys/sys/proc.h Sat Jan 9 14:51:50 2016 (r293489)
@@ -323,6 +323,7 @@ struct thread {
void *td_su; /* (k) FFS SU private */
u_int td_dbg_sc_code; /* (c) Syscall code to debugger. */
u_int td_dbg_sc_narg; /* (c) Syscall arg count to debugger.*/
+ void *td_emuldata; /* Emulator state data */
};
struct mtx *thread_lock_block(struct thread *);
More information about the svn-src-stable-10
mailing list