mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
extends MIDestroyedEvent
This commit is contained in:
parent
68ef3ff80a
commit
7fabba9cb2
4 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ package org.eclipse.cdt.debug.mi.core.event;
|
||||||
*
|
*
|
||||||
* ^running
|
* ^running
|
||||||
*/
|
*/
|
||||||
public class MIDetachedEvent extends MIEvent {
|
public class MIDetachedEvent extends MIDestroyedEvent {
|
||||||
|
|
||||||
public MIDetachedEvent(int token) {
|
public MIDetachedEvent(int token) {
|
||||||
super(token);
|
super(token);
|
||||||
|
|
|
@ -10,7 +10,7 @@ package org.eclipse.cdt.debug.mi.core.event;
|
||||||
/**
|
/**
|
||||||
* Gdb Session terminated.
|
* Gdb Session terminated.
|
||||||
*/
|
*/
|
||||||
public class MIGDBExitEvent extends MIEvent {
|
public class MIGDBExitEvent extends MIDestroyedEvent {
|
||||||
|
|
||||||
public MIGDBExitEvent(int token) {
|
public MIGDBExitEvent(int token) {
|
||||||
super(token);
|
super(token);
|
||||||
|
|
|
@ -19,7 +19,7 @@ import org.eclipse.cdt.debug.mi.core.output.MIValue;
|
||||||
* ^done,reason="exited",exit-code="04"
|
* ^done,reason="exited",exit-code="04"
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class MIInferiorExitEvent extends MIEvent {
|
public class MIInferiorExitEvent extends MIDestroyedEvent {
|
||||||
|
|
||||||
int code = 0;
|
int code = 0;
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ package org.eclipse.cdt.debug.mi.core.event;
|
||||||
* This can not be detected yet by gdb/mi.
|
* This can not be detected yet by gdb/mi.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class MIThreadExitEvent extends MIEvent {
|
public class MIThreadExitEvent extends MIDestroyedEvent {
|
||||||
|
|
||||||
int tid;
|
int tid;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue