Code cleanup.
	* linux-nat.c (pull_pid_from_list): Rename status to statusp.
	(my_waitpid): Likewise.
This commit is contained in:
Jan Kratochvil 2010-08-28 08:38:25 +00:00
parent a464928644
commit 46a9699269
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
Code cleanup.
* linux-nat.c (pull_pid_from_list): Rename status to statusp.
(my_waitpid): Likewise.
2010-08-27 Doug Evans <dje@google.com>
* dwarf2read.c (dw2_require_line_header): Read from .debug_types

View File

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