mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 17:25:38 +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()
|
||||
{
|
||||
try
|
||||
{
|
||||
/*
|
||||
* As per bug 228335, this is commented out.
|
||||
*
|
||||
try
|
||||
{
|
||||
|
||||
ISystemService systemService = SystemServiceManager.getInstance().getSystemService();
|
||||
if (systemService != null){
|
||||
systemService.executeThread(this);
|
||||
}
|
||||
else
|
||||
*/
|
||||
|
||||
{
|
||||
super.start();
|
||||
}
|
||||
|
@ -163,6 +164,8 @@ public class SecuredThread extends Thread
|
|||
{
|
||||
e.printStackTrace(new PrintWriter(System.err));
|
||||
}
|
||||
*/
|
||||
super.start();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue