Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 369677 - TCF debug is not able to step over
Summary: TCF debug is not able to step over
Status: RESOLVED FIXED
Alias: None
Product: TCF
Classification: Tools
Component: Debug (show other bugs)
Version: unspecified   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: 1.0.0   Edit
Assignee: Project Inbox CLA
QA Contact: Eugene Tarassov CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-01-25 10:31 EST by Frederic Leger CLA
Modified: 2013-06-05 05:42 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Frederic Leger CLA 2012-01-25 10:31:58 EST
Build Identifier: 20110916-0149

I created a simple C program :

#include <stdio.h>

int main
    (
    int		argc,
    char *	argv []
    )
    {
    printf ("1\n");
    printf ("2\n");
    return (0);
    }

Put a breakpoint on the first printf, started to debug. When the breakpoint is hit, I do a 'Step Over' ... but the debugger is lost (there is a stack level with address 0x00)

The arrow showing where the debugger is, is nowhere to be found

Reproducible: Always

Steps to Reproduce:
1.Build the simple C program described above
2.Set a breakpoint on the first printf
3.Debug with a TCF agent connection
4.When the breakpoint is hit, do a step over
Comment 1 Eugene Tarassov CLA 2012-01-25 15:18:34 EST
Caused by invalid value of address size in stack tracing of trampolines.
Fixed.
Thanks.