summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_futex.h
diff options
context:
space:
mode:
authordchagin <dchagin@FreeBSD.org>2016-01-09 15:16:13 +0000
committerdchagin <dchagin@FreeBSD.org>2016-01-09 15:16:13 +0000
commitcb3b38d1640b6a07cdc16de9cc37c2da8cfff4c1 (patch)
treea6590a108af61dda64e892cb9d59ab130e0f805b /sys/compat/linux/linux_futex.h
parentccb67dae7f74133acb97e4894ad207af1d13a6c4 (diff)
downloadFreeBSD-src-cb3b38d1640b6a07cdc16de9cc37c2da8cfff4c1.zip
FreeBSD-src-cb3b38d1640b6a07cdc16de9cc37c2da8cfff4c1.tar.gz
MFC r283383:
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.
Diffstat (limited to 'sys/compat/linux/linux_futex.h')
-rw-r--r--sys/compat/linux/linux_futex.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_futex.h b/sys/compat/linux/linux_futex.h
index 0990daa..7922743 100644
--- a/sys/compat/linux/linux_futex.h
+++ b/sys/compat/linux/linux_futex.h
@@ -76,6 +76,7 @@ extern struct mtx futex_mtx;
#define FUTEX_TID_MASK 0x3fffffff
#define FUTEX_BITSET_MATCH_ANY 0xffffffff
-void release_futexes(struct proc *);
+void release_futexes(struct thread *,
+ struct linux_emuldata *);
#endif /* !_LINUX_FUTEX_H */
OpenPOWER on IntegriCloud