inputthread: On Linux leave the main thread's name as-is
On Linux, setting the main thread's name changes the program name (/proc/self/comm). Setting it to MainThread breaks scripts that rely on the command name, e.g. ps -C Xorg. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
parent
007f8ee61a
commit
5cb3283386
|
@ -431,11 +431,13 @@ InputThreadPreInit(void)
|
||||||
}
|
}
|
||||||
hotplugPipeWrite = hotplugPipe[1];
|
hotplugPipeWrite = hotplugPipe[1];
|
||||||
|
|
||||||
|
#ifndef __linux__ /* Linux does not deal well with renaming the main thread */
|
||||||
#if defined(HAVE_PTHREAD_SETNAME_NP_WITH_TID)
|
#if defined(HAVE_PTHREAD_SETNAME_NP_WITH_TID)
|
||||||
pthread_setname_np (pthread_self(), "MainThread");
|
pthread_setname_np (pthread_self(), "MainThread");
|
||||||
#elif defined(HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID)
|
#elif defined(HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID)
|
||||||
pthread_setname_np ("MainThread");
|
pthread_setname_np ("MainThread");
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue