From: Nicholas Nethercote Date: Fri, 16 Jul 2004 17:32:15 +0000 (+0000) Subject: apostrophe pedantry; comment change only X-Git-Tag: svn/VALGRIND_2_1_2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e6783677f83cd1a59266d50516b4da3157b463b;p=thirdparty%2Fvalgrind.git apostrophe pedantry; comment change only git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2488 --- diff --git a/coregrind/vg_memory.c b/coregrind/vg_memory.c index 016ed781f9..22b5446e88 100644 --- a/coregrind/vg_memory.c +++ b/coregrind/vg_memory.c @@ -552,7 +552,7 @@ Addr VG_(find_map_space)(Addr addr, UInt len, Bool for_client) This is designed for use around system calls which allocate memory in the process address space without providing a way to - control it's location such as io_setup. By choosing a suitable + control its location such as io_setup. By choosing a suitable address with VG_(find_map_space) and then adding a segment for it and padding the address space valgrind can ensure that the kernel has no choice but to put the memory where we want it. */ diff --git a/coregrind/vg_syscalls.c b/coregrind/vg_syscalls.c index 62ad541d7b..b8c118dfdc 100644 --- a/coregrind/vg_syscalls.c +++ b/coregrind/vg_syscalls.c @@ -450,7 +450,7 @@ static OpenFd *allocated_fds; static int fd_count = 0; -/* Given a file descriptor, attempt to deduce it's filename. To do this, +/* Given a file descriptor, attempt to deduce its filename. To do this, we use /proc/self/fd/. If this doesn't point to a file, or if it doesn't exist, we just return NULL. Otherwise, we return a pointer to the file name, which the caller is responsible for freeing. */