diff options
author | Michael Snyder <msnyder@vmware.com> | 2002-01-10 23:05:21 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2002-01-10 23:05:21 +0000 |
commit | b87011e95221f8390c2c2304fec74aa090b68d39 (patch) | |
tree | 534878dd858e39d8fe5d4437591ec4976dc48320 /bfd/elf.c | |
parent | 198377909c9eb3f9179e7afd4b9c9849f2a41fdf (diff) | |
download | gdb-b87011e95221f8390c2c2304fec74aa090b68d39.zip gdb-b87011e95221f8390c2c2304fec74aa090b68d39.tar.gz gdb-b87011e95221f8390c2c2304fec74aa090b68d39.tar.bz2 |
2002-01-10 Michael Snyder <msnyder@redhat.com>
* elf.c (elfcore_write_prstatus): Use long instead of pid_t;
(elfcore_write_pstatus): Use long instead of pid_t;
* elf-bfd.h: Change prototypes to use long instead of pid_t;
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6562,7 +6562,7 @@ elfcore_write_prstatus (abfd, buf, bufsiz, pid, cursig, gregs) bfd *abfd; char *buf; int *bufsiz; - pid_t pid; + long pid; int cursig; void *gregs; { @@ -6584,7 +6584,7 @@ elfcore_write_pstatus (abfd, buf, bufsiz, pid, cursig, gregs) bfd *abfd; char *buf; int *bufsiz; - pid_t pid; + long pid; int cursig; void *gregs; { |