Created
October 16, 2013 16:29
-
-
Save metajack/7010750 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#0 arena_mapbits_get (pageind=0, chunk=0x0) | |
at /home/jack/src/servo/src/compiler/rust/src/rt/jemalloc/include/jemalloc/internal/arena.h:504 | |
#1 arena_mapbits_binind_get (pageind=0, chunk=0x0) | |
at /home/jack/src/servo/src/compiler/rust/src/rt/jemalloc/include/jemalloc/internal/arena.h:545 | |
#2 arena_salloc (demote=false, ptr=0x7) | |
at /home/jack/src/servo/src/compiler/rust/src/rt/jemalloc/include/jemalloc/internal/arena.h:950 | |
#3 isalloc (demote=false, ptr=0x7) | |
at include/jemalloc/internal/jemalloc_internal.h:864 | |
#4 free (ptr=0x7) | |
at /home/jack/src/servo/src/compiler/rust/src/rt/jemalloc/src/jemalloc.c:1267 | |
#5 0x0000000000495ee1 in layout..float_context..FloatContext::glue_drop::hfac047778210dcaaz () | |
#6 0x0000000000494cc3 in layout..block..BlockFlowData::glue_drop::h33e53aa061e3dc98ah () | |
#7 0x000000000049497b in layout..flow..FlowContext::glue_drop::h6530658b5737bcd0a3 () at /home/jack/src/servo/src/components/main/layout/block.rs:39 | |
#8 0x00000000004dba09 in servo::layout::layout_task::LayoutTask::handle_reflow () at /home/jack/src/servo/src/components/main/layout/layout_task.rs:367 | |
#9 0x00000000004d6811 in fn25861 () | |
at /home/jack/src/servo/src/components/main/layout/layout_task.rs:155 | |
#10 fn16119 () | |
at /home/jack/src/servo/src/components/main/compositing/mod.rs:477 | |
#11 handle_request () | |
at /home/jack/src/servo/src/components/main/layout/layout_task.rs:155 | |
#12 start () | |
at /home/jack/src/servo/src/components/main/layout/layout_task.rs:130 | |
#13 fn25737 () | |
at /home/jack/src/servo/src/components/main/layout/layout_task.rs:95 | |
#14 0x00007ffff792e665 in task::spawn::spawn_raw::anon::expr_fn::ab () | |
from /home/jack/src/servo/build/x86_64-unknown-linux-gnu/src/compiler/rust/x86_64-unknown-linux-gnu/stage2/lib/rustc/x86_64-unknown-linux-gnu/lib/libstd-6c65cf4b443341b1-0.9-pre.so |
I think that the problem is that we're freeing libc malloc pointers with jemalloc. I ran across this with libuv allocating with libc malloc via strdup, and then freeing via jemalloc's free.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Mine is slightly different but appears to be the same error (using src/test/html/about-mozilla.html):