Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-debug-dev] Update on the debugger(for 1.2)

Bonjour

	A quick update on the state of the debugger.

* Formating of variable values
  - Done

* Detailed Pane(part of the variable view)
	char *buffer = "Foobar";
	the detailed panel shows "Foobar".
  - Done

* Casting variables(variable view), including
  the feature to "display as array"
  - Done

* Variables book-keeping,
  disable the auto-update, necessary for variables that
  are volatile, the querying is to intrusive.
  - Done

* Variable Arrays.  MI changes to better deal with them
	and avoid time outs:
	char buffer[500];
	-var-create - * buffer@100
	-var-create - * (buffer + 100)@200
	....
  - Done

* Add ICDIType hierarchy to let CDT/Debug/UI do
  nicer things when displaying.
  - Done

* SourceLocator
  - Done

* Breakpoint with Condition now works
  - Done, workaround to GDB bugs.

* Deferred breakpoint for shared libraries
 - Work in Progress

* Thread breakpoints
  - Work in Progress

* Setting breakpoints on External files
  - Stalled (Eclipse-3.0 will provide this)

* Global view to show static variables.
  - Work in progress.




Back to the top