1
0
Fork 0
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:
David McKnight 2007-04-07 20:24:48 +00:00
parent b17abac910
commit 97e60bc916
3 changed files with 5 additions and 4 deletions

View file

@ -203,6 +203,7 @@ implements ISchemaExtender
DataElement cmd = (DataElement)_commandQueue.remove(0);
command(cmd);
}
waitForInput();
}
public final void requestCommand(DataElement command)

View file

@ -91,9 +91,9 @@ public abstract class CommandHandler extends Handler
{
_commands.add(command);
}
}
notifyInput();
}
}
notifyInput();
}
/**

View file

@ -155,9 +155,9 @@ public abstract class UpdateHandler extends Handler
}
}
}
}
notifyInput();
}
}
notifyInput();
}
/**