* fbsd-proc.c: Fix formatting.
This commit is contained in:
parent
6a90a18e85
commit
fc07cc2d45
|
@ -1,3 +1,7 @@
|
||||||
|
2003-11-07 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* fbsd-proc.c: Fix formatting.
|
||||||
|
|
||||||
2003-11-06 Kevin Buettner <kevinb@redhat.com>
|
2003-11-06 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* frv-tdep.c (first_pseudo_regnum, iacc0_regnum, frv_num_pseudo_regs):
|
* frv-tdep.c (first_pseudo_regnum, iacc0_regnum, frv_num_pseudo_regs):
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
/* FreeBSD-specific methods for using the /proc file system.
|
/* FreeBSD-specific methods for using the /proc file system.
|
||||||
Copyright 2002 Free Software Foundation, Inc.
|
|
||||||
|
Copyright 2002, 2003 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
@ -48,9 +49,7 @@ child_pid_to_exec_file (int pid)
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
read_mapping (FILE *mapfile,
|
read_mapping (FILE *mapfile, unsigned long *start, unsigned long *end,
|
||||||
unsigned long *start,
|
|
||||||
unsigned long *end,
|
|
||||||
char *protection)
|
char *protection)
|
||||||
{
|
{
|
||||||
int resident, privateresident;
|
int resident, privateresident;
|
||||||
|
@ -72,10 +71,8 @@ read_mapping (FILE *mapfile,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
fbsd_find_memory_regions (int (*func) (CORE_ADDR,
|
fbsd_find_memory_regions (int (*func) (CORE_ADDR, unsigned long,
|
||||||
unsigned long,
|
int, int, int, void *),
|
||||||
int, int, int,
|
|
||||||
void *),
|
|
||||||
void *obfd)
|
void *obfd)
|
||||||
{
|
{
|
||||||
pid_t pid = ptid_get_pid (inferior_ptid);
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
||||||
|
|
Loading…
Reference in New Issue