diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-08-22 21:53:42 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-08-25 13:21:58 +0200 |
commit | 961d061ba177a79fe9f91404e3cd4d0d0bc30a87 (patch) | |
tree | 4d9338f46e3df90ccca35e7513b262077767ff57 /sal/osl/unx/process.cxx | |
parent | d386f88774df977691f9cb6ab231aa5b085d0b70 (diff) |
set names on some UNIX-only threads
Change-Id: I4c247916256618312e7d98673d9db4d26e26fa39
Diffstat (limited to 'sal/osl/unx/process.cxx')
-rw-r--r-- | sal/osl/unx/process.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sal/osl/unx/process.cxx b/sal/osl/unx/process.cxx index eb2458643c6e..8503ff0deb75 100644 --- a/sal/osl/unx/process.cxx +++ b/sal/osl/unx/process.cxx @@ -190,6 +190,8 @@ extern "C" { static void ChildStatusProc(void *pData) { + osl_setThreadName("osl_executeProcess"); + pid_t pid = -1; int status = 0; int channel[2] = { -1, -1 }; |