git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2488
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. */
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/<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. */