Skip to content

Instantly share code, notes, and snippets.

@dogbert17
Last active November 8, 2017 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogbert17/71d071ab34c69ee123bc1167d6b4bd0f to your computer and use it in GitHub Desktop.
Save dogbert17/71d071ab34c69ee123bc1167d6b4bd0f to your computer and use it in GitHub Desktop.
Test 62 panicking
Breakpoint 1, MVM_panic (exitCode=1, messageFormat=0xb7cae77c "non-AsyncTask fetched from eventloop active work list: was %s") at src/core/exceptions.c:682
682 fprintf(stderr, "MoarVM panic: ");
(gdb) bt
#0 MVM_panic (exitCode=1, messageFormat=0xb7cae77c "non-AsyncTask fetched from eventloop active work list: was %s") at src/core/exceptions.c:682
#1 0xb7bba791 in MVM_io_eventloop_get_active_work (tc=0xb35e9040, work_idx=0) at src/io/eventloop.c:229
#2 0xb7bc30c4 in cancel (tc=0xb35e9040, loop=0xb35e9230, async_task=0xb5188648, data=0xb41a15f8) at src/io/timers.c:34
#3 0xb7bb9dc2 in cancel_work (tc=0xb35e9040) at src/io/eventloop.c:49
#4 0xb7bb9e50 in async_handler (handle=0xb1600468) at src/io/eventloop.c:65
#5 0xb7c902ad in uv__async_io (loop=0xb35e9230, w=0xb35e9320, events=1) at 3rdparty/libuv/src/unix/async.c:118
#6 0xb7c8c66c in uv__io_poll (loop=0xb35e9230, timeout=2) at 3rdparty/libuv/src/unix/linux-core.c:400
#7 0xb7c90bb3 in uv_run () from //home/dogbert/repos/rakudo/nqp/MoarVM/../../install/lib/libmoar.so
#8 0xb7bb9ef6 in enter_loop (tc=0xb35e9040, callsite=0xb7fd74c4 <null_args_callsite>, args=0x0) at src/io/eventloop.c:83
#9 0xb7bda116 in invoke_handler (tc=0xb35e9040, invokee=0xa47b9d4, callsite=0xb7fd74c4 <null_args_callsite>, args=0x0) at src/6model/reprs/MVMCFunction.c:9
#10 0xb7b8ff8d in thread_initial_invoke (tc=0xb35e9040, data=0xb35e9dc8) at src/core/threads.c:59
#11 0xb7b5701d in MVM_interp_run (tc=0xb35e9040, initial_invoke=0xb7b8ff04 <thread_initial_invoke>, invoke_data=0xb35e9dc8) at src/core/interp.c:93
#12 0xb7b9003e in start_thread (data=0xb35e9dc8) at src/core/threads.c:85
#13 0xb7886f72 in start_thread (arg=0xb14ffb40) at pthread_create.c:312
#14 0xb79d13ee in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129
(gdb) info threads
Id Target Id Frame
10 Thread 0xafcffb40 (LWP 10875) "moar" 0xb7fdccb0 in ?? ()
9 Thread 0xb4affb40 (LWP 10874) "moar" 0xb7bab7e8 in MVM_gc_allocate (tc=0xb2baf010, size=112) at src/gc/allocation.h:10
8 Thread 0xb0affb40 (LWP 10867) "moar" 0xb7fdccb0 in ?? ()
* 7 Thread 0xb14ffb40 (LWP 10866) "moar" MVM_panic (exitCode=1, messageFormat=0xb7cae77c "non-AsyncTask fetched from eventloop active work list: was %s") at src/core/exceptions.c:682
6 Thread 0xb20ffb40 (LWP 10865) "moar" 0xb7fdccb0 in ?? ()
5 Thread 0xb2affb40 (LWP 10864) "moar" 0xb7b8bbc3 in MVM_frame_extra (tc=0xb2bafb88, f=0xb2bd0918) at src/core/frame.c:1799
4 Thread 0xb34ffb40 (LWP 10863) "moar" 0xb7fdccb0 in ?? ()
3 Thread 0xb3e79b40 (LWP 10862) "moar" 0xb7b62f06 in MVM_interp_run (tc=0xa471fc8, initial_invoke=0xb7b8ff04 <thread_initial_invoke>, invoke_data=0xa4b2e00) at src/core/interp.c:1856
2 Thread 0xb742cb40 (LWP 10860) "moar" 0xb7fdccb0 in ?? ()
1 Thread 0xb7870700 (LWP 10858) "moar" 0xb7fdccb0 in ?? ()
(gdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment