- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do Visual Studio breakpoints work when Inspector XE is being run?If I put a breakpoint at the line "i = 5;", below, execution stops at the closing brace of the "bar()" function. Execution does not stop at the breakpoint.
#include
void foo()
{
int i;
i = 5;
}
void bar()
{
foo();
}
void main()
{
int number;
printf("Type in a number\\n");
scanf("%d", &number);
bar();
}
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Current version of Intel Inspector XE 2011 doesn't support work with debugger. Some features in this area are planned in next major release.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page