From: hjl Date: Sat, 9 Apr 2011 14:26:12 +0000 (+0000) Subject: Replace __pid_t with pid_t. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f60d7e451ecaa3ee63288ad61b2fe115372e9237;p=pf3gnuchains%2Fpf3gnuchains4x.git Replace __pid_t with pid_t. 2011-04-09 H.J. Lu PR binutils/12657 * hosts/x86-64linux.h (elf_prstatus32): Replace __pid_t with pid_t. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 7d6534030c..c745c2ac3d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2011-04-09 H.J. Lu + + PR binutils/12657 + * hosts/x86-64linux.h (elf_prstatus32): Replace __pid_t with + pid_t. + 2011-04-08 H.J. Lu PR ld/12654 diff --git a/bfd/hosts/x86-64linux.h b/bfd/hosts/x86-64linux.h index 27901c5fbf..3bd2f8de7d 100644 --- a/bfd/hosts/x86-64linux.h +++ b/bfd/hosts/x86-64linux.h @@ -1,4 +1,5 @@ -/* Copyright (C) 2006 Free Software Foundation, Inc. +/* Copyright (C) 2006, 2011 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -153,10 +154,10 @@ struct elf_prstatus32 short int pr_cursig; /* Current signal. */ unsigned int pr_sigpend; /* Set of pending signals. */ unsigned int pr_sighold; /* Set of held signals. */ - __pid_t pr_pid; - __pid_t pr_ppid; - __pid_t pr_pgrp; - __pid_t pr_sid; + pid_t pr_pid; + pid_t pr_ppid; + pid_t pr_pgrp; + pid_t pr_sid; struct prstatus32_timeval pr_utime; /* User time. */ struct prstatus32_timeval pr_stime; /* System time. */ struct prstatus32_timeval pr_cutime; /* Cumulative user time. */