Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2011-09-08 03:06:46 +0000
committereutarass2011-09-08 03:06:46 +0000
commitb81c6fd3fa909779abf1e3ba9923481c8a402f66 (patch)
tree437b372576a108b468304cdc7f88887c15a72904 /system/GNU/Linux/context-linux.c
parentf0795aa606d3f95fee0803f6f524cbacde31e0f6 (diff)
downloadorg.eclipse.tcf.agent-b81c6fd3fa909779abf1e3ba9923481c8a402f66.tar.gz
org.eclipse.tcf.agent-b81c6fd3fa909779abf1e3ba9923481c8a402f66.tar.xz
org.eclipse.tcf.agent-b81c6fd3fa909779abf1e3ba9923481c8a402f66.zip
TCF Agent: fixed misspelled name of a function in Memory Map service API.
Diffstat (limited to 'system/GNU/Linux/context-linux.c')
-rw-r--r--system/GNU/Linux/context-linux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/GNU/Linux/context-linux.c b/system/GNU/Linux/context-linux.c
index 597f8461..b8879441 100644
--- a/system/GNU/Linux/context-linux.c
+++ b/system/GNU/Linux/context-linux.c
@@ -899,7 +899,7 @@ static void event_pid_stopped(pid_t pid, int signal, int event, int syscall) {
break;
case PTRACE_EVENT_EXEC:
send_context_changed_event(ctx);
- memory_map_event_mapping_chnaged(ctx->mem);
+ memory_map_event_mapping_changed(ctx->mem);
break;
case PTRACE_EVENT_EXIT:
{
@@ -1003,7 +1003,7 @@ static void event_pid_stopped(pid_t pid, int signal, int event, int syscall) {
#endif
case __NR_mremap:
case __NR_remap_file_pages:
- memory_map_event_mapping_chnaged(ctx->mem);
+ memory_map_event_mapping_changed(ctx->mem);
break;
}
ext->syscall_enter = 0;
@@ -1129,7 +1129,7 @@ static void eventpoint_at_loader(Context * ctx, void * args) {
static void eventpoint_at_main(Context * ctx, void * args) {
send_context_changed_event(ctx->mem);
- memory_map_event_mapping_chnaged(ctx->mem);
+ memory_map_event_mapping_changed(ctx->mem);
suspend_debug_context(ctx);
}

Back to the top