mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Intl18 and cleanup
This commit is contained in:
parent
92d5c0eec5
commit
4370564636
4 changed files with 5 additions and 4 deletions
|
@ -178,7 +178,7 @@ public class MIInferior extends Process {
|
|||
abort.getMIInfo();
|
||||
setTerminated(abort.getToken(), true);
|
||||
} else if (session.isCoreSession() && !isTerminated()){
|
||||
setTerminated(0, true);
|
||||
setTerminated();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -464,7 +464,7 @@ public class MISession extends Observable {
|
|||
} catch (InterruptedException e) {
|
||||
}
|
||||
|
||||
// Allow (10 secs) for the EventThread to finish processing the queue.
|
||||
// Kill the event Thread ... if it is not us.
|
||||
if (!eventThread.equals(Thread.currentThread())) {
|
||||
// Kill the event Thread.
|
||||
try {
|
||||
|
|
|
@ -249,8 +249,8 @@ public class GDBCDIDebugger implements ICDIDebugger {
|
|||
protected String renderDebuggerProcessLabel() {
|
||||
String format = "{0} ({1})"; //$NON-NLS-1$
|
||||
String timestamp = DateFormat.getInstance().format(new Date(System.currentTimeMillis()));
|
||||
return MessageFormat.format(format, new String[]{
|
||||
"Debugger Process", timestamp}); //$NON-NLS-1$
|
||||
String message = MIPlugin.getResourceString("src.GDBDebugger.Debugger_process");
|
||||
return MessageFormat.format(format, new String[]{message, timestamp}); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -18,6 +18,7 @@ src.GDBDebugger.Error_initializing_shared_lib_options=Error initializing shared
|
|||
src.GDBDebugger.Error_creating_session=Error creating session:
|
||||
src.GDBDebugger.Error_launch_timeout=Launch timeout
|
||||
src.GDBDebugger.Error_launch_cancel=Launch cancel
|
||||
src.GDBDebugger.Debugger_process=Debugger Process
|
||||
src.MISession.Process_Terminated=Process Terminated
|
||||
src.MISession.Thread_Terminated={R,T}xThread terminated
|
||||
src.MISession.Target_not_suspended=Target is not suspended
|
||||
|
|
Loading…
Add table
Reference in a new issue