Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-11-11#include directives changed to include "tcf" as the first directory name in ↵Eugene Tarassov134-1041/+1041
header file path.
2011-11-11Agent code is moved into separate "agent" directory, all C code moved into ↵Eugene Tarassov184-17/+12
"tcf" directory.
2011-11-09TCF Agent: new function in Breakpoints service API: ↵Eugene Tarassov2-0/+20
iterate_context_breakpoint_links()
2011-11-09Fix warning on strict-aliasing and make gcc happyChristophe Augier1-10/+18
2011-11-08Merge branch 'master' of ssh://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agentEugene Tarassov1-0/+1
2011-11-08TCF Agent: added support for hardware breakpoints at virtual addresses.Eugene Tarassov3-29/+52
2011-11-08TCF Agent: fixed: Symbols.find command fails because of uninitialized variable.Eugene Tarassov1-0/+1
2011-11-07TCF Agent: added API for the Path Map service.Eugene Tarassov3-107/+307
2011-11-06TCF Agent: reverted some of changes from previous commit to fix build errors.Eugene Tarassov7-26/+14
2011-11-04TCF Agent: macro defs _FILE_OFFSET_BITS=64 _LARGEFILE_SOURCE _GNU_SOURCE are ↵Eugene Tarassov16-35/+66
moved to .c files that need them instead of being global.
2011-11-04TCF Agent: added API for creating/modifying/removing breakpoints.Eugene Tarassov3-25/+188
2011-11-03Bug 362796 - Process detach is not implemented, but the error code is misleadingEugene Tarassov1-1/+13
2011-11-02TCF Agent: added Breakpoints service API to access breakpoint attributes.Eugene Tarassov3-360/+295
2011-11-01TCF Agent: added SSL support on Windows.Eugene Tarassov7-123/+259
2011-10-26TCF Agent: fixed: Memory.get command returns uninitialized data if it read ↵Eugene Tarassov1-3/+1
inaccessible memory region.
2011-10-26TCF Agent: fixed BSD build error: 'O_LARGEFILE' undeclared.Eugene Tarassov2-1/+1
2011-10-25TCF Agent: "#include <sys/socket.h>" is moved from mdep-inet.h to mdep.h to ↵Eugene Tarassov2-2/+2
fix build error on BSD.
2011-10-25TCF Agent: a better error report in Streams service.Eugene Tarassov1-1/+1
2011-10-19TCF Agent: fixed compiler warning.Eugene Tarassov1-2/+4
2011-10-19TCF Agent: more changes to allow to build the agent with SERVICE_Processes=0 ↵Eugene Tarassov3-40/+49
and SERVICE_Terminals=1
2011-10-19TCF Agent: changed processes.c to allow to build the agent with ↵Eugene Tarassov1-22/+38
SERVICE_Processes=0 and SERVICE_Terminals=1
2011-10-19TCF Agent: fixed Terminals service on Windows: cd to home dir and using PATH ↵Eugene Tarassov2-3/+23
to run cmd.
2011-10-19TCF Agent: fixed regression: page fault in Processes service.Eugene Tarassov1-1/+1
2011-10-19TCF Agent: fixed regression: missing "#include <sys/types.h>"Eugene Tarassov2-1/+1
2011-10-18TCF Agent: in order to reduce global name space pollution, parts of mdep.h ↵Eugene Tarassov19-121/+235
are moved into separate header files: mdep-threads.h and mdep-inet.h
2011-10-18TCF Agent: Terminals service now uses Processes to start a process, ↵Eugene Tarassov3-562/+240
redundant code is removed.
2011-10-18TCF Agent: a better error message in Streams service.Eugene Tarassov1-1/+1
2011-10-16TCF Agent: implemented extension point for DWARF relocations.Eugene Tarassov3-8/+29
2011-10-13TCF Agent: added support for relocatable unit offset field in ↵Eugene Tarassov1-1/+3
.debug_pubnames section.
2011-10-13TCF Agent: added more EM_xxx definitions for ELF e_machine field values.Eugene Tarassov2-0/+14
2011-10-13TCF Agent: added support for new breakpoint property "ClientData".Eugene Tarassov1-0/+26
2011-10-13TCF Agent: fixed: expression evaluator returns uninitialized data when ↵Eugene Tarassov1-9/+10
target memory access returns error.
2011-10-12Merge branch 'master' of ssh://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agentEugene Tarassov1-0/+2
2011-10-12TCF Agent: fixed "warning: waiting too long for context P473.473 to stop" in ↵Eugene Tarassov2-2/+22
the agent log on Linux.
2011-10-11Merge branch 'master' of ssh://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agentEugene Tarassov1-1/+2
2011-10-11TCF Agent: fixed "Cannot retrieve symbol value. Object is not available at ↵Eugene Tarassov1-0/+2
this location in the code." when debugging a kernel module.
2011-10-10Merge branch 'master' of ssh://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agentEugene Tarassov2-3/+11
2011-10-10TCF Agent: unreliable assert is commented out.Eugene Tarassov1-1/+2
2011-10-10TCF Agent: improved stack traces with incomplete symbol info.Eugene Tarassov1-2/+10
2011-10-10TCF Agent: fixed compiler error from prev commit.Eugene Tarassov1-1/+1
2011-10-10TCF Agent: added code to lookup section size in ELF headers if a memory map ↵Eugene Tarassov1-2/+27
entry does not have "Size" property.
2011-10-07TCF Agent: fixed memory leak in ELF reader.Eugene Tarassov1-0/+2
2011-10-07TCF Agent: Linux: fixed removing of breakpoints after fork when children ↵Eugene Tarassov5-21/+91
auto-attach is off.
2011-10-04TCF Agent: fixed page fault caused wild pointer left after call of ↵Eugene Tarassov1-4/+4
loc_realloc().
2011-10-04TCF Agent: added code to allow expressions like "$eax.ax" - access a ↵Eugene Tarassov1-7/+30
register in a register group.
2011-10-03TCF Agent: changed the code to log "Received malformed UDP ..." only when ↵Eugene Tarassov1-1/+1
discovery trace is enabled
2011-10-03TCF Agent: fixed: discovery service should ignore remote peer info if the ↵Eugene Tarassov1-10/+24
peer host does not belong to one of known subnets.
2011-09-29Fixed makefiles that depend on agent source location.Eugene Tarassov2-89/+89
2011-09-28TCF Agent: fixed assertion failure in ELF Symbols service ↵eutarass1-0/+1
find_symbol_by_name() when it does all compilation units search.
2011-09-28TCF Agent: FPU registers should have TYPE_CLASS_REAL in expressions.eutarass2-5/+5

Back to the top