Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Oct 2009 17:29:21 GMT
From:      Stanislav Sedov <stas@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 169621 for review
Message-ID:  <200910201729.n9KHTLnw086813@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/chv.cgi?CH=169621

Change 169621 by stas@stas_yandex on 2009/10/20 17:28:23

	- Use larger buffer for vmmap sysctl: valgrind tends to create a lot
	  of mappings.

Affected files ...

.. //depot/projects/valgrind/coregrind/m_aspacemgr/aspacemgr-linux.c#9 edit

Differences ...

==== //depot/projects/valgrind/coregrind/m_aspacemgr/aspacemgr-linux.c#9 (text+ko) ====

@@ -3522,7 +3522,7 @@
 #elif defined(VGO_freebsd)
 
  /* Size of a smallish table used to read /proc/self/map entries. */
- #define M_PROCMAP_BUF 1000000
+ #define M_PROCMAP_BUF 10485760	/* 10M */
  
  /* static ... to keep it out of the stack frame. */
  static Char procmap_buf[M_PROCMAP_BUF];



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200910201729.n9KHTLnw086813>