Bug 478484 - Mars hangs when "Terminate" selected while at breakpoint
Summary: Mars hangs when "Terminate" selected while at breakpoint
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-debug (show other bugs)
Version: Next   Edit
Hardware: Macintosh Mac OS X
: P3 major (vote)
Target Milestone: ---   Edit
Assignee: cdt-debug-inbox@eclipse.org CLA
QA Contact: Jonah Graham CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-09-27 01:53 EDT by Andrew Lentvorski CLA
Modified: 2020-09-04 15:24 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Lentvorski CLA 2015-09-27 01:53:08 EDT
In the following program, if I put a breakpoint at line 8 (printf("Foo2n")), hit the break point, and then hit "Terminate" Eclipse goes into the spinning beachball of death


<code>
#include <stdio.h>
#include <stdlib.h>

int main(void) {
	puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */

	printf("Foo2\n");

	return EXIT_SUCCESS;
}
</code>

OS X 10.9.5  2.6GHz Intel Core i5  8GB RAM

Eclipse Mars CDT 8.7.0.201506070905

$ java -version
java version "1.8.0_60"
Java(TM) SE Runtime Environment (build 1.8.0_60-b27)
Java HotSpot(TM) 64-Bit Server VM (build 25.60-b23, mixed mode)