mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Fix 432151 (Thread id no longer shown in multicore visualizer)
Change-Id: Ie62f974a2748fa82b3d3a9dc53bd65cbabe744f3 Signed-off-by: Xavier Raynaud <xavier.raynaud@kalray.eu> Reviewed-on: https://git.eclipse.org/r/24534 Reviewed-by: Marc Dumais <marc.dumais@ericsson.com> IP-Clean: Marc Dumais <marc.dumais@ericsson.com> Tested-by: Marc Dumais <marc.dumais@ericsson.com>
This commit is contained in:
parent
cff738fe0b
commit
066be2ffce
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
* Contributors:
|
||||
* William R. Swanson (Tilera Corporation) - initial API and implementation
|
||||
* Xavier Raynaud (Kalray) - Bug 431690
|
||||
* Xavier Raynaud (Kalray) - Bug 431690, 432151
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.dsf.gdb.multicorevisualizer.internal.ui.view;
|
||||
|
@ -177,7 +177,7 @@ public class MulticoreVisualizerThread extends MulticoreVisualizerGraphicObject
|
|||
|
||||
// draw TID
|
||||
String displayTID = Integer.toString(m_thread.getTID());
|
||||
GUIUtils.drawText(gc, displayTID, m_bounds, x + w + 4, y + 2);
|
||||
GUIUtils.drawText(gc, displayTID, x + w + 4, y + 2);
|
||||
|
||||
// draw selection marker, if any
|
||||
if (m_selected)
|
||||
|
|
Loading…
Add table
Reference in a new issue