Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] [Bug 23877] Creating a breakpoint with a line number and no file name does not work (fwd)

> 
> ------- Additional Comments From alain@xxxxxxx  2002-09-20 13:22 -------
> Fix PR 23877.
> 
> The alogirthm for breakpoint location,
> 
> Interface:
> see org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager
> 
> GDB/MI implementation
> see org.eclipse.cdt.debug.mi.core.cdi.BreakpointManager
> 
> if (file != null) then
>    if (function != null) then
>        bpt = file:function
>    else
>        bpt = file:line
> else if (function != null) then
>    bpt = function
> else if (line != 0) then
>    bpt = line
> else
>    bpt = * address
> end
> 
> 

Once the clipboard works on GNU/Linux I'll happily copy/paste the patch.
'till then update.



Back to the top