Recognizing the main thread based on its thread descriptor
Siddhesh Poyarekar
siddhesh@gotplt.org
Wed May 10 13:26:00 GMT 2017
On Wednesday 10 May 2017 02:58 PM, Florian Weimer wrote:
> Is there an internal way to tell if the current thread is the main thread?
>
> I need this to allocate thread-local state in a particular way (the main
> thread needs to get a copy of the global variable for backwards
> compatibility). Currently, this is handled with an initializer for the
> TLS variable and an override during pthread_create. I want to switch
> this to dynamic initialization.
>
> I can probably come up with a clever hack to express this, but I would
> prefer something explicit.
pthread_getattr_np uses the fact that stackblock is not set for a main
thread as the indication that it is the main thread.
Siddhesh
More information about the Libc-alpha
mailing list