summaryrefslogtreecommitdiff
path: root/usr.bin/gcore
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2016-07-21 00:53:14 +0000
committerConrad Meyer <cem@FreeBSD.org>2016-07-21 00:53:14 +0000
commit8a263d910dc7ed63fd9de5c7bcec5cfacd9ca14b (patch)
tree1c1ae1a14f8bc8d750d25b4e739eb1f4bb94a880 /usr.bin/gcore
parent1005d8aff4c5eba56d29e17583b73cace2a27293 (diff)
downloadsrc-test2-8a263d910dc7ed63fd9de5c7bcec5cfacd9ca14b.tar.gz
src-test2-8a263d910dc7ed63fd9de5c7bcec5cfacd9ca14b.zip
Mirror r303120 to gcore
Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=303122
Diffstat (limited to 'usr.bin/gcore')
-rw-r--r--usr.bin/gcore/elfcore.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/gcore/elfcore.c b/usr.bin/gcore/elfcore.c
index 2f1e915045e0..541faece8d12 100644
--- a/usr.bin/gcore/elfcore.c
+++ b/usr.bin/gcore/elfcore.c
@@ -95,7 +95,7 @@ typedef void* (*notefunc_t)(void *, size_t *);
static void cb_put_phdr(vm_map_entry_t, void *);
static void cb_size_segment(vm_map_entry_t, void *);
-static void each_writable_segment(vm_map_entry_t, segment_callback,
+static void each_dumpable_segment(vm_map_entry_t, segment_callback,
void *closure);
static void elf_detach(void); /* atexit() handler. */
static void *elf_note_fpregset(void *, size_t *);
@@ -206,7 +206,7 @@ elf_coredump(int efd __unused, int fd, pid_t pid)
/* Size the program segments. */
seginfo.count = 0;
seginfo.size = 0;
- each_writable_segment(map, cb_size_segment, &seginfo);
+ each_dumpable_segment(map, cb_size_segment, &seginfo);
/*
* Build the header and the notes using sbuf and write to the file.
@@ -277,7 +277,7 @@ elf_coredump(int efd __unused, int fd, pid_t pid)
}
/*
- * A callback for each_writable_segment() to write out the segment's
+ * A callback for each_dumpable_segment() to write out the segment's
* program header entry.
*/
static void
@@ -307,7 +307,7 @@ cb_put_phdr(vm_map_entry_t entry, void *closure)
}
/*
- * A callback for each_writable_segment() to gather information about
+ * A callback for each_dumpable_segment() to gather information about
* the number of segments and their total size.
*/
static void
@@ -325,7 +325,7 @@ cb_size_segment(vm_map_entry_t entry, void *closure)
* data.
*/
static void
-each_writable_segment(vm_map_entry_t map, segment_callback func, void *closure)
+each_dumpable_segment(vm_map_entry_t map, segment_callback func, void *closure)
{
vm_map_entry_t entry;
@@ -497,7 +497,7 @@ elf_puthdr(pid_t pid, vm_map_entry_t map, void *hdr, size_t hdrsize,
/* All the writable segments from the program. */
phc.phdr = phdr;
phc.offset = segoff;
- each_writable_segment(map, cb_put_phdr, &phc);
+ each_dumpable_segment(map, cb_put_phdr, &phc);
}
/*