From 46a9699269daf00ad6665c630c841ba160c27326 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Sat, 28 Aug 2010 08:38:25 +0000 Subject: [PATCH] gdb/ Code cleanup. * linux-nat.c (pull_pid_from_list): Rename status to statusp. (my_waitpid): Likewise. --- gdb/ChangeLog | 6 ++++++ gdb/linux-nat.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8e25db5..5d81848 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2010-08-28 Jan Kratochvil + + Code cleanup. + * linux-nat.c (pull_pid_from_list): Rename status to statusp. + (my_waitpid): Likewise. + 2010-08-27 Doug Evans * dwarf2read.c (dw2_require_line_header): Read from .debug_types diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index f697a9a..791908b 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -376,7 +376,7 @@ add_to_pid_list (struct simple_pid_list **listp, int pid, int status) } static int -pull_pid_from_list (struct simple_pid_list **listp, int pid, int *status) +pull_pid_from_list (struct simple_pid_list **listp, int pid, int *statusp) { struct simple_pid_list **p; @@ -385,7 +385,7 @@ pull_pid_from_list (struct simple_pid_list **listp, int pid, int *status) { struct simple_pid_list *next = (*p)->next; - *status = (*p)->status; + *statusp = (*p)->status; xfree (*p); *p = next; return 1; @@ -414,13 +414,13 @@ linux_tracefork_child (void) /* Wrapper function for waitpid which handles EINTR. */ static int -my_waitpid (int pid, int *status, int flags) +my_waitpid (int pid, int *statusp, int flags) { int ret; do { - ret = waitpid (pid, status, flags); + ret = waitpid (pid, statusp, flags); } while (ret == -1 && errno == EINTR); -- 2.7.4