mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 17:55:39 +02:00
[228335] [dstore][multithread] start() in SecuredThread class
This commit is contained in:
parent
8e5e935608
commit
5202697be6
1 changed files with 6 additions and 3 deletions
|
@ -144,17 +144,18 @@ public class SecuredThread extends Thread
|
||||||
*/
|
*/
|
||||||
public void start()
|
public void start()
|
||||||
{
|
{
|
||||||
try
|
|
||||||
{
|
|
||||||
/*
|
/*
|
||||||
* As per bug 228335, this is commented out.
|
* As per bug 228335, this is commented out.
|
||||||
*
|
*
|
||||||
|
try
|
||||||
|
{
|
||||||
|
|
||||||
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();
|
||||||
}
|
}
|
||||||
|
@ -163,6 +164,8 @@ public class SecuredThread extends Thread
|
||||||
{
|
{
|
||||||
e.printStackTrace(new PrintWriter(System.err));
|
e.printStackTrace(new PrintWriter(System.err));
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
super.start();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue