mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-02 14:45:25 +02:00
[180994] I can't reproduce this problem but there was a locking problem recently discovered in version 7 RSE. I've put the fix here although I can't be sure if it fixes the problem Dave D and Martin are seeing.
This commit is contained in:
parent
b17abac910
commit
97e60bc916
3 changed files with 5 additions and 4 deletions
|
@ -203,6 +203,7 @@ implements ISchemaExtender
|
|||
DataElement cmd = (DataElement)_commandQueue.remove(0);
|
||||
command(cmd);
|
||||
}
|
||||
waitForInput();
|
||||
}
|
||||
|
||||
public final void requestCommand(DataElement command)
|
||||
|
|
|
@ -91,9 +91,9 @@ public abstract class CommandHandler extends Handler
|
|||
{
|
||||
_commands.add(command);
|
||||
}
|
||||
}
|
||||
notifyInput();
|
||||
}
|
||||
}
|
||||
notifyInput();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -155,9 +155,9 @@ public abstract class UpdateHandler extends Handler
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
notifyInput();
|
||||
}
|
||||
}
|
||||
notifyInput();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue