diff options
author | Henry Castro <hcastro@collabora.com> | 2015-08-06 11:40:28 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2015-08-06 11:40:28 -0400 |
commit | 21531da576eca7ef9cb2ee78d1643b25d5f86ae3 (patch) | |
tree | 0f21ef4314055e746ff2cd4f002d5178950f596d /desktop | |
parent | da011e057e036c3f042bfdd64fed703ead9d9ec9 (diff) |
LOKit: set thread name lo_startmain
It is necessary the thread name for debugging LOKit threads.
Change-Id: I713595eb1319234ff90a6eddebcac5ebad912b04
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index aa8e27c7f48f..abd8ca0b640b 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -942,6 +942,8 @@ static bool initialize_uno(const OUString& aAppProgramURL) static void lo_startmain(void*) { + osl_setThreadName("lo_startmain"); + soffice_main(); } |