aboutsummaryrefslogtreecommitdiff
path: root/gdb/procfs.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
committerKevin Buettner <kevinb@redhat.com>2000-12-15 01:01:51 +0000
commitb8c9b27d1e133d46199734ca1f047af8bb2d3314 (patch)
tree1aa002791f0e97bfc48c64222199e6d9f9e5eb53 /gdb/procfs.c
parent6fa957a9b9408297206fb88e7c773931760f0528 (diff)
downloadfsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.zip
fsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.gz
fsf-binutils-gdb-b8c9b27d1e133d46199734ca1f047af8bb2d3314.tar.bz2
Replace free() with xfree().
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r--gdb/procfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c
index 5675eda..10f2eb9 100644
--- a/gdb/procfs.c
+++ b/gdb/procfs.c
@@ -631,7 +631,7 @@ destroy_one_procinfo (procinfo **list, procinfo *pi)
close_procinfo_files (pi);
/* Step three: free the memory. */
- free (pi);
+ xfree (pi);
}
static void
@@ -2879,7 +2879,7 @@ proc_update_threads (procinfo *pi)
malloc (sizeof (gdb_prstatus_t) * (nlwp + 1))) == 0)
perror_with_name ("procfs: malloc failed in update_threads");
- old_chain = make_cleanup (free, prstatus);
+ old_chain = make_cleanup (xfree, prstatus);
if (ioctl (pi->ctl_fd, PIOCLSTATUS, prstatus) < 0)
proc_error (pi, "update_threads (PIOCLSTATUS)", __LINE__);