1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
Commit graph

1500 commits

Author SHA1 Message Date
Mikhail Khodjaiants
c7b323e4fb Fix for PR 43624: The "Show Types Name" action of the Registers view doesn't work. 2003-09-25 02:12:59 +00:00
Peter Graves
55d821e0a2 Cleanup to remove warnings. 2003-09-24 14:41:09 +00:00
Mikhail Khodjaiants
66859771be Changed the 'hasStackFrames' method of the 'CThread' class to return true regardless if the thread contains stack frames or not. This method is only used by UI to update the thread label. 2003-09-23 20:51:28 +00:00
Mikhail Khodjaiants
65f3447d5a Moved the 'AddAddressBreakpointActionDelegate' action to the 'org.eclipse.cdt.debug.internal.ui.actions' package. 2003-09-22 17:31:55 +00:00
Mikhail Khodjaiants
6e4db834c0 Temporary fix for PR 39061: Attach source does not work for applications compiled in CygWin. 2003-09-17 21:57:33 +00:00
Mikhail Khodjaiants
6b328b777c Cleanup. 2003-09-16 21:10:35 +00:00
Mikhail Khodjaiants
0cca8134a6 Correct dates. 2003-09-16 21:09:46 +00:00
Mikhail Khodjaiants
93129aabdc Fix for PR 38468: Error in files location.
Use the 'getCanonicalPath' method of the 'File' class to obtain the file name.
2003-09-16 18:40:02 +00:00
Mikhail Khodjaiants
5669e06d25 Fix for PR 43101: Breakpoint exception when source doesn't exist.
The 'fireBreakpointChanged' method of 'BreakpointManager' is used to notify the UI components that a breakpoint is added. This is a part of new implementation to support deffered breakpoints. For new breakpoints the 'delta' argument is null. Check if delta is not null to avoid this problem.
2003-09-15 18:33:15 +00:00
Mikhail Khodjaiants
5d9f94704f Reset the selection of variable after casting. 2003-09-11 21:01:20 +00:00
Mikhail Khodjaiants
ad5028bba4 Detail Pane values for casted variables. 2003-09-11 20:58:25 +00:00
Mikhail Khodjaiants
73a655acfe The qualified name should be chached in the InternalVariable. 2003-09-11 20:57:55 +00:00
Mikhail Khodjaiants
8bd60b7ecd Added new field to store the chached value of the qualified name. 2003-09-11 20:57:22 +00:00
Mikhail Khodjaiants
22e130fbe7 Moving the shared library search paths block to mi UI. 2003-09-11 17:44:42 +00:00
Alain Magloire
af12903eaa updated. 2003-09-11 16:40:30 +00:00
Alain Magloire
0f58242ba8 FIx parsing. 2003-09-11 16:40:19 +00:00
Mikhail Khodjaiants
09c4ef716b Added the 'org.eclipse.cdt.debug.mi.internal.ui.dialogfields' package. 2003-09-11 15:26:14 +00:00
Mikhail Khodjaiants
86bd34cb79 If breakpoint is a line breakpoint check if source locator contains the file instead of container project. 2003-09-10 21:23:38 +00:00
Mikhail Khodjaiants
95edb19234 Fix for PR 42790: Memory view is not cleared when target is terminated 2003-09-10 15:26:23 +00:00
Mikhail Khodjaiants
cc49de64a7 Fix for PR 39680: Gash in error message for memory view. 2003-09-09 19:25:07 +00:00
Mikhail Khodjaiants
2f62fb6d57 Final fix for PR 39484: Move 'getType' method from ICDIVariable to ICDIVaraibleObject. 2003-09-09 17:39:19 +00:00
Mikhail Khodjaiants
30b346c1a1 Regrouping the launch configuration constants. 2003-09-08 21:49:31 +00:00
Mikhail Khodjaiants
2a80da7743 New UI for the 'Debugger' page of launch configuration. 2003-09-08 21:42:43 +00:00
Mikhail Khodjaiants
ce59a25fa6 Regrouping the launch configuration constants. 2003-09-08 21:40:11 +00:00
Mikhail Khodjaiants
3da46e561e Added the 'stop-on-solib-events' option.
Changed the initialization of the hared library search path.
Changed the messages of the thrown exceptions.
2003-09-08 21:27:56 +00:00
Mikhail Khodjaiants
233b7ca8d5 Removed the internal handling of the 'stop-on-shared-library-events' option - will be moved to the mi.
Try to set the deferred breakpoints only when:
- a shared library is loaded,
- the symbols of shared library are loaded.
2003-09-08 20:48:18 +00:00
Mikhail Khodjaiants
5698a06608 Added the 'getSharedLibraryPaths' and 'setSharedLibraryPaths' methods to the 'ICDISharedLibraryManager' interface. 2003-09-08 20:33:45 +00:00
Mikhail Khodjaiants
9fbe84c409 New class - SolibSearchPathBlock. Implements the UI control block to set the shared library search path. 2003-09-08 20:08:13 +00:00
Mikhail Khodjaiants
5ac0a1a30b CoreFileConfiguration supports shared libraries. 2003-09-08 18:43:02 +00:00
Alain Magloire
237f613643 updated. 2003-08-30 19:50:55 +00:00
Alain Magloire
8911cb0c81 Remove some synchronization primitives. 2003-08-30 19:50:44 +00:00
Mikhail Khodjaiants
bd74b169fb Label for target suspended by shared library event. 2003-08-29 22:04:02 +00:00
Mikhail Khodjaiants
c4517804fd Implementation of deferred breakpoints. 2003-08-29 21:57:08 +00:00
Mikhail Khodjaiants
dab5b46aed Moving shared library features from mi to CDI.
Added new launch configuration constants to ICDTLaunchConfigurationConstants.
2003-08-29 21:49:44 +00:00
Mikhail Khodjaiants
75d00906d9 Moving shared library features from mi to CDI.
Added new methods to ICDISharedLibraryManager:
- isAutoLoadSymbols
- isStopOnSolibEvents
- setAutoLoadSymbols
- setStopOnSolibEvents
- supportsAutoLoadSymbols
	- supportsStopOnSolibEvents
2003-08-29 21:21:45 +00:00
Mikhail Khodjaiants
ae82c8efca Moving shared library features from mi to CDI.
Added new methods to ICDISharedLibraryManager:
- isAutoLoadSymbols
- isStopOnSolibEvents
- setAutoLoadSymbols
- setStopOnSolibEvents
- supportsAutoLoadSymbols
	- supportsStopOnSolibEvents
2003-08-29 20:50:45 +00:00
Alain Magloire
6bd29c446e updated. 2003-08-26 18:23:38 +00:00
Alain Magloire
247737caff fix for parsing the output. 2003-08-26 18:22:16 +00:00
Alain Magloire
0024353521 do not add them. 2003-08-26 15:53:57 +00:00
Alain Magloire
e3e45fd5fe updated. 2003-08-26 15:38:13 +00:00
Alain Magloire
3978b0bf20 Fix the parser new method verbose(). 2003-08-26 15:37:20 +00:00
Alain Magloire
225b5d74ab updated. 2003-08-25 23:37:43 +00:00
Alain Magloire
66a387fa59 use getQualifiedname() 2003-08-25 23:37:31 +00:00
Alain Magloire
b081b1d2a5 Use the datatype form the GDBTypeParser. 2003-08-25 23:37:17 +00:00
Alain Magloire
d3c32bb369 updated. 2003-08-22 17:09:51 +00:00
Alain Magloire
480c9e4101 Use VariableObject.getFullName(). 2003-08-22 17:09:40 +00:00
Alain Magloire
d95d657a19 Provide a getFullName() to return the complete name
but without the casting information.
2003-08-22 17:09:16 +00:00
Mikhail Khodjaiants
e9a58e48b6 Removed the 'isAccessSpecifier' method from CVaraiable. 2003-08-21 15:24:21 +00:00
Mikhail Khodjaiants
a154926a6a Use the names of array's elements returned by CDI. 2003-08-21 15:12:56 +00:00
Alain Magloire
5cd6a01bd6 updated. 2003-08-21 14:53:51 +00:00