Is there any way of setting the name of a thread in linux ?
My main purpose is it would be helpful while debugging, and also nice if that name was exposed through /proc/
|
|
Use the Note that the docs are a bit confusing. They say
but since threads are light weight processes (LWP) on Linux, one thread is one process in this case. You can see the thread name with
|
|||
|
As of glibc v2.12, you can use These interfaces are available on a few other POSIX systems (BSD, QNX, Mac) in various slightly different forms. Setting the name will be something like this:
And you can get the name back:
As you can see it's not immediately portable between POSIX systems, but as far as I can tell across linux it should be consistent. Apart from Mac OS X (where you can only do it from within the thread), the others are at least simple to adapt for cross-platform code. Sources: |
|||||
|
|
You can implement this yourself by creating a dictionary mapping |
|||||||||||||
|