summaryrefslogtreecommitdiff
path: root/malloc/memusage.c
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2012-09-05 15:19:44 -0300
committerAlexandre Oliva <lxoliva@fsfla.org>2012-09-05 15:19:44 -0300
commitfad64255f4b49e3acb506b2a09972c2ff1255f8a (patch)
treee295949a0c3811c237563070d1d063e563af45ad /malloc/memusage.c
parent1ffb8c9001398e1c6402e455b566dfe3d84a0786 (diff)
Fix typos in malloc/.
* malloc/mcheck.c (mcheck_check_all): Fix typo. * malloc/memusage.c (mmap): Likewise. (mmap64, mremap): Likewise. Adjust name in comment.
Diffstat (limited to 'malloc/memusage.c')
-rw-r--r--malloc/memusage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/malloc/memusage.c b/malloc/memusage.c
index d26c4beb0c..2f6b6b57ba 100644
--- a/malloc/memusage.c
+++ b/malloc/memusage.c
@@ -564,7 +564,7 @@ free (void *ptr)
}
-/* `mmap' replacement. We do not have to keep track of the sizesince
+/* `mmap' replacement. We do not have to keep track of the size since
`munmap' will get it as a parameter. */
void *
mmap (void *start, size_t len, int prot, int flags, int fd, off_t offset)
@@ -616,7 +616,7 @@ mmap (void *start, size_t len, int prot, int flags, int fd, off_t offset)
}
-/* `mmap' replacement. We do not have to keep track of the sizesince
+/* `mmap64' replacement. We do not have to keep track of the size since
`munmap' will get it as a parameter. */
void *
mmap64 (void *start, size_t len, int prot, int flags, int fd, off64_t offset)
@@ -668,7 +668,7 @@ mmap64 (void *start, size_t len, int prot, int flags, int fd, off64_t offset)
}
-/* `mmap' replacement. We do not have to keep track of the sizesince
+/* `mremap' replacement. We do not have to keep track of the size since
`munmap' will get it as a parameter. */
void *
mremap (void *start, size_t old_len, size_t len, int flags, ...)