Skip to content

Instantly share code, notes, and snippets.

@dogbert17
Created March 7, 2020 11:30
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/892d5892162fbe412891d5580cf59e39 to your computer and use it in GitHub Desktop.
Save dogbert17/892d5892162fbe412891d5580cf59e39 to your computer and use it in GitHub Desktop.
SIGABRT
1..4
ok 1 - called the ready callback once
ok 2 - got the correct output on stdout
ok 3 - called the ready callback once
ok 4 - got the correct output on stderr
Aborted (core dumped)
dogbert@dogbert-VirtualBox ~/repos/rakudo/nqp $ gdb /home/dogbert/repos/rakudo/install/bin/moar core
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /home/dogbert/repos/rakudo/install/bin/moar...done.
[New LWP 11278]
[New LWP 11273]
[New LWP 11274]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `/home/dogbert/repos/rakudo/install/bin/moar --execname=/home/dogbert/repos/raku'.
Program terminated with signal SIGABRT, Aborted.
#0 0x00007f7a1cca8428 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:54
54 ../sysdeps/unix/sysv/linux/raise.c: No such file or directory.
[Current thread is 1 (Thread 0x7f7a1afc6700 (LWP 11278))]
(gdb) bt
#0 0x00007f7a1cca8428 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:54
#1 0x00007f7a1ccaa02a in __GI_abort () at abort.c:89
#2 0x00007f7a1d41162b in uv__signal_block_and_lock (saved_sigmask=0x7f7a1afc0fc0) at 3rdparty/libuv/src/unix/signal.c:150
#3 0x00007f7a1d412391 in uv__signal_stop (handle=0x20e1b58) at 3rdparty/libuv/src/unix/signal.c:550
#4 0x00007f7a1d412348 in uv_signal_stop (handle=0x20e1b58) at 3rdparty/libuv/src/unix/signal.c:533
#5 0x00007f7a1d4100b8 in uv__process_close (handle=0x7f7a0c0008c0) at 3rdparty/libuv/src/unix/process.c:602
#6 0x00007f7a1d403d5b in uv_close (handle=0x7f7a0c0008c0, close_cb=0x7f7a1d2b1058 <spawn_async_close>) at 3rdparty/libuv/src/unix/core.c:163
#7 0x00007f7a1d2b1290 in async_spawn_on_exit (req=0x7f7a0c0008c0, exit_status=0, term_signal=0) at src/io/procops.c:512
#8 0x00007f7a1d40ee73 in uv__chld (handle=0x20e1b58, signum=17) at 3rdparty/libuv/src/unix/process.c:109
#9 0x00007f7a1d4120b5 in uv__signal_event (loop=0x20e18f0, w=0x20e1b20, events=1) at 3rdparty/libuv/src/unix/signal.c:468
#10 0x00007f7a1d3fa8fd in uv__io_poll (loop=0x20e18f0, timeout=-1) at 3rdparty/libuv/src/unix/linux-core.c:438
#11 0x00007f7a1d40434b in uv_run (loop=0x20e18f0, mode=UV_RUN_DEFAULT) at 3rdparty/libuv/src/unix/core.c:375
#12 0x00007f7a1d2aa75a in enter_loop (tc=0x20e1ec0, callsite=0x7f7a1db8cd60 <null_args_callsite>, args=0x0) at src/io/eventloop.c:90
#13 0x00007f7a1d2cce4e in invoke_handler (tc=0x20e1ec0, invokee=0x7f7a1c318878, callsite=0x7f7a1db8cd60 <null_args_callsite>, args=0x0) at src/6model/reprs/MVMCFunction.c:9
#14 0x00007f7a1d26ebb1 in thread_initial_invoke (tc=0x20e1ec0, data=0x20e0c30) at src/core/threads.c:59
#15 0x00007f7a1d22ac36 in MVM_interp_run (tc=0x20e1ec0, initial_invoke=0x7f7a1d26eb26 <thread_initial_invoke>, invoke_data=0x20e0c30) at src/core/interp.c:150
#16 0x00007f7a1d26ec6f in start_thread (data=0x20e0c30) at src/core/threads.c:87
#17 0x00007f7a1c7546ba in start_thread (arg=0x7f7a1afc6700) at pthread_create.c:333
#18 0x00007f7a1cd7a41d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109
(gdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment