freebsd-dev/sys/i386/linux
Dmitry Chagin 81338031c4 Switch linuxulator to use the native 1:1 threads.
The reasons:
1. Get rid of the stubs/quirks with process dethreading,
   process reparent when the process group leader exits and close
   to this problems on wait(), waitpid(), etc.
2. Reuse our kernel code instead of writing excessive thread
   managment routines in Linuxulator.

Implementation details:

1. The thread is created via kern_thr_new() in the clone() call with
   the CLONE_THREAD parameter. Thus, everything else is a process.
2. The test that the process has a threads is done via P_HADTHREADS
   bit p_flag of struct proc.
3. Per thread emulator state data structure is now located in the
   struct thread and freed in the thread_dtor() hook.
   Mandatory holdig of the p_mtx required when referencing emuldata
   from the other threads.
4. PID mangling has changed. Now Linux pid is the native tid
   and Linux tgid is the native pid, with the exception of the first
   thread in the process where tid and pid are one and the same.

Ugliness:

   In case when the Linux thread is the initial thread in the thread
   group thread id is equal to the process id. Glibc depends on this
   magic (assert in pthread_getattr_np.c). So for system calls that
   take thread id as a parameter we should use the special method
   to reference struct thread.

Differential Revision:	https://reviews.freebsd.org/D1039
2015-05-24 14:53:16 +00:00
..
imgact_linux.c Add a mmap flag (MAP_32BIT) on 64-bit platforms to request that a mapping use 2013-09-09 18:11:59 +00:00
linux_dummy.c - For kernel compiled only with KDTRACE_HOOKS and not any lock debugging 2013-11-25 07:38:45 +00:00
linux_genassym.c
linux_ipc64.h
linux_locore.s
linux_machdep.c Switch linuxulator to use the native 1:1 threads. 2015-05-24 14:53:16 +00:00
linux_proto.h Regen for r283379. 2015-05-24 14:47:00 +00:00
linux_ptrace.c MFamd64: Add support for extended FPU states on i386. This includes 2014-11-02 22:58:30 +00:00
linux_support.s
linux_syscall.h Regen for r283379. 2015-05-24 14:47:00 +00:00
linux_syscalls.c Regen for r283379. 2015-05-24 14:47:00 +00:00
linux_sysent.c Regen for r283379. 2015-05-24 14:47:00 +00:00
linux_systrace_args.c Regen for r283379. 2015-05-24 14:47:00 +00:00
linux_sysvec.c Switch linuxulator to use the native 1:1 threads. 2015-05-24 14:53:16 +00:00
linux.h In preparation for switching linuxulator to the use the native 1:1 2015-05-24 14:29:35 +00:00
Makefile
syscalls.conf
syscalls.master Implement a Linux version of sched_getparam() && sched_setparam(). 2015-05-24 14:45:57 +00:00