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;
This commit is contained in:
Michael Snyder 2002-01-10 23:05:21 +00:00
parent 198377909c
commit b87011e952
3 changed files with 10 additions and 4 deletions

View 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.

View 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

View File

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