aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/kernel/tt/ptproxy/proxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um/kernel/tt/ptproxy/proxy.c')
-rw-r--r--arch/um/kernel/tt/ptproxy/proxy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/um/kernel/tt/ptproxy/proxy.c b/arch/um/kernel/tt/ptproxy/proxy.c
index 007beb6b7c00..420c23f311f3 100644
--- a/arch/um/kernel/tt/ptproxy/proxy.c
+++ b/arch/um/kernel/tt/ptproxy/proxy.c
@@ -338,14 +338,14 @@ int start_debugger(char *prog, int startup, int stop, int *fd_out)
338 "err = %d\n", -fd); 338 "err = %d\n", -fd);
339 exit(1); 339 exit(1);
340 } 340 }
341 os_write_file_k(fd, gdb_init_string, 341 os_write_file(fd, gdb_init_string,
342 sizeof(gdb_init_string) - 1); 342 sizeof(gdb_init_string) - 1);
343 if(startup){ 343 if(startup){
344 if(stop){ 344 if(stop){
345 os_write_file_k(fd, "b start_kernel\n", 345 os_write_file(fd, "b start_kernel\n",
346 strlen("b start_kernel\n")); 346 strlen("b start_kernel\n"));
347 } 347 }
348 os_write_file_k(fd, "c\n", strlen("c\n")); 348 os_write_file(fd, "c\n", strlen("c\n"));
349 } 349 }
350 if(ptrace(PTRACE_TRACEME, 0, 0, 0) < 0){ 350 if(ptrace(PTRACE_TRACEME, 0, 0, 0) < 0){
351 printk("start_debugger : PTRACE_TRACEME failed, " 351 printk("start_debugger : PTRACE_TRACEME failed, "