From ba3dc828df7038eb4758b96f3ffd4cb9b725ecf3 Mon Sep 17 00:00:00 2001 From: Stefani Seibold Date: Mon, 18 May 2015 08:36:08 +0200 Subject: [PATCH] fix header --- backend.h | 6 +++--- task.h | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/backend.h b/backend.h index 3291303..75103c0 100644 --- a/backend.h +++ b/backend.h @@ -122,9 +122,9 @@ ssize_t copy_from_to_proc(struct task *task, arch_addr_t addr, const void *src, * to local buffer dst */ ssize_t copy_str_from_proc(struct task *task, arch_addr_t addr, char *dst, size_t len); -/* Called at some point after we have attached to PROC. This callback - * should insert an introspection breakpoint for handling dynamic - * linker library loads. */ +/* Called at some point after we have attached to the process. This callback + * should insert an introspection breakpoint for handling dynamic linker + * library loads. */ int linkmap_init(struct task *task, arch_addr_t dyn_addr); /* This should extract entry point address and interpreter (dynamic diff --git a/task.h b/task.h index 218b366..fec0cc6 100644 --- a/task.h +++ b/task.h @@ -103,9 +103,6 @@ struct task { struct list_head leader_list; }; -/* PROC underwent an exec. This is a bit like task_destroy - * followed by task_init, except that some state is kept and the - * process doesn't lose it's place in the list of processes. */ int process_exec(struct task *task); struct task *task_new(pid_t pid, int traced);