all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Dima Kogan <lists@dima.secretsauce.net>
To: Eli Zaretskii <eliz@gnu.org>
Cc: eggert@cs.ucla.edu, emacs-devel@gnu.org
Subject: Re: Debugging emacs memory management
Date: Mon, 21 Sep 2015 01:54:11 -0700	[thread overview]
Message-ID: <87oagw885o.fsf@secretsauce.net> (raw)
In-Reply-To: <83twqonub8.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 5663 bytes --]

Eli Zaretskii <eliz@gnu.org> writes:

> This doesn't seem to be a leak in itself.

Hi. I'm fairly certain that this is the leak. I know I didn't show any
evidence to that effect earlier, but I simply haven't written it up yet.
Doing that now. Note that the attached scripts aren't particularly nice;
they were quickly whipped up to solve a problem.


Procedure:

0. Preliminaries. I built my own emacs with -fno-omit-frame-pointer. I'm
   using the lucid X11 widgets. I'm on Debian/sid and the split debug
   symbols are available. I patched my perf to be able to find these
   split debug symbols:

     http://lkml.iu.edu/hypermail/linux/kernel/1509.0/04006.html

1. Set up emacs to continually leak memory. Here I do that by running
   'emacs -Q --daemon'. Then "emacsclient -a '' -c" to open a frame.
   Then in a loop open/destroy a second frame:

     while true; do timeout 1 emacsclient -a '' -c; sleep 1; done

   This is described in earlier emails. As this goes I can observe the
   memory leak:

     while (true) { ps -h -p `pidof emacs` -O rss; sleep 1 } | awk '{print $2;}'

   A snapshot of this is attached in memory.log, and plotted in
   memory.pdf:

     <memory.log | feedgnuplot --lines --xlabel 'Time(s)' --ylabel 'Emacs memory footprint (kB)'

   We leak on the order of 8.5kB/s. There's a new frame every 2s so
   that's 17kB/client frame.

2. As this runs make a record of all memory allocation operations. I use
   perf to do this:

     perf probe --del '*'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'malloc=malloc bytes'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'malloc_ret=malloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'calloc=calloc elem_size n'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'calloc_ret=calloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'realloc=realloc oldmem bytes'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'realloc_ret=realloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'aligned_alloc alignment bytes'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'aligned_alloc_ret=aligned_alloc%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'posix_memalign alignment size'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'posix_memalign_ret=posix_memalign%return $retval'
     perf probe -x /lib/x86_64-linux-gnu/libc-2.19.so --add 'free mem'

     timeout 40 perf record -m512 -r50 -g --call-graph=fp -p `pidof emacs` -eprobe_libc:{free,{malloc,calloc,realloc}{,_ret}} -eprobe_libc:aligned_alloc{,_1,_ret} -eprobe_libc:posix_memalign{,_ret}

   This makes a (very large) perf.data file with all the data in it. Too
   big; not attaching it. Back traces are available wherever frame
   pointers are, so malloc() directly from emacs has a backtrace,
   malloc() that goes through something like libgtk first does not. Perf
   can get overloaded and not write all the data. I make sure to only
   keep full data files

3. Convert the log file to a human-readable one

     perf script > script

   This makes a human-readable, but even larger file. Way too big;
   definitely not attaching it.

4. Analyze.

Note that the emacs client loop creates a client for 1 second, then
kills it and waits 1 more second. So there's a new client every 2
seconds. I "perf record" for 40 seconds, so ~ 20 new clients were
created in that time.

I now run the script file through parse_script.pl to follow all
allocations, and report any that have not been freed. Anything that has
been allocated at the start of the log file, and hasn't been freed by
the end is potentially a leak. Attaching a "leaks" file that's the
result of this. I make a plot of leak size vs line number:

  <leaks awk '$1=="Leaked" {print $6,$2}' | feedgnuplot --domain --points --xlabel 'script line number' --ylabel 'size leaked'

Attaching that too; leaks_all.pdf. Note that it looks like we leak 4096
bytes (4k from now on) at regular intervals, about 20 times. This is a
strong indication that whatever happens with those 4k allocations
happens every time we create (or destroy) a client frame. It actually
turns out to be a little more complicated than that. If we look just at
the 4k leaks and plot each one against its line number in the log then
we see that each time we leak a 4k chunk several times
(leaks_4k_line_numbers.pdf)

  <leaks awk '$1=="Leaked" && $2==4096 {print $6}' | feedgnuplot --points --xlabel '4k leak index' --ylabel 'script line number'

As shown earlier, we leak 17kB per frame. On average we have:

  $ echo $(( 4. * $(<leaks awk '$1=="Leaked" && $2==4096 {print $6}' | wc -l) / 19 ))
  10.947368421052632

So these 4k leaks could be responsible for ~ 11kB out of the 17kB.

OK. So what are those 4k leaks? I follow all the 4k allocations with a
follow_alloc.pl script. This acts as a filter to pull out the salient
parts of the "script" file.

  <script ./follow_alloc.pl 4096 > follow4096

Looking at the follow4096 file I see that most of the 4k allocs have the
backtrace in the previous email. None of these are ever freed. Some of
the 4k allocs touch the menu stuff, and those are all freed (in
garbage_collect, so the gc IS being called). Some of the 4k allocs are
from the tool bar, and those all leak too, but there aren't as many of
them as the font ones.



So this tells me that the backtrace in the previous email is the main
one causing the leak. There's more stuff to look at however, like the
toolbar stuff and a suspicious 16384 byte alloc, but those aren't as
significant as this 4k one.



[-- Attachment #2: memory.log --]
[-- Type: application/octet-stream, Size: 1860 bytes --]

41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41540
41768
41768
41772
41624
41756
41756
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41772
41980
41980
41980
41980
41980
41980
41980
41980
41980
42052
42052
42052
42052
42052
42052
42052
42052
42052
42052
42112
42112
42112
42112
42112
42112
42112
42112
42112
42112
42184
42180
42180
42180
42180
42180
42228
42188
42192
42192
42192
42192
42192
42192
42356
42356
42356
42356
42356
42356
42356
42412
42412
42412
42412
42412
42412
42412
42384
42388
42388
42388
42388
42488
42488
42488
42488
42488
42488
42488
42488
42488
42488
42488
42488
42564
42564
42564
42564
42564
42564
42612
42612
42612
42612
42612
42612
42612
42612
42744
42744
42744
42744
42744
42744
42744
42744
42744
42744
42744
42776
42776
42776
42776
42776
42776
42832
42832
42832
42832
42832
42832
42832
42832
42832
42832
42900
42868
42868
42868
42868
42868
42868
42924
42924
42924
42924
42924
42924
42924
42832
42832
42832
42832
43060
43060
43060
43060
43060
43060
43124
43124
43124
43124
43124
43124
43172
43172
43172
43172
43172
43172
43208
43208
43208
43208
43208
43316
43276
43276
43276
43276
43276
43352
43324
43324
43324
43324
43324
43384
43360
43360
43360
43360
43360
43360
43360
43428
43428
43428
43428
43472
43472
43472
43472
43472
43472
43472
43472
43472
43472
43472
43540
43540
43576
43576
43576
43576
43576
43576
43652
43652
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43648
43836
43808
43808
43808
43808
43808
43808
43808
43812
43812
43812
43812
43812
43956
43812
43812
43812
43812
43812
44028
44028
44028
44028
44028
44028
44028
44028
44028
44028
44108
44108
44108
44108
44108
44108
44108
44108
44192
44192
44192
44192
44192
44156
44156
44156
44156
44156
44232
44232
44232
44232
44232
44232
44288

[-- Attachment #3: memory.pdf --]
[-- Type: application/pdf, Size: 9442 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: parse_script.pl --]
[-- Type: text/x-perl, Size: 5168 bytes --]

#!/usr/bin/perl

use strict;
use warnings;


use feature 'say';


my $Nbytes_allocated = 0;
my %allocated;

my ($prev_addr, $prev_ret, $prev_type, $prev_realloc0, $prev_realloc0_addr, $prev_realloc0_bytes);
my $allocating;


while(<>)
{
    next unless /probe_libc:([^:]+)/;

    my $type = $1;
    my $ret = $type =~ /_ret$/;
    $type =~ s/_ret$//;


    if ( $ret && !( !$prev_ret && $type eq $prev_type) &&
         !($prev_realloc0 && $prev_type eq 'malloc' && $prev_ret && $type eq 'realloc') ) {
        die "$type ret, but prev wasn't a corresponding !ret";
    }
    elsif ( !$ret && !$prev_ret &&
            !($prev_realloc0 && $prev_type eq 'realloc' && !$prev_ret && $type eq 'malloc') &&
            $. > 1) {
        die "$type !ret following another !ret";
    }
    elsif ( $prev_realloc0 && !($type eq 'malloc' || $type eq 'realloc'))
    {
        die "realloc(0, N) must be followed by malloc(N)";
    }
    elsif ( !$ret )
    {
        if ($type eq 'malloc' && /bytes=([0-9a-z]+)/)
        {
            $allocating = hex $1;
            if ( $prev_realloc0 && $allocating != $prev_realloc0_bytes )
            {
                die "realloc(0, N) must be followed by malloc(N)";
            }
        }
        elsif ($type eq 'calloc' && /elem_size=([0-9a-z]+).*n=([0-9a-z]+)/)
        {
            $allocating = (hex $1) * (hex $2);
        }
        elsif ($type eq 'aligned_alloc' && /bytes=([0-9a-z]+)/)
        {
            $allocating = hex $1;
        }
        elsif ($type eq 'realloc' && /oldmem=([0-9a-z]+).*bytes=([0-9a-z]+)/)
        {
            if ( hex($1) == 0 )
            {
                # realloc(0, xxx) is always mapped to a malloc apparently. I treat
                # this specially
                $prev_realloc0       = 1;
                $prev_realloc0_bytes = hex $2;
            }
            else
            {
                $allocating = hex $2;
                $prev_addr = $1;
            }
        }
        elsif ($type eq 'free' && /mem=([0-9a-z]+)/)
        {
            if ( hex($1) != 0)  # free(0) does nothing
            {
                if (!defined $allocated{$1})
                {
                    say "Unallocated free at $1. Line $.";
                }
                else
                {
                    $Nbytes_allocated -= $allocated{$1}{bytes};
                    delete $allocated{$1};
                }
            }

            $ret = 1;           # free has no free-ret so I set that now
        }
        else
        {
            say "Unknown !ret line: '$_'";
            exit;
        }
    }
    elsif ( $ret )
    {
        if ( !/arg1=([0-9a-z]+)/ )
        {
            die "Ret didn't get arg1";
        }

        my $addr = $1;

        if ( hex($addr) == 0 )
        {
            say "$type returned NULL. Giving up";
            exit;
        }
        elsif ( $type =~ /^(?:[cm]alloc|aligned_alloc)$/ )
        {
            if (defined $allocated{$addr})
            {
                say "Double alloc at $addr. Line $.";
            }
            else
            {
                $allocated{$addr}{bytes} = $allocating;
                $allocated{$addr}{line} = $.;
                $Nbytes_allocated += $allocating;
            }

            if ( $prev_realloc0 && $type eq 'malloc')
            {
                $prev_realloc0_addr = $addr;
            }
        }
        elsif ( $type eq 'realloc' )
        {
            if ( $prev_realloc0 )
            {
                if ( $addr ne $prev_realloc0_addr )
                {
                    die "realloc(0, N) must be followed by malloc(N); differing addr";
                }

                $prev_realloc0       = undef;
                $prev_realloc0_addr  = undef;
                $prev_realloc0_bytes = undef;
            }
            else
            {
                my $prev0 = (hex($prev_addr) == 0);

                if (!$prev0 && !defined $allocated{$prev_addr})
                {
                    say "realloc not alloced at $prev_addr. Line $.";
                    $prev0 = 1;
                }

                if ($addr ne $prev_addr && defined $allocated{$addr})
                {
                    say "Double realloc at $addr. Line $.";
                }

                if ( !$prev0 )
                {
                    $Nbytes_allocated -= $allocated{$prev_addr}{bytes};
                    delete $allocated{$prev_addr};
                }

                $allocated{$addr}{bytes} = $allocating;
                $allocated{$addr}{line} = $.;
                $Nbytes_allocated += $allocating;
            }
        }
        else
        {
            say "Unknown ret line: '$_'";
            exit;
        }


        $allocating = undef;
    }


    $prev_type = $type;
    $prev_ret = $ret;
}


$Nbytes_allocated /= 1e6;
say "Total allocated: $Nbytes_allocated MB";
say '';

for my $addr ( sort { $allocated{$a}{line} <=> $allocated{$b}{line}} keys %allocated )
{
    my ($bytes,$line) = ($allocated{$addr}{bytes},
                         $allocated{$addr}{line});
    say "Leaked " . sprintf('%5d', $bytes) . " bytes at line $line ($addr)";
}

[-- Attachment #5: leaks --]
[-- Type: application/octet-stream, Size: 40769 bytes --]

realloc not alloced at 0x40dc3e0. Line 2598
realloc not alloced at 0x41b6050. Line 40343
realloc not alloced at 0x4017420. Line 40451
realloc not alloced at 0x3f82010. Line 40556
realloc not alloced at 0x38d16e0. Line 40658
realloc not alloced at 0x3e1f180. Line 40760
realloc not alloced at 0x3fba670. Line 40862
realloc not alloced at 0x3e20cd0. Line 40964
realloc not alloced at 0x38dfda0. Line 41066
realloc not alloced at 0x3de9040. Line 41168
realloc not alloced at 0x3ff08f0. Line 41270
realloc not alloced at 0x3cea600. Line 41372
realloc not alloced at 0x3ceab80. Line 41576
realloc not alloced at 0x39c2bc0. Line 41678
realloc not alloced at 0x3df85b0. Line 41780
realloc not alloced at 0x3cd61a0. Line 41882
realloc not alloced at 0x3d1ccd0. Line 41984
realloc not alloced at 0x41c6f10. Line 42086
realloc not alloced at 0x4136dd0. Line 42188
realloc not alloced at 0x402bb40. Line 42290
realloc not alloced at 0x32aa960. Line 42392
realloc not alloced at 0x4088570. Line 42494
Unallocated free at 0x406b5f0. Line 42747
Unallocated free at 0x406b9e0. Line 42798
Unallocated free at 0x40bdc80. Line 42848
Unallocated free at 0x3d60570. Line 42899
Unallocated free at 0x4188a20. Line 42949
Unallocated free at 0x397c020. Line 43000
Unallocated free at 0x3eb8340. Line 43050
Unallocated free at 0x3eb81b0. Line 43101
Unallocated free at 0x3eb7d10. Line 43151
Unallocated free at 0x3eb8100. Line 43202
Unallocated free at 0x417abb0. Line 43252
Unallocated free at 0x3d09a80. Line 43303
Unallocated free at 0x3e979a0. Line 43353
Unallocated free at 0x3e97d90. Line 43404
Unallocated free at 0x3f3cc60. Line 43454
Unallocated free at 0x3e6fb20. Line 43505
Unallocated free at 0x3e6f650. Line 43555
Unallocated free at 0x3da8eb0. Line 43606
Unallocated free at 0x415a550. Line 43656
Unallocated free at 0x415a940. Line 43707
Unallocated free at 0x40f5290. Line 43757
Unallocated free at 0x40f5680. Line 43808
Unallocated free at 0x4079a00. Line 43858
Unallocated free at 0x4079df0. Line 43909
Unallocated free at 0x39d69e0. Line 43959
Unallocated free at 0x39d6dd0. Line 44010
Unallocated free at 0x3ca4580. Line 44060
Unallocated free at 0x4081040. Line 44111
Unallocated free at 0x3e50120. Line 44161
Unallocated free at 0x3866ac0. Line 44212
Unallocated free at 0x3e01890. Line 44262
Unallocated free at 0x4112b90. Line 44313
Unallocated free at 0x4136ed0. Line 44363
Unallocated free at 0x402bc60. Line 44414
Unallocated free at 0x3d96410. Line 44464
Unallocated free at 0x41b7280. Line 44515
Unallocated free at 0xd89e40. Line 44565
Unallocated free at 0x4012f20. Line 44616
Unallocated free at 0x40b6810. Line 44666
Unallocated free at 0x3af6fd0. Line 44717
Unallocated free at 0x3e72c00. Line 44767
Unallocated free at 0x3cbeae0. Line 44818
Unallocated free at 0x3ceae40. Line 44868
Unallocated free at 0x3effa60. Line 44919
Unallocated free at 0x3e83cc0. Line 44969
Unallocated free at 0x3e14ec0. Line 45020
Unallocated free at 0x3cc4560. Line 45070
Unallocated free at 0x3f88e70. Line 45121
Unallocated free at 0x385e460. Line 45171
Unallocated free at 0x385e910. Line 45222
Unallocated free at 0x404ffd0. Line 45272
Unallocated free at 0x411efc0. Line 45323
Unallocated free at 0x4127410. Line 45373
Unallocated free at 0x3fc5df0. Line 45424
Unallocated free at 0x3d1f590. Line 45474
Unallocated free at 0x4042840. Line 45525
Unallocated free at 0xcd3590. Line 45575
Unallocated free at 0x40657d0. Line 45626
Unallocated free at 0x39c0d40. Line 45676
Unallocated free at 0x411ef00. Line 45727
Unallocated free at 0x3d9afc0. Line 45777
Unallocated free at 0x3e730f0. Line 45828
Unallocated free at 0x38c2d00. Line 45878
Unallocated free at 0x3d43710. Line 45929
Unallocated free at 0x3eb9820. Line 45979
Unallocated free at 0x3f33530. Line 46030
Unallocated free at 0x412b810. Line 46080
Unallocated free at 0x4050480. Line 46131
Unallocated free at 0x4123010. Line 46181
Unallocated free at 0x3da8e70. Line 46232
Unallocated free at 0x3f4a520. Line 46282
Unallocated free at 0x41a24a0. Line 46333
Unallocated free at 0x3e09c10. Line 46383
Unallocated free at 0x40884f0. Line 46434
Unallocated free at 0x3f81be0. Line 46484
Unallocated free at 0x39d7aa0. Line 46535
Unallocated free at 0x3dbdce0. Line 46585
Unallocated free at 0x3ff1080. Line 46636
Unallocated free at 0x4194410. Line 46686
Unallocated free at 0x385e9e0. Line 46737
Unallocated free at 0x30b70b0. Line 46787
Unallocated free at 0x39e2750. Line 46838
Unallocated free at 0x3d3ec10. Line 46888
Unallocated free at 0x3f88a70. Line 46939
Unallocated free at 0x3effc70. Line 46989
Unallocated free at 0x3e3ce10. Line 47040
Unallocated free at 0x3e5fbf0. Line 47090
Unallocated free at 0x413f040. Line 47141
Unallocated free at 0x4051580. Line 47191
Unallocated free at 0x3e73280. Line 47242
Unallocated free at 0x38d12f0. Line 47292
Unallocated free at 0x3e6feb0. Line 47343
Unallocated free at 0x40dfc50. Line 47393
Unallocated free at 0x3cb0200. Line 47444
Unallocated free at 0x3f70c40. Line 47494
Unallocated free at 0x40428c0. Line 47545
Unallocated free at 0x4222060. Line 47595
Unallocated free at 0x3af7020. Line 47646
Unallocated free at 0x3ee2710. Line 47696
Unallocated free at 0x3e0ba00. Line 47747
Unallocated free at 0x4138320. Line 47797
Unallocated free at 0x4065750. Line 47848
Unallocated free at 0x4068e80. Line 47898
Unallocated free at 0x3ee9100. Line 47949
Unallocated free at 0x3e840f0. Line 47999
Unallocated free at 0x3e840b0. Line 48050
Unallocated free at 0x417d470. Line 48100
Unallocated free at 0x393c8b0. Line 48151
Unallocated free at 0x417d860. Line 48201
Unallocated free at 0x417dc50. Line 48252
Unallocated free at 0x413e5e0. Line 48302
Unallocated free at 0x3d1e910. Line 48353
Unallocated free at 0x413e9d0. Line 48403
Unallocated free at 0x3f4edb0. Line 48454
Unallocated free at 0x40dbfb0. Line 48504
Unallocated free at 0x4082a50. Line 48555
Unallocated free at 0x3eae300. Line 48605
Unallocated free at 0x3eae730. Line 48656
Unallocated free at 0x3eae770. Line 48706
Unallocated free at 0x3c67990. Line 48757
Unallocated free at 0x40f4e60. Line 48807
Unallocated free at 0x40f5250. Line 48858
Unallocated free at 0x415a120. Line 48908
Unallocated free at 0x415a510. Line 48959
Unallocated free at 0x3ab0480. Line 49009
Unallocated free at 0x3ab08b0. Line 49060
Unallocated free at 0x3ab08f0. Line 49110
Unallocated free at 0x3ab0870. Line 49161
Unallocated free at 0x40820a0. Line 49211
Unallocated free at 0x4082490. Line 49262
Unallocated free at 0x4082510. Line 49312
Unallocated free at 0x40824d0. Line 49363
Unallocated free at 0x41b2cc0. Line 49413
Unallocated free at 0x3ca7b40. Line 49464
Unallocated free at 0x41b3170. Line 49514
Unallocated free at 0x41b3560. Line 49565
Unallocated free at 0xde3480. Line 49768
Unallocated free at 0x4067830. Line 49819
Unallocated free at 0x3bfcb40. Line 49870
Unallocated free at 0x401a230. Line 49921
Unallocated free at 0x413ab40. Line 49972
Unallocated free at 0x3f950a0. Line 50023
Unallocated free at 0x40ac1d0. Line 50074
Unallocated free at 0x3ea4330. Line 50125
Unallocated free at 0x4032830. Line 50176
Unallocated free at 0x4156de0. Line 50227
Unallocated free at 0x4173560. Line 50278
Unallocated free at 0x4235c70. Line 50329
Unallocated free at 0x3e95990. Line 50380
Unallocated free at 0x4150c60. Line 50431
Unallocated free at 0x4152c70. Line 50482
Unallocated free at 0x4154c80. Line 50533
Unallocated free at 0x41109c0. Line 50584
Unallocated free at 0x4268370. Line 50635
Unallocated free at 0x42cd900. Line 50686
Unallocated free at 0x42cf910. Line 50737
Unallocated free at 0x3d5bb00. Line 51145
Unallocated free at 0x3ded510. Line 51196
Unallocated free at 0x3d0c6a0. Line 51298
Unallocated free at 0x3ff47b0. Line 51349
Unallocated free at 0x40504c0. Line 51400
Unallocated free at 0x37fe320. Line 51502
Unallocated free at 0x3d96940. Line 51553
Unallocated free at 0x3d1ec10. Line 51604
Unallocated free at 0x40be4d0. Line 51655
Unallocated free at 0x397bf70. Line 51706
Unallocated free at 0x3de8ba0. Line 51757
Unallocated free at 0x3f3d1a0. Line 51808
Unallocated free at 0x411eec0. Line 51859
Unallocated free at 0x4079e30. Line 51910
Unallocated free at 0x402b5f0. Line 51961
Unallocated free at 0xcd3e90. Line 52012
Unallocated free at 0x4107650. Line 52063
Unallocated free at 0x39b92f0. Line 52114
Unallocated free at 0x40f0b50. Line 52165
Unallocated free at 0x3f3aaf0. Line 52216
Unallocated free at 0x40764e0. Line 52267
Unallocated free at 0x3bf85e0. Line 52318
Unallocated free at 0x3cf4f30. Line 52369
Unallocated free at 0x3fccab0. Line 52420
Unallocated free at 0x3daff70. Line 52471
Unallocated free at 0x405a380. Line 52522
Unallocated free at 0x3cc4f10. Line 52573
Unallocated free at 0x3d441f0. Line 52624
Unallocated free at 0x3e79900. Line 52675
Unallocated free at 0x4051ce0. Line 52726
Unallocated free at 0x3cb0d80. Line 52777
Unallocated free at 0x40072c0. Line 52828
Unallocated free at 0x3e7b600. Line 52879
Unallocated free at 0x4088410. Line 52930
Unallocated free at 0x3d9cfb0. Line 52981
Unallocated free at 0x3e38fa0. Line 53032
Unallocated free at 0x3cdb650. Line 53083
Unallocated free at 0x37467d0. Line 53134
Unallocated free at 0x3e51c30. Line 53185
Unallocated free at 0x3fb2900. Line 53236
Unallocated free at 0x3f3ecb0. Line 53287
Unallocated free at 0x41b30f0. Line 53338
Unallocated free at 0x4082a00. Line 53389
Unallocated free at 0x3d441a0. Line 53440
Unallocated free at 0x412fc10. Line 53491
Unallocated free at 0x412bc00. Line 53593
Unallocated free at 0x4042980. Line 53643
Unallocated free at 0x4042880. Line 53694
Unallocated free at 0x3f001a0. Line 53745
Unallocated free at 0x3f00120. Line 53796
Unallocated free at 0x3f000e0. Line 53847
Unallocated free at 0x3f000a0. Line 53898
Unallocated free at 0x411ef80. Line 53949
Unallocated free at 0x411ef40. Line 54000
Unallocated free at 0x4019140. Line 54051
Unallocated free at 0x4127800. Line 54102
Unallocated free at 0x4224500. Line 54152
Unallocated free at 0x3e73380. Line 54203
Unallocated free at 0x4050440. Line 54254
Unallocated free at 0x3dde4a0. Line 54305
Unallocated free at 0x3dde460. Line 54356
Unallocated free at 0x4042900. Line 54407
Unallocated free at 0x4123400. Line 54458
Unallocated free at 0x3ceab20. Line 54508
Unallocated free at 0x385e850. Line 54559
Unallocated free at 0x385e950. Line 54610
Unallocated free at 0x41a23d0. Line 54661
Unallocated free at 0x3e732c0. Line 54712
Unallocated free at 0x411f000. Line 54763
Unallocated free at 0x3e730b0. Line 54813
Unallocated free at 0x41a2350. Line 54864
Unallocated free at 0x39d7a20. Line 54915
Unallocated free at 0x3e3cdd0. Line 54966
Unallocated free at 0x3cea590. Line 55017
Unallocated free at 0x41ea000. Line 55068
Unallocated free at 0x3d0aa40. Line 55118
Unallocated free at 0x3e3aa00. Line 55169
Unallocated free at 0x3ded550. Line 55220
Unallocated free at 0x40b27b0. Line 55271
Unallocated free at 0x3d5b480. Line 55322
Unallocated free at 0x3e726f0. Line 55373
Unallocated free at 0x3ebbbe0. Line 55424
Unallocated free at 0x3ded4d0. Line 55475
Unallocated free at 0x3f334f0. Line 55526
Unallocated free at 0x3fb28c0. Line 55577
Unallocated free at 0x4051d80. Line 55628
Unallocated free at 0x4136d40. Line 55679
Unallocated free at 0x3d03e00. Line 55730
Unallocated free at 0x3d1d820. Line 55781
Unallocated free at 0x397c0e0. Line 55832
Unallocated free at 0x3d60100. Line 55883
Unallocated free at 0x417dcc0. Line 55934
Unallocated free at 0x3d34990. Line 56036
Unallocated free at 0x3763650. Line 56087
Unallocated free at 0x4079600. Line 56138
Unallocated free at 0x3c66010. Line 56189
Unallocated free at 0x3156100. Line 56240
Unallocated free at 0x3ebcdf0. Line 56291
Unallocated free at 0x3dafff0. Line 56342
Unallocated free at 0x41366e0. Line 56393
Unallocated free at 0x41b36c0. Line 56444
Unallocated free at 0x3fb9a00. Line 56495
Unallocated free at 0x3c96d20. Line 56545
Unallocated free at 0x4065790. Line 56596
Unallocated free at 0x426a380. Line 56646
Unallocated free at 0x31871d0. Line 56697
Unallocated free at 0x41d8ef0. Line 56747
Unallocated free at 0x42259e0. Line 56848
Unallocated free at 0x4051970. Line 56899
Unallocated free at 0x414c480. Line 56949
Unallocated free at 0x393c990. Line 57000
Unallocated free at 0x3e90eb0. Line 57050
Unallocated free at 0x3e83c30. Line 57101
Unallocated free at 0x3e8eeb0. Line 57151
Unallocated free at 0x40bac10. Line 57202
Unallocated free at 0x3e8d950. Line 57252
Unallocated free at 0xcd40b0. Line 57303
Unallocated free at 0x3ecf050. Line 57353
Unallocated free at 0x3f95870. Line 57404
Unallocated free at 0x3ec3240. Line 57454
Unallocated free at 0x3760df0. Line 57505
Unallocated free at 0x42b3d60. Line 57555
Unallocated free at 0x417dd00. Line 57606
Unallocated free at 0x41693d0. Line 57656
Unallocated free at 0x417afa0. Line 57707
Unallocated free at 0x35d7a30. Line 579044
Unallocated free at 0x3746850. Line 580475
Unallocated free at 0x3e0a440. Line 593956
Unallocated free at 0x3e725d0. Line 593976
Unallocated free at 0x3ff07d0. Line 593996
Unallocated free at 0x4019020. Line 594016
Unallocated free at 0x3fccb10. Line 594036
Unallocated free at 0x3d34870. Line 594056
Unallocated free at 0x40dc460. Line 594076
Unallocated free at 0x40dc710. Line 594096
Unallocated free at 0x3f4f020. Line 594116
Unallocated free at 0x3e72730. Line 594136
Unallocated free at 0x39d7900. Line 594156
Unallocated free at 0x3f594a0. Line 594176
Unallocated free at 0x409ae60. Line 594196
Unallocated free at 0x3e20e70. Line 594216
Unallocated free at 0x4039a00. Line 594236
Unallocated free at 0x3fc7f10. Line 1025044
Unallocated free at 0x3d0aae0. Line 1027237
Unallocated free at 0x3ca5ee0. Line 1027696
Unallocated free at 0x3e72590. Line 1028257
Unallocated free at 0x3d5af90. Line 1028665
Unallocated free at 0x3dde4e0. Line 1029022
Unallocated free at 0x39c2130. Line 1029226
Unallocated free at 0x3a731d0. Line 1029277
Unallocated free at 0x3f3d160. Line 1029379
Unallocated free at 0x37fe3c0. Line 1029430
Unallocated free at 0x3c973e0. Line 1029532
Unallocated free at 0x3e5f830. Line 1029583
Unallocated free at 0x3e73300. Line 1029886
Unallocated free at 0x3ca7bd0. Line 2462938
Unallocated free at 0x4051e60. Line 2463043
Unallocated free at 0x3e4fc20. Line 2463778
Unallocated free at 0x41ce0e0. Line 2466000
Unallocated free at 0x41b5ff0. Line 2467537
Unallocated free at 0x4096dc0. Line 2470293
Unallocated free at 0x3cd5e10. Line 2470452
Unallocated free at 0x4136e30. Line 2471088
Unallocated free at 0x397c060. Line 2471194
Unallocated free at 0x39d7080. Line 2471247
Unallocated free at 0x39d7ae0. Line 2471775
Unallocated free at 0x40dc3a0. Line 3453617
Unallocated free at 0x3c6a520. Line 3459446
Unallocated free at 0x41590d0. Line 3459636
Unallocated free at 0x3e0a3e0. Line 3459674
Unallocated free at 0x3f33570. Line 3460016
Unallocated free at 0x3c89940. Line 3460206
Unallocated free at 0x417afe0. Line 4585130
Unallocated free at 0x3dee070. Line 4585187
Unallocated free at 0x406bda0. Line 4585216
Unallocated free at 0x3cb06e0. Line 4585273
Unallocated free at 0x38d17d0. Line 4589600
Unallocated free at 0x40808e0. Line 4590498
Unallocated free at 0x37fa520. Line 4590527
Unallocated free at 0x3f1e060. Line 5681328
Unallocated free at 0x385e9a0. Line 5681649
Unallocated free at 0x39b9330. Line 5681970
Unallocated free at 0x4224540. Line 5682933
Unallocated free at 0x3fb1d50. Line 5683040
Unallocated free at 0x3fb2060. Line 5689839
Unallocated free at 0x40ea030. Line 5689893
Unallocated free at 0x402be50. Line 5689947
Unallocated free at 0x3efe810. Line 5690001
Unallocated free at 0x40f7e60. Line 5690055
Unallocated free at 0x407ef30. Line 5690109
Unallocated free at 0x40f7dd0. Line 8125135
Unallocated free at 0x3f85dc0. Line 9098720
Unallocated free at 0x3cb0240. Line 10353607
Unallocated free at 0x41372c0. Line 10362566
Unallocated free at 0x4224480. Line 10362670
Unallocated free at 0x3db17a0. Line 12767815
Unallocated free at 0x3ff4c60. Line 12775493
Unallocated free at 0x40f2bf0. Line 13771944
Unallocated free at 0x40ea800. Line 14994807
Total allocated: 0.50749 MB

Leaked    48 bytes at line 1924 (0x3eaeb60)
Leaked  1000 bytes at line 3401 (0x417fd70)
Leaked    48 bytes at line 3489 (0x4180160)
Leaked    88 bytes at line 18522 (0x3deeb60)
Leaked     5 bytes at line 18607 (0x3d0c6e0)
Leaked     5 bytes at line 18693 (0x3d03e40)
Leaked    56 bytes at line 18777 (0x41d3510)
Leaked    48 bytes at line 67230 (0x397c020)
Leaked    24 bytes at line 307818 (0x3dde4c0)
Leaked     8 bytes at line 307826 (0x3e73460)
Leaked     4 bytes at line 307834 (0x4042920)
Leaked    40 bytes at line 307841 (0x41d3fc0)
Leaked    48 bytes at line 514957 (0x3d00420)
Leaked    48 bytes at line 917232 (0x402bd80)
Leaked  4096 bytes at line 945306 (0x4278980)
Leaked    48 bytes at line 945413 (0x40bac10)
Leaked  4096 bytes at line 945520 (0x3e94140)
Leaked    88 bytes at line 967028 (0x4042980)
Leaked     5 bytes at line 967113 (0x3d1ccb0)
Leaked     5 bytes at line 967199 (0x3865220)
Leaked    56 bytes at line 967283 (0x3d03e00)
Leaked    24 bytes at line 1255433 (0x41c6fe0)
Leaked     8 bytes at line 1255441 (0x32aad00)
Leaked     4 bytes at line 1255449 (0x402bc40)
Leaked    40 bytes at line 1255456 (0x38d17a0)
Leaked    48 bytes at line 1462572 (0x4088410)
Leaked  4096 bytes at line 1891701 (0x414c480)
Leaked    48 bytes at line 1891808 (0x3f95870)
Leaked  4096 bytes at line 1891915 (0x40ac1d0)
Leaked    48 bytes at line 1892022 (0x40884f0)
Leaked  4096 bytes at line 1892129 (0x3e95150)
Leaked    48 bytes at line 1892236 (0x3fc5df0)
Leaked    88 bytes at line 1913247 (0x4136dd0)
Leaked     5 bytes at line 1913332 (0x3f82090)
Leaked     5 bytes at line 1913418 (0x3fb2770)
Leaked    56 bytes at line 1913502 (0x3f88a70)
Leaked    24 bytes at line 2194414 (0x417b410)
Leaked     8 bytes at line 2194422 (0x39d7100)
Leaked     4 bytes at line 2194430 (0x39d7ac0)
Leaked    40 bytes at line 2194437 (0x3d5b130)
Leaked    48 bytes at line 2401553 (0x40072e0)
Leaked    48 bytes at line 2454691 (0x4051900)
Leaked 16384 bytes at line 2458099 (0x41dd400)
Leaked  4096 bytes at line 2842574 (0x3e96160)
Leaked    48 bytes at line 2842681 (0x3cb0200)
Leaked  4096 bytes at line 2842788 (0x42756a0)
Leaked    48 bytes at line 2842895 (0x3d441f0)
Leaked  4096 bytes at line 2843002 (0x42766b0)
Leaked    48 bytes at line 2843109 (0x39d7080)
Leaked  4096 bytes at line 2843216 (0x42776c0)
Leaked    48 bytes at line 2843323 (0x3d1f8f0)
Leaked    88 bytes at line 2864334 (0x3dde460)
Leaked     5 bytes at line 2864419 (0x39c1050)
Leaked     5 bytes at line 2864505 (0x39c10b0)
Leaked    56 bytes at line 2864589 (0x3eaeb20)
Leaked    24 bytes at line 3136125 (0x42259a0)
Leaked     8 bytes at line 3136133 (0x3f88610)
Leaked     4 bytes at line 3136141 (0x3d442e0)
Leaked    40 bytes at line 3136148 (0x3e73430)
Leaked    48 bytes at line 3343264 (0x3cc6610)
Leaked  1492 bytes at line 3343341 (0x4138320)
Leaked    48 bytes at line 3403671 (0x3d9cfb0)
Leaked  4096 bytes at line 3786976 (0x3e8f960)
Leaked    48 bytes at line 3787083 (0x3c67990)
Leaked  4096 bytes at line 3787190 (0x3e90970)
Leaked    48 bytes at line 3787297 (0x4051e20)
Leaked  4096 bytes at line 3787404 (0x3e91980)
Leaked    48 bytes at line 3787511 (0x39d70c0)
Leaked    88 bytes at line 3808522 (0x3e940e0)
Leaked     5 bytes at line 3808607 (0x36da670)
Leaked     5 bytes at line 3808693 (0x3fccc70)
Leaked    56 bytes at line 3808777 (0x406b9e0)
Leaked    24 bytes at line 4078991 (0x4096de0)
Leaked     8 bytes at line 4078999 (0x41a24c0)
Leaked     4 bytes at line 4079007 (0x3ebbbf0)
Leaked    40 bytes at line 4079014 (0x3e30ae0)
Leaked    48 bytes at line 4286130 (0x3ff47b0)
Leaked  4096 bytes at line 4732496 (0x3e92990)
Leaked    48 bytes at line 4732603 (0x4224500)
Leaked  4096 bytes at line 4732710 (0x40cab20)
Leaked    48 bytes at line 4732817 (0x40be780)
Leaked  4096 bytes at line 4732924 (0x40cbb30)
Leaked    48 bytes at line 4733031 (0x3b6ae20)
Leaked    88 bytes at line 4754042 (0x39c10d0)
Leaked     5 bytes at line 4754127 (0x3c64450)
Leaked     5 bytes at line 4754213 (0x3b6aea0)
Leaked    56 bytes at line 4754297 (0x397c060)
Leaked    24 bytes at line 5024235 (0x3c647c0)
Leaked     8 bytes at line 5024243 (0x39d7b50)
Leaked     4 bytes at line 5024251 (0x402b810)
Leaked    40 bytes at line 5024258 (0x3e6ef10)
Leaked    48 bytes at line 5231374 (0x37467d0)
Leaked  4096 bytes at line 5522786 (0x4221360)
Leaked  1000 bytes at line 5625522 (0x3cea510)
Leaked    48 bytes at line 5625590 (0x3e83c30)
Leaked    88 bytes at line 5641875 (0x402bbe0)
Leaked     5 bytes at line 5641960 (0x40ccb40)
Leaked     5 bytes at line 5642046 (0x4234c40)
Leaked    56 bytes at line 5642130 (0x40f5170)
Leaked    48 bytes at line 5673398 (0x419ff20)
Leaked    24 bytes at line 5932509 (0x3ff4f70)
Leaked     8 bytes at line 5932517 (0x3fb9a90)
Leaked     4 bytes at line 5932525 (0x40f5710)
Leaked    40 bytes at line 5932532 (0x3eb87e0)
Leaked    48 bytes at line 6139648 (0x3cf3580)
Leaked  4096 bytes at line 6568355 (0x3eaccf0)
Leaked    48 bytes at line 6568462 (0x38c0590)
Leaked  4096 bytes at line 6568569 (0x41f1120)
Leaked  4096 bytes at line 6568783 (0x4162810)
Leaked    88 bytes at line 6590271 (0x3fb1d50)
Leaked     5 bytes at line 6590356 (0x3a72e00)
Leaked     5 bytes at line 6590442 (0x3a72e60)
Leaked    56 bytes at line 6590526 (0x3e30aa0)
Leaked    24 bytes at line 6876746 (0x3e940c0)
Leaked     8 bytes at line 6876754 (0x41453f0)
Leaked     4 bytes at line 6876762 (0x3d1dd30)
Leaked    40 bytes at line 6876769 (0x3760d60)
Leaked    48 bytes at line 7083885 (0x3f3aaf0)
Leaked  4096 bytes at line 7522468 (0x4235c70)
Leaked    48 bytes at line 7522575 (0x3ceb290)
Leaked  4096 bytes at line 7522682 (0x4032830)
Leaked    48 bytes at line 7522789 (0x4051d80)
Leaked  4096 bytes at line 7522896 (0x41d8f30)
Leaked    48 bytes at line 7523003 (0x419ff60)
Leaked    88 bytes at line 7544014 (0x41bb970)
Leaked     5 bytes at line 7544099 (0x3e727b0)
Leaked     5 bytes at line 7544185 (0x39d7b20)
Leaked    56 bytes at line 7544269 (0x3d43710)
Leaked    24 bytes at line 7819009 (0x3cf3560)
Leaked     8 bytes at line 7819017 (0x41453d0)
Leaked     4 bytes at line 7819025 (0x3e6eea0)
Leaked    40 bytes at line 7819032 (0x3d43910)
Leaked    48 bytes at line 8026148 (0x40dc7c0)
Leaked    48 bytes at line 8084807 (0x413eb90)
Leaked    48 bytes at line 8088285 (0x3d43de0)
Leaked 16384 bytes at line 8091639 (0x41f2400)
Leaked  4096 bytes at line 8460139 (0x417a070)
Leaked    48 bytes at line 8460246 (0x3c96810)
Leaked  4096 bytes at line 8460353 (0x41dbf50)
Leaked    48 bytes at line 8460460 (0x4039880)
Leaked  4096 bytes at line 8460567 (0x4044c10)
Leaked    48 bytes at line 8460674 (0x40f52d0)
Leaked    88 bytes at line 8481789 (0x3de9100)
Leaked     5 bytes at line 8481874 (0x3fb17d0)
Leaked     5 bytes at line 8481960 (0x40f0b70)
Leaked    56 bytes at line 8482044 (0x39d7ae0)
Leaked    24 bytes at line 8756906 (0x40dc7a0)
Leaked     8 bytes at line 8756914 (0x4234c20)
Leaked     4 bytes at line 8756922 (0x40133c0)
Leaked    40 bytes at line 8756929 (0x38d16f0)
Leaked    48 bytes at line 8964045 (0x41ce150)
Leaked    48 bytes at line 9060439 (0x3e38fa0)
Leaked    48 bytes at line 9066971 (0x3e5f830)
Leaked  4096 bytes at line 9410176 (0x4049c40)
Leaked    48 bytes at line 9410283 (0x39c1070)
Leaked  4096 bytes at line 9410390 (0x4176050)
Leaked  4096 bytes at line 9410604 (0x4177060)
Leaked    48 bytes at line 9410711 (0x3f85dc0)
Leaked    88 bytes at line 9431830 (0x3cb8fb0)
Leaked     5 bytes at line 9431915 (0x4088530)
Leaked     5 bytes at line 9432001 (0x406c120)
Leaked    56 bytes at line 9432085 (0x3fb1750)
Leaked  4096 bytes at line 9450917 (0x40647b0)
Leaked    48 bytes at line 9451016 (0x3d58af0)
Leaked    48 bytes at line 9463358 (0x3c96850)
Leaked    24 bytes at line 9702229 (0x4139ad0)
Leaked     8 bytes at line 9702237 (0x3dde780)
Leaked     4 bytes at line 9702245 (0x3f3f2f0)
Leaked    40 bytes at line 9702252 (0x41d3b10)
Leaked    48 bytes at line 9909368 (0x3e72750)
Leaked  4096 bytes at line 10202797 (0x416ab20)
Leaked    48 bytes at line 10202846 (0x39c26a0)
Leaked  1000 bytes at line 10304750 (0x3ea77c0)
Leaked    48 bytes at line 10304824 (0x3ea7bb0)
Leaked    88 bytes at line 10320970 (0x403e600)
Leaked     5 bytes at line 10321055 (0x3e72790)
Leaked     5 bytes at line 10321141 (0x3f885f0)
Leaked    56 bytes at line 10321225 (0x3c64780)
Leaked    48 bytes at line 10340092 (0x397c0e0)
Leaked    24 bytes at line 10611382 (0x3c89a20)
Leaked     8 bytes at line 10611390 (0x4139ab0)
Leaked     4 bytes at line 10611398 (0x41cbd90)
Leaked    40 bytes at line 10611405 (0x41a2490)
Leaked    48 bytes at line 10818521 (0x405a340)
Leaked    48 bytes at line 11220423 (0x4194c30)
Leaked  4096 bytes at line 11248391 (0x4048c10)
Leaked    48 bytes at line 11248498 (0x3e4fc20)
Leaked  4096 bytes at line 11248605 (0x416bb30)
Leaked    48 bytes at line 11248712 (0x3cb06e0)
Leaked    88 bytes at line 11270133 (0x40428c0)
Leaked     5 bytes at line 11270218 (0x3cb9050)
Leaked     5 bytes at line 11270304 (0x32aace0)
Leaked    56 bytes at line 11270388 (0x3c67740)
Leaked    24 bytes at line 11558778 (0xcd40d0)
Leaked     8 bytes at line 11558786 (0x3f33590)
Leaked     4 bytes at line 11558794 (0x4088550)
Leaked    40 bytes at line 11558801 (0x417a040)
Leaked    48 bytes at line 11765917 (0x37fe320)
Leaked  4096 bytes at line 12195174 (0x4178070)
Leaked    48 bytes at line 12195281 (0x41a2450)
Leaked  4096 bytes at line 12195388 (0x4298780)
Leaked  4096 bytes at line 12195602 (0x4045c20)
Leaked    48 bytes at line 12195709 (0x41eb970)
Leaked    88 bytes at line 12217365 (0x3ceabc0)
Leaked     5 bytes at line 12217450 (0x4138900)
Leaked     5 bytes at line 12217536 (0x403e5e0)
Leaked    56 bytes at line 12217620 (0x3e6feb0)
Leaked    48 bytes at line 12403643 (0x3d1cfb0)
Leaked    24 bytes at line 12498427 (0x3ee2b90)
Leaked     8 bytes at line 12498435 (0x3d34c30)
Leaked     4 bytes at line 12498443 (0x4088740)
Leaked    40 bytes at line 12498450 (0x3ea7c30)
Leaked    48 bytes at line 12705566 (0x3e0ba00)
Leaked    48 bytes at line 12753187 (0x3d3f520)
Leaked    48 bytes at line 12760207 (0x3f886b0)
Leaked  4096 bytes at line 13147241 (0x4046c30)
Leaked    48 bytes at line 13147348 (0x41a2350)
Leaked  4096 bytes at line 13147455 (0x41d9f40)
Leaked    48 bytes at line 13147562 (0x3a72e80)
Leaked  4096 bytes at line 13147669 (0x3ea4330)
Leaked    48 bytes at line 13147776 (0x39e2750)
Leaked  4096 bytes at line 13147883 (0x4173f70)
Leaked    48 bytes at line 13147990 (0x3760df0)
Leaked    88 bytes at line 13169001 (0x3df8010)
Leaked     5 bytes at line 13169086 (0x3cb9070)
Leaked     5 bytes at line 13169172 (0x3cf5940)
Leaked    56 bytes at line 13169256 (0x3eba350)
Leaked    48 bytes at line 13392629 (0x4176010)
Leaked    24 bytes at line 13440996 (0x3fa4610)
Leaked     8 bytes at line 13441004 (0x3f888b0)
Leaked     4 bytes at line 13441012 (0x408b8f0)
Leaked    40 bytes at line 13441019 (0x4139a80)
Leaked    48 bytes at line 13648135 (0x3c98b80)
Leaked    48 bytes at line 13709669 (0x3c6ae10)
Leaked    48 bytes at line 13712180 (0x3f7d8b0)
Leaked  1008 bytes at line 13743195 (0x41d3b40)
Leaked    48 bytes at line 13748997 (0x3ee2b50)
Leaked    48 bytes at line 13756863 (0x3d8b040)
Leaked    48 bytes at line 13758088 (0x3fc8300)
Leaked  4096 bytes at line 14092181 (0x4174f80)
Leaked    48 bytes at line 14092288 (0x3f23d70)
Leaked  4096 bytes at line 14092395 (0x4118d10)
Leaked    48 bytes at line 14092502 (0x3cb0660)
Leaked  4096 bytes at line 14092609 (0x4119d20)
Leaked    48 bytes at line 14092716 (0x4069490)
Leaked    88 bytes at line 14113727 (0x3fb9bb0)
Leaked     5 bytes at line 14113812 (0x3df83b0)
Leaked     5 bytes at line 14113898 (0x417b3f0)
Leaked    56 bytes at line 14113982 (0x38d17d0)
Leaked    24 bytes at line 14384032 (0x32aab30)
Leaked     8 bytes at line 14384040 (0x3f4edd0)
Leaked     4 bytes at line 14384048 (0x3c678a0)
Leaked    40 bytes at line 14384055 (0x39d7ed0)
Leaked    48 bytes at line 14591171 (0x4013300)
Leaked  1492 bytes at line 14591249 (0x3c96d20)
Leaked    48 bytes at line 14754642 (0x3f30740)
Leaked    48 bytes at line 14820967 (0x404b390)
Leaked    48 bytes at line 14836431 (0x41960a0)
Leaked  4096 bytes at line 14887310 (0x40c7e50)
Leaked    48 bytes at line 14887363 (0x417b080)
Leaked    48 bytes at line 14890219 (0x3c78510)
Leaked  8188 bytes at line 14996720 (0x3eaace0)
Leaked  1016 bytes at line 15010560 (0x3e50120)
Leaked    48 bytes at line 15010656 (0x3de9040)
Leaked  4096 bytes at line 15026982 (0x3e8d950)
Leaked    48 bytes at line 15027089 (0x3f23b50)
Leaked  4096 bytes at line 15027196 (0x4114cf0)
Leaked    48 bytes at line 15027303 (0x3ea7bf0)
Leaked    88 bytes at line 15048506 (0x39d6de0)
Leaked     5 bytes at line 15048591 (0x3cb0370)
Leaked     5 bytes at line 15048677 (0x3d1cff0)
Leaked    56 bytes at line 15048761 (0x3ff1080)
Leaked    48 bytes at line 15092331 (0x4224480)
Leaked    24 bytes at line 15318799 (0x3ff0840)
Leaked     8 bytes at line 15318807 (0x3c784f0)
Leaked     4 bytes at line 15318815 (0x3e69a00)
Leaked    40 bytes at line 15318822 (0x4118ce0)
Leaked    48 bytes at line 15525938 (0x41b0a10)
Leaked  1016 bytes at line 15623418 (0x4136ed0)
Leaked    48 bytes at line 15645747 (0x3864a00)
Leaked    48 bytes at line 15648624 (0x41d3490)
Leaked    48 bytes at line 15665700 (0x3df8370)
Leaked    48 bytes at line 15817990 (0x3e09d10)
Leaked    48 bytes at line 15818198 (0x3e09d50)
Leaked  4096 bytes at line 15818645 (0x4117c50)
Leaked    48 bytes at line 15818698 (0x3866ac0)
Leaked  1016 bytes at line 15820626 (0x38d12f0)
Leaked    48 bytes at line 15928931 (0x3e5f380)
Leaked    48 bytes at line 15929969 (0x4180a30)
Leaked  1000 bytes at line 15932816 (0x3f81be0)
Leaked    48 bytes at line 15932904 (0x38df350)
Leaked    88 bytes at line 15947939 (0x40885b0)
Leaked     5 bytes at line 15948024 (0x4112990)
Leaked     5 bytes at line 15948110 (0x41129f0)
Leaked    56 bytes at line 15948194 (0x40764e0)
Leaked    48 bytes at line 15966276 (0x3f14fb0)
Leaked  1016 bytes at line 15967025 (0x3763650)
Leaked  1016 bytes at line 15967365 (0x3dbdce0)
Leaked  1008 bytes at line 15967607 (0x3156100)
Leaked    48 bytes at line 15967733 (0x36da6d0)
Leaked  1016 bytes at line 15968083 (0x3dafff0)
Leaked  1016 bytes at line 15968309 (0x3c66010)
Leaked  1016 bytes at line 15968771 (0x3d3ec10)
Leaked  1008 bytes at line 15968891 (0x3e01890)
Leaked    48 bytes at line 15969017 (0x4145360)
Leaked    48 bytes at line 15979849 (0x40398c0)
Leaked  1000 bytes at line 15984514 (0x41c5f70)
Leaked    48 bytes at line 15984626 (0x3f307e0)
Leaked  8188 bytes at line 16054675 (0x422fb70)
Leaked  8188 bytes at line 16160550 (0x4155910)
Leaked    24 bytes at line 16235645 (0x4189500)
Leaked     8 bytes at line 16235653 (0x3f001c0)
Leaked     4 bytes at line 16235661 (0x3f307c0)
Leaked    40 bytes at line 16235668 (0x3dae530)
Leaked    48 bytes at line 16442784 (0x4112930)
Leaked  4096 bytes at line 16870654 (0x4233b90)
Leaked  4096 bytes at line 16870868 (0x4157920)
Leaked    48 bytes at line 16870975 (0x3f88670)
Leaked  4096 bytes at line 16871082 (0x40fd510)
Leaked    48 bytes at line 16871189 (0x3d58bd0)
Leaked    88 bytes at line 16892392 (0x41f10c0)
Leaked     5 bytes at line 16892477 (0x37467b0)
Leaked     5 bytes at line 16892563 (0x3c96ba0)
Leaked    56 bytes at line 16892647 (0x41129b0)
Leaked  1016 bytes at line 16912316 (0x4111b40)
Leaked    48 bytes at line 16922111 (0x3d44430)
Leaked    48 bytes at line 16928248 (0x3e73150)
Leaked  1000 bytes at line 16954016 (0x3fc7f10)
Leaked    48 bytes at line 16954120 (0x3fa4590)
Leaked    48 bytes at line 16956777 (0x3f33550)
Leaked  1000 bytes at line 16958865 (0x413e5e0)
Leaked    48 bytes at line 16958969 (0x3c89980)
Leaked  1000 bytes at line 16960277 (0x3eb9820)
Leaked    48 bytes at line 16960379 (0x3f3f210)
Leaked    48 bytes at line 17024423 (0x413f040)
Leaked    48 bytes at line 17081205 (0x41d3940)
Leaked    48 bytes at line 17135000 (0x3e93eb0)
Leaked  1000 bytes at line 17174177 (0x4158930)
Leaked    48 bytes at line 17174271 (0x3d77d50)
Leaked    24 bytes at line 17177509 (0x3d00e50)
Leaked     8 bytes at line 17177517 (0x3d5b110)
Leaked     4 bytes at line 17177525 (0x3c89a00)
Leaked    40 bytes at line 17177532 (0x3d00da0)
Leaked    48 bytes at line 17384648 (0x3f88e70)
Leaked    48 bytes at line 17432850 (0x3d5b490)
Leaked    48 bytes at line 17436675 (0x3ff4c60)
Leaked    48 bytes at line 17436895 (0x4112b30)
Leaked    48 bytes at line 17437665 (0x4113c20)
Leaked    48 bytes at line 17509717 (0x3c899c0)
Leaked  1464 bytes at line 17788513 (0x4067830)
Leaked  4096 bytes at line 17817919 (0x4273fb0)
Leaked  4096 bytes at line 17818133 (0x4115d00)
Leaked    48 bytes at line 17818240 (0x3cb9010)
Leaked  4096 bytes at line 17818347 (0x42c2eb0)
Leaked    48 bytes at line 17818454 (0x3f30780)
Leaked    88 bytes at line 17839465 (0x3f334f0)
Leaked     5 bytes at line 17839550 (0x4112970)
Leaked     5 bytes at line 17839636 (0x3ea76a0)
Leaked    56 bytes at line 17839720 (0x38d1760)
Leaked    48 bytes at line 17859565 (0x3760d20)
Leaked 41344 bytes at line 17883376 (0x412ba80)
Leaked    48 bytes at line 17883482 (0x3c89940)
Leaked    24 bytes at line 18109950 (0x4080880)
Leaked     8 bytes at line 18109958 (0x41453a0)
Leaked     4 bytes at line 18109966 (0x402bdc0)
Leaked    40 bytes at line 18109973 (0x3dc3a60)
Leaked    48 bytes at line 18317089 (0x41b09d0)
Leaked    48 bytes at line 18375946 (0x3d21e20)
Leaked    48 bytes at line 18376052 (0x3cd69b0)
Leaked    48 bytes at line 18376434 (0x38651e0)
Leaked    48 bytes at line 18376650 (0x3fba100)
Leaked    48 bytes at line 18376872 (0x3ca5f00)
Leaked    48 bytes at line 18377092 (0x3d3e8b0)
Leaked    48 bytes at line 18377304 (0x3cb0d80)
Leaked    48 bytes at line 18377412 (0x3a72dc0)
Leaked    48 bytes at line 18377634 (0x3cc4f30)
Leaked    48 bytes at line 18377854 (0x3fccab0)
Leaked    48 bytes at line 18378174 (0x3d1f930)
Leaked    48 bytes at line 18378826 (0x3e72700)
Leaked    48 bytes at line 18378936 (0x417b3a0)
Leaked    48 bytes at line 18379046 (0x3cb03f0)
Leaked    48 bytes at line 18379268 (0x3dde4e0)
Leaked    48 bytes at line 18379478 (0x3d5b0c0)
Leaked    48 bytes at line 18380342 (0x3cb0ef0)
Leaked    48 bytes at line 18380562 (0x3fb9a40)
Leaked    48 bytes at line 18381110 (0x40f5110)
Leaked    48 bytes at line 18381796 (0x3f3f250)
Leaked    48 bytes at line 18382010 (0x4238c90)
Leaked    48 bytes at line 18382120 (0x3d58670)
Leaked    48 bytes at line 18382230 (0x4051940)
Leaked    48 bytes at line 18382452 (0x3ff07d0)
Leaked    48 bytes at line 18382664 (0x41dd350)
Leaked    48 bytes at line 18382770 (0x40ccb60)
Leaked    48 bytes at line 18382879 (0x4017dc0)
Leaked    48 bytes at line 18382990 (0x3d9c060)
Leaked    48 bytes at line 18383206 (0x3d9bfa0)
Leaked    48 bytes at line 18383426 (0x3ec3b90)
Leaked    48 bytes at line 18383860 (0x3fb9b30)
Leaked    48 bytes at line 18383968 (0x408b830)
Leaked    48 bytes at line 18384622 (0x4118c60)
Leaked    48 bytes at line 18384730 (0x4118ca0)
Leaked    48 bytes at line 18384840 (0x4175f90)
Leaked    48 bytes at line 18384950 (0x4175fd0)
Leaked    48 bytes at line 18385172 (0x41d3f80)
Leaked    48 bytes at line 18385384 (0x40dc3e0)
Leaked    48 bytes at line 18385492 (0x3d1a000)
Leaked    48 bytes at line 18385934 (0x40f7cf0)
Leaked    48 bytes at line 18386146 (0x3cd6900)
Leaked    48 bytes at line 18386254 (0x3cd6940)
Leaked    48 bytes at line 18386470 (0x3d21db0)
Leaked    48 bytes at line 18386692 (0x32aac60)
Leaked    48 bytes at line 18386912 (0x3ee2a90)
Leaked    48 bytes at line 18387018 (0x3ee2ad0)
Leaked    48 bytes at line 18387458 (0x39b90b0)
Leaked    48 bytes at line 18387670 (0x41b06f0)
Leaked    48 bytes at line 18387778 (0x41b0730)
Leaked    48 bytes at line 18388206 (0x3ea76f0)
Leaked    48 bytes at line 18388426 (0x3ea7770)
Leaked    48 bytes at line 18388746 (0x402b7b0)
Leaked    48 bytes at line 18388968 (0x41979e0)
Leaked 16384 bytes at line 18389186 (0x424ec00)
Leaked    48 bytes at line 18389292 (0x424eb50)
Leaked    48 bytes at line 18389398 (0x424eb90)
Leaked    48 bytes at line 18389507 (0x4050400)
Leaked    48 bytes at line 18389618 (0x4050440)
Leaked    48 bytes at line 18389840 (0x3d34870)
Leaked    48 bytes at line 18390060 (0x3d348f0)
Leaked    48 bytes at line 18390272 (0x3e93e10)
Leaked    48 bytes at line 18390380 (0x3e93e50)
Leaked    48 bytes at line 18390712 (0x41894a0)
Leaked    48 bytes at line 18390928 (0x3f306a0)
Leaked 16384 bytes at line 18391032 (0x4240c00)
Leaked    48 bytes at line 18391138 (0x3f306e0)
Leaked    48 bytes at line 18391246 (0x4222370)
Leaked    48 bytes at line 18391354 (0x42223b0)
Leaked    73 bytes at line 18395260 (0x35d7a30)
Leaked    64 bytes at line 18396659 (0x41bb890)
Leaked    48 bytes at line 18398254 (0x42223f0)
Leaked   280 bytes at line 18414170 (0x39b9110)
Leaked   280 bytes at line 18414522 (0x3f594a0)
Leaked    48 bytes at line 18414698 (0x419fe30)
Leaked   280 bytes at line 18414750 (0x4139960)
Leaked   280 bytes at line 18415675 (0x40f51b0)
Leaked   280 bytes at line 18415847 (0x3e7aa60)
Leaked   280 bytes at line 18416019 (0x3fccb10)
Leaked   280 bytes at line 18416191 (0x3dada10)
Leaked   280 bytes at line 18416363 (0x3c97300)
Leaked   280 bytes at line 18416535 (0x3d437f0)
Leaked   280 bytes at line 18416707 (0x41074e0)
Leaked   280 bytes at line 18416879 (0x41b0840)
Leaked   280 bytes at line 18417051 (0x3cb0240)
Leaked   280 bytes at line 18417223 (0x409ae60)
Leaked   280 bytes at line 18417395 (0x4039a00)
Leaked   280 bytes at line 18417567 (0x3e20e70)
Leaked    48 bytes at line 18417746 (0x419fea0)
Leaked    48 bytes at line 18417929 (0x3ded4d0)
Leaked    48 bytes at line 18417998 (0x3ded510)
Leaked  1000 bytes at line 18418808 (0x38c2d00)
Leaked    48 bytes at line 18418878 (0x3e09c10)
Leaked  1016 bytes at line 18418959 (0x30b70b0)
Leaked    48 bytes at line 18419036 (0x3ded550)
Leaked  1016 bytes at line 18419187 (0x4194410)
Leaked  1000 bytes at line 18419261 (0x3eae730)
Leaked    48 bytes at line 18419333 (0x3ded590)
Leaked    48 bytes at line 18419411 (0x3e09c50)
Leaked  1016 bytes at line 18419491 (0x4068e80)
Leaked    48 bytes at line 18419568 (0x3e09c90)
Leaked  1000 bytes at line 18419642 (0x40bdc80)
Leaked    48 bytes at line 18419716 (0x3e09cd0)
Leaked  1016 bytes at line 18419793 (0x407ef30)
Leaked    48 bytes at line 18419873 (0x4240af0)
Leaked  1016 bytes at line 18419953 (0x4274fc0)
Leaked  1008 bytes at line 18420034 (0x4279990)
Leaked    48 bytes at line 18420120 (0x4240b30)
Leaked  1000 bytes at line 18420199 (0xd89e40)
Leaked    48 bytes at line 18420271 (0x4240b70)
Leaked    48 bytes at line 18420352 (0x4240bb0)
Leaked  1000 bytes at line 18421458 (0x3e5fbf0)
Leaked    48 bytes at line 18421520 (0x40886c0)
Leaked 16384 bytes at line 18422504 (0x42f0c00)
Leaked  1000 bytes at line 18423332 (0x4158d20)
Leaked    48 bytes at line 18423402 (0x4088650)
Leaked  1000 bytes at line 18424424 (0x4195cb0)
Leaked    48 bytes at line 18424488 (0x3f81a40)
Leaked  1000 bytes at line 18425123 (0x4279d90)
Leaked    48 bytes at line 18425189 (0x3f3d050)
Leaked    48 bytes at line 18426191 (0x3cbe990)
Leaked    48 bytes at line 18426255 (0x3cbe9d0)
Leaked    48 bytes at line 18427113 (0x3cbea10)
Leaked    48 bytes at line 18427341 (0x3cbea50)
Leaked    48 bytes at line 18427422 (0x3cbea90)
Leaked    48 bytes at line 18427506 (0x4012880)
Leaked    40 bytes at line 18427594 (0x41b6050)
Leaked    21 bytes at line 18427676 (0x4017420)
Leaked    11 bytes at line 18427755 (0x3eb8710)
Leaked     6 bytes at line 18427831 (0x3a72e20)
Leaked    50 bytes at line 18427907 (0x3e1f180)
Leaked    20 bytes at line 18427983 (0x3fba670)
Leaked   251 bytes at line 18428059 (0x3e20cd0)
Leaked    57 bytes at line 18428135 (0x38dfda0)
Leaked     5 bytes at line 18428211 (0x4112b70)
Leaked     9 bytes at line 18428287 (0x32aa960)
Leaked   141 bytes at line 18428363 (0x426fec0)
Leaked   142 bytes at line 18428439 (0x40692b0)
Leaked    40 bytes at line 18428515 (0x3df85b0)
Leaked    14 bytes at line 18428591 (0x417b0d0)
Leaked    20 bytes at line 18428667 (0x3d58b30)
Leaked    20 bytes at line 18428743 (0x41125c0)
Leaked    20 bytes at line 18428819 (0x40e0040)
Leaked     9 bytes at line 18428895 (0x3d1dcf0)
Leaked    19 bytes at line 18428971 (0x3cd61a0)
Leaked 62008 bytes at line 18455720 (0x42548d0)
Leaked    48 bytes at line 18455792 (0x38dfbb0)
Leaked  8188 bytes at line 18456777 (0x4231b80)
Leaked  8188 bytes at line 18511514 (0x42c0ea0)
Leaked  8188 bytes at line 18562188 (0x42c3ec0)
Leaked    56 bytes at line 18626789 (0x41bb9d0)
Leaked    72 bytes at line 18627058 (0x3e3aa00)
Leaked    18 bytes at line 18627354 (0x4173e80)

[-- Attachment #6: leaks_all.pdf --]
[-- Type: application/pdf, Size: 14800 bytes --]

[-- Attachment #7: leaks_4k_line_numbers.pdf --]
[-- Type: application/pdf, Size: 10004 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #8: follow_alloc.pl --]
[-- Type: text/x-perl, Size: 1986 bytes --]

#!/usr/bin/perl
use strict;
use warnings;

use Getopt::Euclid;
use feature ':5.10';

my $size = sprintf('0x%x', $ARGV{'<size>'} =~ /^0x/ ? hex($ARGV{'<size>'}) : $ARGV{'<size>'} );


my $next_after_alloc_type;
my %addrs;

my $refcount = 0;

my $printing;

while(<>)
{
    if(/^$/)
    {
        print "\n" if $printing;
        $printing = undef;
        next;
    }

    if( $printing && /^\s/ )
    {
        print;
        next;
    }


    next unless /probe_libc:([^:]+)/;

    if( /$size\b/ )
    {
        if(/realloc/)
        {
            die "realloc not supported";
        }

        my $type = /probe_libc:([a-z_]+)/;
        ($next_after_alloc_type) = $type;

        # I don't print allocation entries. Those aren't interesting. Allocation
        # EXITS are interesting and I print those further down
        # doprint();
    }
    elsif( $next_after_alloc_type )
    {
        my $type = /probe_libc:([a-z_]+)/;
        if($type ne $next_after_alloc_type)
        {
            die "Didn't get ret for type $type";
        }

        my ($addr) = /arg1=(0x[0-9a-f]+)/;
        $addrs{$addr} = 1;

        $next_after_alloc_type = undef;

        $refcount++;

        doprint();
        next;
    }
    else
    {
        for my $addr(keys %addrs)
        {
            if(/$addr\b/)
            {
                if(/free|realloc/)
                {
                    $refcount--;
                }

                delete $addrs{$addr};
                doprint();
            }
        }
    }
}

sub doprint
{
    $printing = 1;
    print "Line: $. Refcount: $refcount. $_";
}



=head1 NAME

follow_alloc.pl - trace allocation of a particular size

=head1 SYNOPSIS

 $ ./follow_alloc.pl --size 0x1234

=head1 DESCRIPTION

Looks at C<perf script> output and reports stuff

=head1 REQUIRED ARGUMENTS

=over

=item <size>

Size of allocation to trace

=for Euclid:
  size.type: /0x[0-9a-f]+|[0-9]+/

=back

=head1 AUTHOR

Dima Kogan, C<< <dima@secretsauce.net> >>

[-- Attachment #9: follow4096 --]
[-- Type: application/octet-stream, Size: 228766 bytes --]

Line: 945306 Refcount: 1. emacs-snapshot- 28044 [000] 587944.079126: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4278980
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 945520 Refcount: 2. emacs-snapshot- 28044 [000] 587944.079147: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e94140
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 987668 Refcount: 3. emacs-snapshot- 28044 [001] 587944.094209: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1029684 Refcount: 2. emacs-snapshot- 28044 [001] 587944.115094: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15e8bd eval_sub (/usr/bin/emacs-snapshot-lucid)
	          162382 Feval (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	           f2d62 menu_item_eval_property (/usr/bin/emacs-snapshot-lucid)
	           f3a09 parse_menu_item.part.31 (/usr/bin/emacs-snapshot-lucid)
	           68e93 single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1891701 Refcount: 3. emacs-snapshot- 28044 [001] 587946.097304: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x414c480
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1891915 Refcount: 4. emacs-snapshot- 28044 [001] 587946.097326: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40ac1d0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1892129 Refcount: 5. emacs-snapshot- 28044 [001] 587946.097347: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e95150
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 1932452 Refcount: 6. emacs-snapshot- 28044 [000] 587946.111013: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2471670 Refcount: 5. emacs-snapshot- 28044 [000] 587946.182840: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15fa3d call1 (/usr/bin/emacs-snapshot-lucid)
	          166cba mapcar1 (/usr/bin/emacs-snapshot-lucid)
	          1673a9 Fmapcar (/usr/bin/emacs-snapshot-lucid)
	          15f928 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2842574 Refcount: 6. emacs-snapshot- 28044 [001] 587948.105005: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e96160
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2842788 Refcount: 7. emacs-snapshot- 28044 [001] 587948.105034: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42756a0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2843002 Refcount: 8. emacs-snapshot- 28044 [001] 587948.105060: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42766b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 2843216 Refcount: 9. emacs-snapshot- 28044 [001] 587948.105085: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42776c0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 3786976 Refcount: 10. emacs-snapshot- 28044 [000] 587950.114887: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e8f960
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 3787190 Refcount: 11. emacs-snapshot- 28044 [000] 587950.114910: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e90970
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 3787404 Refcount: 12. emacs-snapshot- 28044 [000] 587950.114930: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e91980
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 4732496 Refcount: 13. emacs-snapshot- 28044 [001] 587952.137853: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e92990
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 4732710 Refcount: 14. emacs-snapshot- 28044 [001] 587952.137880: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40cab20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 4732924 Refcount: 15. emacs-snapshot- 28044 [001] 587952.137905: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40cbb30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 5522786 Refcount: 16. emacs-snapshot- 28044 [001] 587952.286476: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4221360
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           f2f69 process_tool_bar_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           f405f tool_bar_items (/usr/bin/emacs-snapshot-lucid)
	           32241 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 5663647 Refcount: 17. emacs-snapshot- 28044 [001] 587954.155092: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 5690430 Refcount: 16. emacs-snapshot- 28044 [001] 587954.173351: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15e8bd eval_sub (/usr/bin/emacs-snapshot-lucid)
	          162382 Feval (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	           f2d62 menu_item_eval_property (/usr/bin/emacs-snapshot-lucid)
	           f3705 parse_menu_item.part.31 (/usr/bin/emacs-snapshot-lucid)
	           68e93 single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 6568355 Refcount: 17. emacs-snapshot- 28044 [001] 587956.152021: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3eaccf0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 6568569 Refcount: 18. emacs-snapshot- 28044 [001] 587956.152044: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41f1120
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 6568783 Refcount: 19. emacs-snapshot- 28044 [001] 587956.152064: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4162810
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7522468 Refcount: 20. emacs-snapshot- 28044 [000] 587958.168485: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4235c70
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7522682 Refcount: 21. emacs-snapshot- 28044 [000] 587958.168507: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4032830
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7522896 Refcount: 22. emacs-snapshot- 28044 [000] 587958.168528: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41d8f30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 7564029 Refcount: 23. emacs-snapshot- 28044 [001] 587958.182345: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8125647 Refcount: 22. emacs-snapshot- 28044 [001] 587958.289945: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15fa0a call0 (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           eae54 safe_run_hook_funcall (/usr/bin/emacs-snapshot-lucid)
	          15d834 run_hook_with_args.part.8 (/usr/bin/emacs-snapshot-lucid)
	           ef7a9 safe_run_hooks (/usr/bin/emacs-snapshot-lucid)
	           32086 update_menu_bar.part.16 (/usr/bin/emacs-snapshot-lucid)
	           538bc redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8460139 Refcount: 23. emacs-snapshot- 28044 [000] 587960.184641: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x417a070
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8460353 Refcount: 24. emacs-snapshot- 28044 [000] 587960.184662: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41dbf50
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8460567 Refcount: 25. emacs-snapshot- 28044 [000] 587960.184684: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4044c10
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 8501678 Refcount: 26. emacs-snapshot- 28044 [000] 587960.200717: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9099874 Refcount: 25. emacs-snapshot- 28044 [001] 587960.325504: probe_libc:free: (7fa38bffc660) mem=0x40647b0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15e8bd eval_sub (/usr/bin/emacs-snapshot-lucid)
	          162382 Feval (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	           f2d62 menu_item_eval_property (/usr/bin/emacs-snapshot-lucid)
	           f3a09 parse_menu_item.part.31 (/usr/bin/emacs-snapshot-lucid)
	           68e93 single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           320dc update_menu_bar.part.16 (/usr/bin/emacs-snapshot-lucid)
	           538bc redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9410176 Refcount: 26. emacs-snapshot- 28044 [001] 587962.193346: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4049c40
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9410390 Refcount: 27. emacs-snapshot- 28044 [001] 587962.193374: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4176050
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9410604 Refcount: 28. emacs-snapshot- 28044 [001] 587962.193400: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4177060
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 9450917 Refcount: 29. emacs-snapshot- 28044 [000] 587962.209132: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40647b0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 10202797 Refcount: 30. emacs-snapshot- 28044 [000] 587962.342221: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x416ab20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          146197 Fmake_vector (/usr/bin/emacs-snapshot-lucid)
	          165ad8 concat (/usr/bin/emacs-snapshot-lucid)
	          165b9f Fcopy_sequence (/usr/bin/emacs-snapshot-lucid)
	           32235 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11248391 Refcount: 31. emacs-snapshot- 28044 [001] 587966.221391: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4048c10
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11248605 Refcount: 32. emacs-snapshot- 28044 [001] 587966.221413: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x416bb30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11291248 Refcount: 33. emacs-snapshot- 28044 [001] 587966.235371: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41ea920
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 11336335 Refcount: 32. emacs-snapshot- 28044 [001] 587966.255399: probe_libc:free: (7fa38bffc660) mem=0x41ea920
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15fa91 call2 (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           fe40a Fmap_keymap (/usr/bin/emacs-snapshot-lucid)
	          15f919 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           2b041 safe__call (/usr/bin/emacs-snapshot-lucid)
	           38c8e safe_call (/usr/bin/emacs-snapshot-lucid)
	           fea53 map_keymap_canonical (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12195174 Refcount: 33. emacs-snapshot- 28044 [000] 587968.235950: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4178070
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12195388 Refcount: 34. emacs-snapshot- 28044 [000] 587968.235972: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4298780
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12195602 Refcount: 35. emacs-snapshot- 28044 [000] 587968.235991: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4045c20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12236411 Refcount: 36. emacs-snapshot- 28044 [001] 587968.250005: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41ea920
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 12776717 Refcount: 35. emacs-snapshot- 28044 [000] 587968.324688: probe_libc:free: (7fa38bffc660) mem=0x41ea920
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147241 Refcount: 36. emacs-snapshot- 28044 [001] 587970.245434: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4046c30
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147455 Refcount: 37. emacs-snapshot- 28044 [001] 587970.245462: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x41d9f40
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147669 Refcount: 38. emacs-snapshot- 28044 [001] 587970.245488: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3ea4330
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 13147883 Refcount: 39. emacs-snapshot- 28044 [001] 587970.245513: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4173f70
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14092181 Refcount: 40. emacs-snapshot- 28044 [001] 587972.258977: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4174f80
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14092395 Refcount: 41. emacs-snapshot- 28044 [001] 587972.259005: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4118d10
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14092609 Refcount: 42. emacs-snapshot- 28044 [001] 587972.259030: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4119d20
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 14887310 Refcount: 43. emacs-snapshot- 28044 [000] 587972.403870: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40c7e50
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           f2f69 process_tool_bar_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           f405f tool_bar_items (/usr/bin/emacs-snapshot-lucid)
	           32241 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15026982 Refcount: 44. emacs-snapshot- 28044 [001] 587974.285407: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x3e8d950
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15027196 Refcount: 45. emacs-snapshot- 28044 [001] 587974.285429: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4114cf0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15818645 Refcount: 46. emacs-snapshot- 28044 [001] 587974.428265: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4117c50
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           f2f69 process_tool_bar_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           fe39b map_keymap (/usr/bin/emacs-snapshot-lucid)
	           f405f tool_bar_items (/usr/bin/emacs-snapshot-lucid)
	           32241 update_tool_bar (/usr/bin/emacs-snapshot-lucid)
	           534b6 redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15970103 Refcount: 47. emacs-snapshot- 28044 [000] 587976.293194: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4103760
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 15995633 Refcount: 46. emacs-snapshot- 28044 [000] 587976.309523: probe_libc:free: (7fa38bffc660) mem=0x4103760
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           2b041 safe__call (/usr/bin/emacs-snapshot-lucid)
	           38c8e safe_call (/usr/bin/emacs-snapshot-lucid)
	           fea53 map_keymap_canonical (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 16870654 Refcount: 47. emacs-snapshot- 28044 [000] 587978.297847: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4233b90
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 16870868 Refcount: 48. emacs-snapshot- 28044 [000] 587978.297876: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4157920
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 16871082 Refcount: 49. emacs-snapshot- 28044 [000] 587978.297901: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x40fd510
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17817919 Refcount: 50. emacs-snapshot- 28044 [000] 587980.305348: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4273fb0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17818133 Refcount: 51. emacs-snapshot- 28044 [000] 587980.305370: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x4115d00
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17818347 Refcount: 52. emacs-snapshot- 28044 [000] 587980.305393: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x42c2eb0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	           a427c make_sub_char_table (/usr/bin/emacs-snapshot-lucid)
	           a4f1a sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a4f34 sub_char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a69a8 char_table_set_range (/usr/bin/emacs-snapshot-lucid)
	           a6b40 Fset_char_table_range (/usr/bin/emacs-snapshot-lucid)
	          1c838b Fset_fontset_font (/usr/bin/emacs-snapshot-lucid)
	          1c9dfc fontset_from_font (/usr/bin/emacs-snapshot-lucid)
	           c9e50 x_new_font (/usr/bin/emacs-snapshot-lucid)
	           2534e x_set_font (/usr/bin/emacs-snapshot-lucid)
	           23e66 x_set_frame_parameters (/usr/bin/emacs-snapshot-lucid)
	           26ab5 x_default_parameter (/usr/bin/emacs-snapshot-lucid)
	           d03ba x_default_font_parameter (/usr/bin/emacs-snapshot-lucid)
	           d7f98 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 17859466 Refcount: 53. emacs-snapshot- 28044 [000] 587980.319496: probe_libc:malloc_ret: (7fa38bffc020 <- 543fb1) arg1=0x422ccc0
	          143fb1 xmalloc (/usr/bin/emacs-snapshot-lucid)
	          14518f allocate_vectorlike.part.19 (/usr/bin/emacs-snapshot-lucid)
	          145ead allocate_vector (/usr/bin/emacs-snapshot-lucid)
	          16a899 larger_vector (/usr/bin/emacs-snapshot-lucid)
	           68c68 ensure_menu_items (/usr/bin/emacs-snapshot-lucid)
	           68d0e push_menu_item (/usr/bin/emacs-snapshot-lucid)
	           68f9e single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           d88b5 Fx_create_frame (/usr/bin/emacs-snapshot-lucid)
	          15f933 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f350 funcall_lambda (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160d13 Fapply (/usr/bin/emacs-snapshot-lucid)
	          15f831 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          195823 exec_byte_code (/usr/bin/emacs-snapshot-lucid)
	          15f72b Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          160bb0 Fapply (/usr/bin/emacs-snapshot-lucid)
	          160d8a apply1 (/usr/bin/emacs-snapshot-lucid)
	          15df4a internal_condition_case_1 (/usr/bin/emacs-snapshot-lucid)
	          1992e0 read_process_output (/usr/bin/emacs-snapshot-lucid)
	          1a0c6b wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)

Line: 18437181 Refcount: 52. emacs-snapshot- 28044 [000] 587980.426933: probe_libc:free: (7fa38bffc660) mem=0x422ccc0
	           7c660 free (/lib/x86_64-linux-gnu/libc-2.19.so)
	          1479c7 Fgarbage_collect (/usr/bin/emacs-snapshot-lucid)
	          15f606 Ffuncall (/usr/bin/emacs-snapshot-lucid)
	          15e18e internal_condition_case_n (/usr/bin/emacs-snapshot-lucid)
	           2b041 safe__call (/usr/bin/emacs-snapshot-lucid)
	           38c8e safe_call (/usr/bin/emacs-snapshot-lucid)
	           fea53 map_keymap_canonical (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6901c single_menu_item (/usr/bin/emacs-snapshot-lucid)
	           fd849 map_keymap_internal (/usr/bin/emacs-snapshot-lucid)
	           68ded single_keymap_panes (/usr/bin/emacs-snapshot-lucid)
	           6a1e1 parse_single_submenu (/usr/bin/emacs-snapshot-lucid)
	           6b87b set_frame_menubar (/usr/bin/emacs-snapshot-lucid)
	           320dc update_menu_bar.part.16 (/usr/bin/emacs-snapshot-lucid)
	           538bc redisplay_internal (/usr/bin/emacs-snapshot-lucid)
	           54e5a redisplay_preserve_echo_area (/usr/bin/emacs-snapshot-lucid)
	          1a0cce wait_reading_process_output (/usr/bin/emacs-snapshot-lucid)
	           1ed86 sit_for (/usr/bin/emacs-snapshot-lucid)
	           f6b79 read_char (/usr/bin/emacs-snapshot-lucid)
	           f7534 read_key_sequence.constprop.35 (/usr/bin/emacs-snapshot-lucid)
	           f9200 command_loop_1 (/usr/bin/emacs-snapshot-lucid)
	          15de36 internal_condition_case (/usr/bin/emacs-snapshot-lucid)
	           ea74c command_loop_2 (/usr/bin/emacs-snapshot-lucid)
	          15dd2a internal_catch (/usr/bin/emacs-snapshot-lucid)
	           ea709 command_loop (/usr/bin/emacs-snapshot-lucid)
	           ef133 recursive_edit_1 (/usr/bin/emacs-snapshot-lucid)
	           ef4ab Frecursive_edit (/usr/bin/emacs-snapshot-lucid)
	           148c6 main (/usr/bin/emacs-snapshot-lucid)
	           21b45 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)


  reply	other threads:[~2015-09-21  8:54 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-11  6:01 Debugging emacs memory management Dima Kogan
2015-02-11 15:05 ` Stefan Monnier
2015-02-15 20:28   ` Dima Kogan
2015-02-15 20:47     ` Eli Zaretskii
2015-02-16  1:39       ` Stefan Monnier
2015-02-17  7:59         ` Dima Kogan
2015-02-17 15:59           ` Eli Zaretskii
2015-02-18  0:07           ` Stefan Monnier
2015-02-11 19:07 ` Florian Weimer
2015-09-15 19:27 ` Dima Kogan
2015-09-16 16:28   ` Paul Eggert
2015-09-20 22:01     ` Dima Kogan
2015-09-21  6:46       ` Eli Zaretskii
2015-09-21  8:54         ` Dima Kogan [this message]
2015-09-21 10:00           ` Eli Zaretskii
2015-09-21 10:21             ` Eli Zaretskii
2015-09-22 21:33               ` Dima Kogan
2015-09-23  6:35                 ` Eli Zaretskii
2015-09-23  6:37                   ` Dima Kogan
2015-09-23  7:16                     ` Eli Zaretskii
2015-10-05  7:21               ` Dima Kogan
2015-10-05  7:55                 ` Eli Zaretskii
2015-10-05  8:24                   ` Dima Kogan
2015-10-05  8:33                     ` Eli Zaretskii
2015-10-05  8:43                     ` Eli Zaretskii
2015-10-05  9:24                       ` Dima Kogan
2015-10-05  9:49                         ` Dima Kogan
2015-10-05  9:58                           ` Andreas Schwab
2015-10-05 10:02                             ` Dima Kogan
2015-10-05 10:47                               ` Eli Zaretskii
2015-10-05 18:19                                 ` Dima Kogan
2015-10-05 18:24                                   ` Eli Zaretskii
2015-10-05 23:21                                   ` Dima Kogan
2015-10-06  2:41                                     ` Eli Zaretskii
2015-10-08 21:51                                       ` Dima Kogan
2015-09-16 16:34   ` Davis Herring
2015-09-16 22:03   ` Markus Triska

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87oagw885o.fsf@secretsauce.net \
    --to=lists@dima.secretsauce.net \
    --cc=eggert@cs.ucla.edu \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.