问题的简短版本:clone
如果我想为我正在创建的线程分配一个新的 TLS 区域,我需要将什么参数传递给 x86_64 Linux 系统上的系统调用。
长版:
我正在做一个研究项目,对于我正在试验的东西,我想使用clone
系统调用而不是使用pthread_create
. 但是,我也希望能够使用线程本地存储。我现在不打算创建很多线程,所以我可以为使用 clone 系统调用创建的每个线程创建一个新的 TLS 区域。
我正在查看手册页,clone
其中包含有关 TLS 参数标志的以下信息:
CLONE_SETTLS (since Linux 2.5.32)
The newtls argument is the new TLS (Thread Local Storage) descriptor.
(See set_thread_area(2).)
因此,我查看了手册页set_thread_area
并注意到以下内容看起来很有希望:
When set_thread_area() is passed an entry_number of -1, it uses a
free TLS entry. If set_thread_area() finds a free TLS entry, the value of
u_info->entry_number is set upon return to show which entry was changed.
但是,在对此进行试验后,似乎set_thread_area
在我的系统中没有实现(在 x86_64 平台上的 Ubunut 10.04)。当我运行以下代码时,我收到一条错误消息:set_thread_area() failed: Function not implemented
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <linux/unistd.h>
#include <asm/ldt.h>
int main()
{
struct user_desc u_info;
u_info.entry_number = -1;
int rc = syscall(SYS_set_thread_area,&u_info);
if(rc < 0) {
perror("set_thread_area() failed");
exit(-1);
}
printf("entry_number is %d",u_info.entry_number);
}
我还看到,当我使用 strace 时,看到pthread_create
调用时会发生什么,但我没有看到对set_thread_area
. 我也一直在查看 nptl pthread 源代码,试图了解它们在创建线程时做了什么。但我还没有完全理解它,我认为它比我想要做的更复杂,因为我不需要在 pthread 实现中那么健壮的东西。我假设set_thread_area
系统调用是针对 x86 的,并且有不同的机制用于x86_64
. 但目前我无法弄清楚它是什么,所以我希望这个问题能帮助我对我需要看的东西有所了解。