Record the correct address of the initial thread's stack, as determined
by the initial scan of /proc/self/maps, so that we correctly identify
addresses in it.  This fix is thanks to Dirk Mueller.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1550 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_include.h b/coregrind/vg_include.h
index 34dfb80..6ce4689 100644
--- a/coregrind/vg_include.h
+++ b/coregrind/vg_include.h
@@ -1341,6 +1341,11 @@
 UInt VG_(insertDflag)(UInt eflags, Int d);
 Int VG_(extractDflag)(UInt eflags);
 
+/* start address and size of the initial stack */
+extern Addr VG_(foundstack_start);
+extern UInt VG_(foundstack_size);
+
+
 /* ---------------------------------------------------------------------
    Exports of vg_memory.c
    ------------------------------------------------------------------ */