fix header

This commit is contained in:
Stefani Seibold 2015-05-18 08:36:08 +02:00
parent 44e172dee9
commit ba3dc828df
2 changed files with 3 additions and 6 deletions

View File

@ -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

3
task.h
View File

@ -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);