search for: dump_all

Displaying 3 results from an estimated 3 matches for "dump_all".

Did you mean: drop_all
2012 Oct 10
7
[PATCH 0 of 7] Miscellaneous updates
Clearing out my local queue of changes before applying other''s.
2011 Apr 12
0
missing fileinformation with memprof
I''m triying to find a memory leak with memprof. I''m using in environmet.rb: Memprof.dump_all(''/tmp/test.json'') after uploading to memprof.com I can see following: * objects with most outbound references 2318 classes and 384 modules * namespace hierarchy * class hierarchy * instances per class * duplicate classes by name 497 source files * 654...
2010 May 07
0
[PATCH] More xenalyze type fixes
...added some more type problems which break the 64-bit build. Signed-of-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> diff -r 668cf7d7cc8c xenalyze.c --- a/xenalyze.c Thu May 06 16:27:50 2010 -0500 +++ b/xenalyze.c Fri May 07 16:22:10 2010 -0700 @@ -4382,8 +4382,8 @@ if ( opt.dump_all ) printf(" %s npf gpa %llx q %x mfn %llx t %d\n", h->dump_header, - r->gpa, r->qualification, - r->mfn, r->p2mt); + (unsigned long long)r->gpa, r->qualification, + (unsigned long long)r-&...