2002-01-10 Michael Snyder <msnyder@redhat.com>
authorMichael Snyder <msnyder@vmware.com>
Thu, 10 Jan 2002 23:05:21 +0000 (23:05 +0000)
committerMichael Snyder <msnyder@vmware.com>
Thu, 10 Jan 2002 23:05:21 +0000 (23:05 +0000)
* 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;

bfd/ChangeLog
bfd/elf-bfd.h
bfd/elf.c

index 24af6fd414eb805280c14474e296ce0d3ec10bdf..ed91848a980c1e29397a29b50b0ecce661766611 100644 (file)
@@ -1,3 +1,9 @@
+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;
+
 2002-01-09  Jason Thorpe  <thorpej@wasabisystems.com> 
 
        * elf.c: Update copyright years.
index 018f2d079b488db5c523a6f9c0d102dae2df5806..c5f7a740da430316c05ba8e475cd3c6ca0a5de21 100644 (file)
@@ -1524,9 +1524,9 @@ extern char *elfcore_write_note
 extern char *elfcore_write_prpsinfo 
   PARAMS ((bfd *, char *, int *, char *, char *));
 extern char *elfcore_write_prstatus 
-  PARAMS ((bfd *, char *, int *, pid_t, int, void *));
+  PARAMS ((bfd *, char *, int *, long, int, void *));
 extern char * elfcore_write_pstatus 
-  PARAMS ((bfd *, char *, int *, pid_t, int, void *));
+  PARAMS ((bfd *, char *, int *, long, int, void *));
 extern char *elfcore_write_prfpreg 
   PARAMS ((bfd *, char *, int *, void *, int));
 extern char *elfcore_write_prxfpreg 
index 1dd7d7db257e62fd46c900bf9732055c608bc257..6615e54663c3838e50c4e87436dad208d5181b71 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -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;
 {