mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 12:35:22 +02:00
[228335] [dstore] [dstore][multithread] start() in SecuredThread class
This commit is contained in:
parent
e63686dc77
commit
d6ae5b45a2
1 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Noriaki Takatsu (IBM) - [220126] [dstore][api][breaking] Single process server for multiple clients
|
* Noriaki Takatsu (IBM) - [220126] [dstore][api][breaking] Single process server for multiple clients
|
||||||
|
* Noriaki Takatsu (IBM) - [228335] [dstore] [dstore][multithread] start() in SecuredThread class
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.dstore.core.server;
|
package org.eclipse.dstore.core.server;
|
||||||
|
@ -145,11 +146,15 @@ public class SecuredThread extends Thread
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
|
* As per bug 228335, this is commented out.
|
||||||
|
*
|
||||||
ISystemService systemService = SystemServiceManager.getInstance().getSystemService();
|
ISystemService systemService = SystemServiceManager.getInstance().getSystemService();
|
||||||
if (systemService != null){
|
if (systemService != null){
|
||||||
systemService.executeThread(this);
|
systemService.executeThread(this);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
*/
|
||||||
{
|
{
|
||||||
super.start();
|
super.start();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue