Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7b4ba5ab15fdfa68696858455ae163f5b8404f8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * (c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 *
 */
package org.eclipse.cdt.debug.mi.core.event;


/**
 * This can not be detected yet by gdb/mi.
 *
 */
public class MIThreadExitEvent extends MIDestroyedEvent {

	int tid;

	public MIThreadExitEvent(int id) {
		this(0, id);
	}

	public MIThreadExitEvent(int token, int id) {
		super(token);
		tid = id;
	}

	public int getId() {
		return tid;
	}
}

Back to the top