Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

osmocom_fft and osmocom_siggen #34

Closed
gilbertoverg opened this issue May 31, 2017 · 16 comments
Closed

osmocom_fft and osmocom_siggen #34

gilbertoverg opened this issue May 31, 2017 · 16 comments

Comments

@gilbertoverg
Copy link

Hi, I can see that osmocom_fft and osmocom_siggen are present inside /GNURadio.app/Contents/MacOS/usr/
How can I run both?
Thank you

@dholl
Copy link
Contributor

dholl commented Jun 1, 2017

To access the other binaries under usr/bin, there are a few environment variables to set first -- specified in grenv.sh. From a shell (sh, ash, bash, dash, ksh, zsh, ..., anything except for csh/tcsh), try this first:

. /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh

The . on the first line tells your shell to source the contents of grenv.sh. You only need to source this once. If you want, you could put this . /.../usr/bin/grenv.sh command in your shell's startup scripts, such as ~/.zshenv if you're using zsh. See the man page for your shell for details. (Note: bash is a little complicated. Definitely consult man bash if you're using bash; check out the section titled INVOCATION.)

Now you should be able to run other programs in .../usr/bin, such as

osmocom_fft --help

Does that work for you?

Disclaimer: From my former sys-admin days, I've learned to appreciate zsh, especially for its simplified startup script sequence --- as highlighted in man zsh under the STARTUP/SHUTDOWN FILES section.

If you do want to modify your shell's startup files, try something like:

if test -e /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh ; then
    . /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh
fi

so that if you ever move the GNURadio.app bundle, then your shell won't complain too much.

@gilbertoverg
Copy link
Author

I've looked at run-grc and I've created run-fft:

#!/bin/sh
source /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh
osmocom_fft ${@} &
exit 0

and run-siggen:

#!/bin/sh
source /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh
osmocom_siggen ${@} &
exit 0

I'm getting the option list running ./run-fft -help and ./run-siggen -help
But when running ./run-fft and ./run-siggen with wifi enabled I'm getting a crash.
With wifi disabled, running ./run-fft does not work and shows this on the terminal:

bash-3.2$ ./run-fft
bash-3.2$ Mac OS; Clang version 8.1.0 (clang-802.0.42); Boost_106300; UHD_003.010.001.local-release_003_010_001_001-0-gc705922a

gr-osmosdr 0.1.4 (0.1.4) gnuradio 3.7.10.1
built-in source types: file osmosdr fcd rtl rtl_tcp uhd miri hackrf bladerf rfspace airspy 
Using HackRF One with firmware 2017.02.1 
Traceback (most recent call last):
  File "/Applications/GNURadio.app/Contents/MacOS/usr/bin/osmocom_fft", line 841, in <module>
    main ()
  File "/Applications/GNURadio.app/Contents/MacOS/usr/bin/osmocom_fft", line 837, in main
    app = stdgui2.stdapp(app_top_block, "osmocom Spectrum Browser", nstatus=1)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 46, in __init__
    wx.App.__init__ (self, redirect=False)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_core.py", line 8628, in __init__
    self._BootstrapApp()
  File "/Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_core.py", line 8196, in _BootstrapApp
    return _core_.PyApp__BootstrapApp(*args, **kwargs)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 49, in OnInit
    frame = stdframe (self.top_block_maker, self.title, self._nstatus)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 76, in __init__
    self.panel = stdpanel (self, self, top_block_maker)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 98, in __init__
    self.top_block = top_block_maker (frame, self, vbox, sys.argv)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/bin/osmocom_fft", line 246, in __init__
    fft_rate=options.fft_rate)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/fftsink_nongl.py", line 198, in __init__
    self.win = fft_window(self, parent, size=size)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/fftsink_nongl.py", line 331, in __init__
    self.control_panel = control_panel(self)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/fftsink_nongl.py", line 256, in __init__
    wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_windows.py", line 68, in __init__
    _windows_.Panel_swiginit(self,_windows_.new_Panel(*args, **kwargs))
wx._core.PyAssertionError: C++ assertion "m_window" failed at ./src/gtk/dcclient.cpp(2043) in DoGetSize(): GetSize() doesn't work without window

With wifi disabled ./run-siggen works:
schermata 2017-06-02 alle 09 13 38

@dholl
Copy link
Contributor

dholl commented Jun 2, 2017

I don't have any ideas for the crash when wifi is enabled. @cfriedt any ideas?


Regarding the small scripts, I have some small fixes for run-grc to address sh scripting practices as well as #5 , but I'm waiting to see what @cfriedt has up his sleeve with regard to #13 before I submit my own run-grc fixes.

Your script has the right idea, but for those command line tools, try this template: (This won't fix your crash.)

#!/bin/sh
. /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh
exec osmocom_fft "${@}"
#!/bin/sh
. /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh
exec osmocom_siggen "${@}"

Summary: (Feel free to ignore or use only pieces of these tips. Use " around ${@} to expand correctly for all input arguments, such as spaces or whatever. Use exec to replace the sh process with your binary. Don't need & within the script, but if you'd like to run the whole thing in background, then use ./run-fft &. And use . instead of source, since . is in the POSIX sh spec, but source is not --- or just change the first line to #!/bin/bash to declare that you'd prefer bash syntax in the first place. ;)

If you'd like a single script to let you run any of the commands in /Applications/GNURadio.app/Contents/MacOS/usr/bin, then try saving this file to $HOME/gr with chmod +x "$HOME/gr"

#!/bin/sh
prog="$1"
# shift will drop $1 and shift over the rest of the args so $2 becomes $1, $3 becomes $2, etc...
shift
. /Applications/GNURadio.app/Contents/MacOS/usr/bin/grenv.sh
exec "${prog}" "${@}"

Then you should be able to run osmocom_fft or any of the utilities without needing separate scripts:

~/gr osmocom_fft --help
~/gr osmocom_siggen --help

The nifty part of restructuring your scripts like this (using exec, no &, and " around $@), is that now if you wanted to automate setting up your project, you can write a master script to launch your subprocesses, keeping track of their child PID's, and killing them when you're done.

#!/bin/sh

# Launch osmocom_siggen in background and save its pid:
~/gr osmocom_siggen --some --args &
pid_siggen=$!

# Launch osmocom_fft in background and save its pid:
~/gr osmocom_fft --some --other --args &
pid_fft=$!

# do other stuff, collect your data, etc...

# now shut down:
kill $pid_siggen $pid_fft

This job control wouldn't be possible if the & was present in subscripts like gr or run-fft, because the child PID of the subprocess would've already been discarded in the sub shell.

Sorry I won't be of much help to resolve the crash when wireless is enabled, but I hope the scripting pointers will help build empires.

@gilbertoverg
Copy link
Author

@dholl thank you so much for your help

now when I try to run osmocom_siggen sometimes it works (even with wifi enabled) sometimes it crashes (even with wifi disabled), this is the crash window:

Process:               Python [36237]
Path:                  /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Identifier:            Python
Version:               2.7.10 (2.7.10)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Python [36237]
User ID:               501

PlugIn Path:             /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-blocks.3.7.10.1.dylib
PlugIn Identifier:       libgnuradio-blocks.3.7.10.1.dylib
PlugIn Version:          ??? (0)

Date/Time:             2017-06-02 19:55:03.078 +0200
OS Version:            Mac OS X 10.12.5 (16F73)
Report Version:        12
Anonymous UUID:        89217373-AFE7-7417-702C-977184FF22A8

Sleep/Wake UUID:       98686CC2-CB85-4B84-91B1-0200968BDC32

Time Awake Since Boot: 450000 seconds
Time Since Wake:       680 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000010000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Segmentation fault: 11
Termination Reason:    Namespace SIGNAL, Code 0xb
Terminating Process:   exc handler [0]

VM Regions Near 0x10000:
--> 
    __TEXT                 0000000101ceb000-0000000101ced000 [    8K] r-x/rwx SM=COW  /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libgnuradio-blocks.3.7.10.1.dylib	0x0000000104880ced boost::asio::detail::task_io_service::init_task() + 141
1   libgnuradio-blocks.3.7.10.1.dylib	0x0000000104882d68 boost::asio::io_service::service* boost::asio::detail::service_registry::create<boost::asio::datagram_socket_service<boost::asio::ip::udp> >(boost::asio::io_service&) + 120
2   libuhd.003.dylib              	0x00000001082b6e67 boost::asio::detail::service_registry::do_use_service(boost::asio::io_service::service::key const&, boost::asio::io_service::service* (*)(boost::asio::io_service&)) + 263
3   libuhd.003.dylib              	0x000000010856e699 udp_simple_impl::udp_simple_impl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool, bool) + 1881
4   libuhd.003.dylib              	0x000000010856dd37 uhd::transport::udp_simple::make_broadcast(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 55
5   libuhd.003.dylib              	0x00000001082c8f5f usrp2_find(uhd::device_addr_t const&) + 2239
6   libuhd.003.dylib              	0x00000001082c93d9 usrp2_find(uhd::device_addr_t const&) + 3385
7   libuhd.003.dylib              	0x0000000108283dc1 boost::detail::function::function_invoker1<std::__1::vector<uhd::device_addr_t, std::__1::allocator<uhd::device_addr_t> > (*)(uhd::device_addr_t const&), std::__1::vector<uhd::device_addr_t, std::__1::allocator<uhd::device_addr_t> >, uhd::device_addr_t const&>::invoke(boost::detail::function::function_buffer&, uhd::device_addr_t const&) + 17
8   libuhd.003.dylib              	0x000000010857c618 uhd::device::find(uhd::device_addr_t const&, uhd::device::device_filter_t) + 248
9   libgnuradio-osmosdr.0.1.4.dylib	0x0000000107c4adec uhd_sink_c::get_devices() + 156
10  libgnuradio-osmosdr.0.1.4.dylib	0x0000000107c14e8b sink_impl::sink_impl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 1979
11  libgnuradio-osmosdr.0.1.4.dylib	0x0000000107c145bf osmosdr::sink::make(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 47
12  _osmosdr_swig.so              	0x0000000107b4f0d8 _wrap_sink_make(_object*, _object*, _object*) + 200
13  org.python.python             	0x0000000101d770ac PyEval_EvalFrameEx + 13560
14  org.python.python             	0x0000000101d739be PyEval_EvalCodeEx + 1617
15  org.python.python             	0x0000000101d7a3e2 0x101cf1000 + 562146
16  org.python.python             	0x0000000101d76e4e PyEval_EvalFrameEx + 12954
17  org.python.python             	0x0000000101d7a475 0x101cf1000 + 562293
18  org.python.python             	0x0000000101d76e4e PyEval_EvalFrameEx + 12954
19  org.python.python             	0x0000000101d739be PyEval_EvalCodeEx + 1617
20  org.python.python             	0x0000000101d194d1 0x101cf1000 + 165073
21  org.python.python             	0x0000000101cfb6fb PyObject_Call + 99
22  org.python.python             	0x0000000101d063ac 0x101cf1000 + 86956
23  org.python.python             	0x0000000101cfb6fb PyObject_Call + 99
24  org.python.python             	0x0000000101d42223 0x101cf1000 + 332323
25  org.python.python             	0x0000000101d3da78 0x101cf1000 + 313976
26  org.python.python             	0x0000000101cfb6fb PyObject_Call + 99
27  org.python.python             	0x0000000101d7678b PyEval_EvalFrameEx + 11223
28  org.python.python             	0x0000000101d7a475 0x101cf1000 + 562293
29  org.python.python             	0x0000000101d76e4e PyEval_EvalFrameEx + 12954
30  org.python.python             	0x0000000101d739be PyEval_EvalCodeEx + 1617
31  org.python.python             	0x0000000101d73367 PyEval_EvalCode + 48
32  org.python.python             	0x0000000101d935dd 0x101cf1000 + 665053
33  org.python.python             	0x0000000101d93680 PyRun_FileExFlags + 133
34  org.python.python             	0x0000000101d931d1 PyRun_SimpleFileExFlags + 702
35  org.python.python             	0x0000000101da4b6a Py_Main + 3094
36  libdyld.dylib                 	0x00007fffc24b0235 start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 2:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 3:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 4:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 5:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 6:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 7:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 8:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 9:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 10:
0   libsystem_kernel.dylib        	0x00007fffc25debf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffc26ca7fa _pthread_cond_wait + 712
2   libthrift-0.10.0.dylib        	0x0000000102632a31 apache::thrift::concurrency::Monitor::Impl::waitForever() const + 177
3   libthrift-0.10.0.dylib        	0x000000010263291c apache::thrift::concurrency::Monitor::Impl::waitForTimeRelative(long long) const + 44
4   libthrift-0.10.0.dylib        	0x0000000102632580 apache::thrift::concurrency::Monitor::Impl::wait(long long) const + 32
5   libthrift-0.10.0.dylib        	0x0000000102632551 apache::thrift::concurrency::Monitor::wait(long long) const + 33
6   libthrift-0.10.0.dylib        	0x00000001025a0797 apache::thrift::concurrency::ThreadManager::Worker::run() + 439
7   libthrift-0.10.0.dylib        	0x0000000102633195 apache::thrift::concurrency::PthreadThread::threadMain(void*) + 293
8   libsystem_pthread.dylib       	0x00007fffc26c993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffc26c9887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffc26c908d thread_start + 13

Thread 11:
0   libsystem_kernel.dylib        	0x00007fffc25df44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffc26c948e _pthread_wqthread + 1023
2   libsystem_pthread.dylib       	0x00007fffc26c907d start_wqthread + 13

Thread 12:
0   libsystem_kernel.dylib        	0x00007fffc25df44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffc26c948e _pthread_wqthread + 1023
2   libsystem_pthread.dylib       	0x00007fffc26c907d start_wqthread + 13

Thread 13:
0   libsystem_pthread.dylib       	0x00007fffc26c9070 start_wqthread + 0
1   ???                           	0x0000700003224b50 0 + 123145354890064

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00007fde82532290  rbx: 0x00007fde8487c560  rcx: 0x00007fde8487c610  rdx: 0x0000000000010000
  rdi: 0x00007fde8251ff48  rsi: 0x0000060000000000  rbp: 0x00007fff5df10990  rsp: 0x00007fff5df10960
   r8: 0x00007fde8251ff60   r9: 0x0000000000743b1b  r10: 0x00007fde8251ff68  r11: 0xffffffff00000000
  r12: 0x00007fff5df10bc8  r13: 0x0000000000000000  r14: 0x00007fde8487c590  r15: 0x00007fde8251ff40
  rip: 0x0000000104880ced  rfl: 0x0000000000010206  cr2: 0x0000000000010000
  
Logical CPU:     2
Error Code:      0x00000006
Trap Number:     14


Binary Images:
       0x101ceb000 -        0x101cecfff  org.python.python (2.7.10 - 2.7.10) <FDF4A2EF-05B5-37B9-8624-045A152B6DB7> /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
       0x101cf1000 -        0x101de2ff7  org.python.python (2.7.10 - 2.7.10) <BDCDC395-7F55-3DF4-819B-7719E69BCBD9> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
       0x101fef000 -        0x101ff0fff  _locale.so (97.50.7) <16EECFD3-0814-3B9C-8CF5-D82DB670AE7F> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_locale.so
       0x1020f5000 -        0x1022b0fff +_runtime_swig.so (???) <8F4FFE19-D7D0-3C80-AF54-9D11B300FDDC> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/gr/_runtime_swig.so
       0x10232c000 -        0x102455ff7 +libgnuradio-runtime.3.7.10.1.dylib (0) <82E63CDC-550B-35F4-B605-2AAC8D8CB3EA> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-runtime.3.7.10.1.dylib
       0x102522000 -        0x102567fff +libgnuradio-pmt.3.7.10.1.dylib (0) <38EC18FE-418E-37FA-8DD4-887F2F995546> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-pmt.3.7.10.1.dylib
       0x10258d000 -        0x102667ff7 +libthrift-0.10.0.dylib (0) <7A1AE02F-0B0F-3A08-88AB-9F731FB9956D> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libthrift-0.10.0.dylib
       0x1026fc000 -        0x1026fffff +libboost_date_time.dylib (0) <D466D509-C2BF-34F2-B90F-98309606A385> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_date_time.dylib
       0x10270b000 -        0x10273ffff +libboost_program_options.dylib (0) <2448B78B-6412-3A19-B444-E00FE49BB512> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_program_options.dylib
       0x10279a000 -        0x1027a8ff7 +libboost_filesystem.dylib (0) <E1CB489A-A60C-3871-80FA-EA5373057596> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_filesystem.dylib
       0x1027ba000 -        0x1027bcfff +libboost_system.dylib (0) <F873BD39-A73C-33CA-808E-550E026047D9> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_system.dylib
       0x1027c1000 -        0x10285ffff +libboost_regex.dylib (0) <F0AD0725-6F31-31B0-B931-166177E1FDCA> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_regex.dylib
       0x1028eb000 -        0x1028f8ff7 +libboost_thread.dylib (0) <4D26BC92-E942-3FEE-83B9-43FCF519047E> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_thread.dylib
       0x102912000 -        0x102913ffb +libboost_chrono.dylib (0) <4A2BAED8-765B-38A5-B7DA-319D35B329AC> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_chrono.dylib
       0x102917000 -        0x102918fff +libboost_atomic.dylib (0) <0CA14B55-0701-3913-ABFF-4C006F2D6084> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_atomic.dylib
       0x10291b000 -        0x102af4fef +libvolk.1.3.dylib (0) <1A29026F-0F6A-39E2-BD97-5E9D4984A684> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libvolk.1.3.dylib
       0x102ba2000 -        0x102c24ff7 +liborc-0.4.dylib (26) <1ED927CF-5F37-3C9F-8E94-2EA98A8E3CB9> /Applications/GNURadio.app/Contents/MacOS/usr/lib/liborc-0.4.dylib
       0x102c60000 -        0x102cadff7 +libssl.1.1.dylib (1.1) <A6689A17-F7F8-3296-81BF-9277A8A1F524> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libssl.1.1.dylib
       0x102ccf000 -        0x102eb148f +libcrypto.1.1.dylib (1.1) <5FEF7B7D-A662-35A4-AEC4-A088CE3EEDA5> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libcrypto.1.1.dylib
       0x102f71000 -        0x102f73ff7  _collections.so (97.50.7) <1DDC550E-8ACD-3E34-B9AA-2F2575D5085E> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_collections.so
       0x102f7a000 -        0x102f7dfff  operator.so (97.50.7) <CA736B38-65D4-37D9-AAE8-04D697531142> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/operator.so
       0x102f84000 -        0x102f88fff  itertools.so (97.50.7) <3AFFF65F-D249-3EC2-8F6E-ED970FF199D6> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/itertools.so
       0x102fd2000 -        0x102fd3fff  _heapq.so (97.50.7) <E4FC7F34-E74C-3D8E-9474-BAC1648A7E5C> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_heapq.so
       0x102fd9000 -        0x102fdaffb  time.so (97.50.7) <9094E95E-EA50-30DF-A250-6003D2EDEFD5> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/time.so
       0x102fe1000 -        0x102fe2fff  _functools.so (97.50.7) <4A63F438-0EDC-36E2-963C-C93D38C662A2> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_functools.so
       0x103119000 -        0x103204fff +_pmt_swig.so (???) <A8A54C5C-7F87-38E5-B128-E66F5BE88450> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/pmt/_pmt_swig.so
       0x10327a000 -        0x10327dff7  math.so (97.50.7) <5A58C237-99FB-3CA3-BCB9-E6F150CE96BF> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so
       0x1032c4000 -        0x1033d9ff7 +multiarray.so (???) <5AEAC11E-5CF4-30A6-B0C3-273D8458FD9D> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/numpy-1.11.1-py2.7-macosx-10.12-intel.egg/numpy/core/multiarray.so
       0x103498000 -        0x1034a1ff3  datetime.so (97.50.7) <EC351EC8-FBC7-33E9-B5D1-DA9D614D1648> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/datetime.so
       0x1034ab000 -        0x10351dfff +umath.so (???) <A0571F69-8C89-3BB5-A295-14F84588B215> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/numpy-1.11.1-py2.7-macosx-10.12-intel.egg/numpy/core/umath.so
       0x10355a000 -        0x103568ffb  _ctypes.so (97.50.7) <5E1FA7E6-2A2F-304F-9344-3BA03463DA86> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so
       0x103574000 -        0x103577ffb  _struct.so (97.50.7) <EF8EE29B-C0A0-32BF-AA30-ADEBEAD8EEF4> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_struct.so
       0x10357e000 -        0x1035bbdc7  dyld (433.5) <322C06B7-8878-311D-888C-C8FD2CA96FF3> /usr/lib/dyld
       0x10364a000 -        0x103655ffb  cPickle.so (97.50.7) <C1F3E5FC-D920-3896-B393-5B89A265376C> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cPickle.so
       0x10365c000 -        0x10365dfff  cStringIO.so (97.50.7) <FBA2E408-33F8-3506-AD37-1B356A6F787D> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cStringIO.so
       0x103723000 -        0x103723fff  grp.so (97.50.7) <7CB7F994-D049-3D83-A295-D1389785A691> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/grp.so
       0x103768000 -        0x103777ffb  _io.so (97.50.7) <092C0207-64D8-3BAD-BE0F-427C8FC6EE06> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so
       0x103789000 -        0x10378bff3  binascii.so (97.50.7) <86E49B82-5582-347E-92EB-B107F70BBB49> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/binascii.so
       0x103790000 -        0x103791fff  _hashlib.so (97.50.7) <6B04CCCA-D1B8-32F0-BF9A-C7FE22356617> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_hashlib.so
       0x103797000 -        0x103798fff  _random.so (97.50.7) <2837E6D6-86F4-3ED6-AA29-F0D11DC73F85> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_random.so
       0x10379d000 -        0x10379efff  fcntl.so (97.50.7) <E1CEBE57-DB25-30FE-9C7C-56DD717D188E> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/fcntl.so
       0x103823000 -        0x103824fff +lapack_lite.so (???) <04F00A90-98FC-3F84-8688-7435C944FFF1> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/numpy-1.11.1-py2.7-macosx-10.12-intel.egg/numpy/linalg/lapack_lite.so
       0x103828000 -        0x103839fff +_umath_linalg.so (???) <6CC06FF1-15EC-38BF-A9CC-E2A59B5DEDE4> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/numpy-1.11.1-py2.7-macosx-10.12-intel.egg/numpy/linalg/_umath_linalg.so
       0x103887000 -        0x103887fff  future_builtins.so (97.50.7) <BC265C8E-C8A9-3C91-B0AD-F332CA66753E> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/future_builtins.so
       0x10388c000 -        0x103893ff7 +fftpack_lite.so (???) <A1DB21CE-A5C3-3350-A1DF-98193E16F884> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/numpy-1.11.1-py2.7-macosx-10.12-intel.egg/numpy/fft/fftpack_lite.so
       0x1038d7000 -        0x10393dfff +mtrand.so (???) <69C7F0A1-EF0B-3CD1-AF54-AF2C8E54005F> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/numpy-1.11.1-py2.7-macosx-10.12-intel.egg/numpy/random/mtrand.so
       0x103cd6000 -        0x103ffeff7 +_analog_swig.so (???) <7E1A2333-2396-39F6-A128-DAD885B52CBC> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/analog/_analog_swig.so
       0x104093000 -        0x1040e6ff7 +libgnuradio-analog.3.7.10.1.dylib (0) <914A0EA3-0C3C-3BEB-9461-DDA36DF9923D> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-analog.3.7.10.1.dylib
       0x10413b000 -        0x1041c1ff7 +libgnuradio-filter.3.7.10.1.dylib (0) <3735F399-A1DB-3045-A8BB-8CBBE2B88705> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-filter.3.7.10.1.dylib
       0x104220000 -        0x104733fe7 +libgnuradio-fft.3.7.10.1.dylib (0) <DAFB4630-85B2-3699-87F5-2C624CF87C1F> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-fft.3.7.10.1.dylib
       0x1047b2000 -        0x104952fff +libgnuradio-blocks.3.7.10.1.dylib (0) <76613348-E98E-39EE-A323-6AE4887D24A5> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-blocks.3.7.10.1.dylib
       0x104c82000 -        0x104eacff7 +_blocks_swig0.so (???) <B3A91F9F-3A09-39A5-9AD2-ABE0B04D054A> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/blocks/_blocks_swig0.so
       0x105118000 -        0x1053cdff7 +_blocks_swig1.so (???) <9462B297-ABC7-3625-8558-726317058754> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/blocks/_blocks_swig1.so
       0x10572e000 -        0x105a71ff7 +_blocks_swig2.so (???) <186CC130-82A1-351C-9435-E869A9B46387> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/blocks/_blocks_swig2.so
       0x1060e9000 -        0x10645cfff +_blocks_swig3.so (???) <09F7812B-19AB-396C-A075-A0A250D79BCE> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/blocks/_blocks_swig3.so
       0x10675c000 -        0x1069b3ff7 +_blocks_swig4.so (???) <C86886D8-AFCB-391D-8AA3-76C583A0679A> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/blocks/_blocks_swig4.so
       0x106cc4000 -        0x106fb5fff +_blocks_swig5.so (???) <C96620F0-BBEC-3A36-88CB-E66E1C081A2E> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/blocks/_blocks_swig5.so
       0x10739f000 -        0x1077b3fff +_filter_swig.so (???) <D6C3B858-FD87-34E0-9E37-92350061B1D7> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/filter/_filter_swig.so
       0x10798b000 -        0x1079f5ff7 +_fft_swig.so (???) <74209A42-9203-38A1-8969-8196E14B2000> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/fft/_fft_swig.so
       0x107a57000 -        0x107a5bff3  cmath.so (97.50.7) <2830176F-570D-319D-8B69-F9521EF2EA16> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cmath.so
       0x107a62000 -        0x107a69fff  _socket.so (97.50.7) <076AA6AE-10D1-3033-9BF9-EC53ACF9B0E8> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_socket.so
       0x107a74000 -        0x107a7dfff  _ssl.so (97.50.7) <BA546970-1B58-336A-86CC-C58C34F35668> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ssl.so
       0x107b29000 -        0x107bcafff +_osmosdr_swig.so (???) <4E20D96A-6543-321D-A931-C015EDA3E4CA> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/osmosdr/_osmosdr_swig.so
       0x107bf8000 -        0x107cbdfff +libgnuradio-osmosdr.0.1.4.dylib (0) <DC0794E0-AB2F-38F8-9362-F0667C49B1DE> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-osmosdr.0.1.4.dylib
       0x107d04000 -        0x107d06fff +libosmosdr.0.dylib (1) <26A89C44-3254-3CEC-8FF0-B21911A11C20> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libosmosdr.0.dylib
       0x107d0a000 -        0x107d1bff7 +libgnuradio-fcd.3.7.10.1.dylib (0) <BB9B3CD6-7F33-30E5-8A41-F9F664B86AF7> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-fcd.3.7.10.1.dylib
       0x107d26000 -        0x107d32fff +librtlsdr.0.dylib (1.5) <21D32208-744B-35A8-AE62-2F54F56F9BA5> /Applications/GNURadio.app/Contents/MacOS/usr/lib/librtlsdr.0.dylib
       0x107d3a000 -        0x107d7fff7 +libgnuradio-uhd.3.7.10.1.dylib (0) <F7A4BEC5-BB3B-3D6B-BA2A-69710011E6BE> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-uhd.3.7.10.1.dylib
       0x107db7000 -        0x10885bff7 +libuhd.003.dylib (3.10) <5D9DB351-43F6-330C-BAB3-C60C8FD697FC> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libuhd.003.dylib
       0x108be3000 -        0x108be5ff7 +libmirisdr.0.dylib (1) <367D52BF-EFD2-3F2C-857D-E818DC93E216> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libmirisdr.0.dylib
       0x108bea000 -        0x108befff7 +libhackrf.0.dylib (0.5) <D4C9C822-DE41-3B62-9728-26F2900F4CBF> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libhackrf.0.dylib
       0x108bf3000 -        0x108c30fff +libbladeRF.1.dylib (0) <FD33C493-B0C9-3DD6-877B-919A549CA999> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libbladeRF.1.dylib
       0x108c3c000 -        0x108c41fff +libairspy.0.dylib (1.0.9) <993D87BD-6759-30A6-B5B3-7E1291994FDE> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libairspy.0.dylib
       0x108c45000 -        0x108c59fff +libusb-1.0.dylib (2) <381EED8D-EFBA-3A0C-BDBB-D2D40BB4EE45> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libusb-1.0.dylib
       0x108c64000 -        0x108cacfff +libgnuradio-audio.3.7.10.1.dylib (0) <10443329-EF63-365F-A92A-E0DA7C239CC8> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-audio.3.7.10.1.dylib
       0x108cc8000 -        0x108d32ff7 +libboost_unit_test_framework.dylib (0) <C8FF805C-5C34-37C5-8892-D6FB5D0117A3> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_unit_test_framework.dylib
       0x108db3000 -        0x108dd6fff +libboost_serialization.dylib (0) <C09CDBB9-E985-3317-8CF9-4E05BD038930> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_serialization.dylib
       0x108e41000 -        0x108e45ff7 +libboost_timer.dylib (0) <C81D4B99-0C4E-3131-AAB4-B24B9C763FB4> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libboost_timer.dylib
       0x10927d000 -        0x1098befff +_digital_swig.so (???) <9F0342AA-859C-310B-B2A7-2DD7D5C12B60> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/digital/_digital_swig.so
       0x1099da000 -        0x109aaaff7 +libgnuradio-digital.3.7.10.1.dylib (0) <E21003ED-A603-31A7-B29B-81C12A328101> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-digital.3.7.10.1.dylib
       0x109cd5000 -        0x109cd8fff  strop.so (97.50.7) <F5AAE1C3-EFC0-3991-893C-B4CA54894A6C> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/strop.so
       0x109d9e000 -        0x109ddeff7 +_wxgui_swig.so (???) <F3639222-7D90-3024-BE57-F3EF33D63EC4> /Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/_wxgui_swig.so
       0x109dfb000 -        0x109e10fff +libgnuradio-wxgui.3.7.10.1.dylib (0) <A665F991-C346-33C2-A072-7C4B4D5A43A5> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgnuradio-wxgui.3.7.10.1.dylib
       0x10a023000 -        0x10a154fff +_core_.so (???) <342FCC1D-698F-3A4A-A653-9BD6C28ED8FC> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_core_.so
       0x10a215000 -        0x10a5bafff +libgtk-x11-2.0.dylib (2401.31) <09518036-1409-3E93-A3D8-F7A49DAE4CCA> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgtk-x11-2.0.dylib
       0x10a771000 -        0x10a800fff +libgdk-x11-2.0.dylib (2401.31) <98A6DD94-0C03-3C81-816F-94A8B3E5FEE2> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgdk-x11-2.0.dylib
       0x10a84e000 -        0x10a85cfff +libpangocairo-1.0.dylib (3901) <A5B741E5-9CC2-3DDE-92EA-AD9C75B57B93> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libpangocairo-1.0.dylib
       0x10a86e000 -        0x10a889ff7 +libatk-1.0.dylib (22210.1) <A597A7C1-3DE7-35C0-B7DF-FF693AF52257> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libatk-1.0.dylib
       0x10a8a2000 -        0x10a99bfff +libcairo.2.dylib (11403.8) <14FA2E24-A38E-3DBB-B3EB-01129A55B1AE> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libcairo.2.dylib
       0x10aa09000 -        0x10aa22ff7 +libgdk_pixbuf-2.0.dylib (3601.4) <209EA326-6317-3F02-8767-4348E99EE850> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgdk_pixbuf-2.0.dylib
       0x10aa33000 -        0x10ab83ff7 +libgio-2.0.dylib (5102) <1C56E77C-929D-3A92-9401-A8FEEAF765EE> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgio-2.0.dylib
       0x10ac7a000 -        0x10ac88fff +libpangoft2-1.0.dylib (3901) <80FC8C3B-2596-34AB-A372-0B86F536F616> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libpangoft2-1.0.dylib
       0x10ac98000 -        0x10acd7ff7 +libpango-1.0.dylib (3901) <616063A9-0A63-3A58-AA5B-B2406FD44C52> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libpango-1.0.dylib
       0x10acf9000 -        0x10ad35ff7 +libgobject-2.0.dylib (5102) <35B486EB-D61A-306F-B5F6-20AC24526EFC> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgobject-2.0.dylib
       0x10ad5c000 -        0x10ae7aff7 +libglib-2.0.dylib (5102) <9DD6F165-2862-3474-8A20-314683E03005> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libglib-2.0.dylib
       0x10aed1000 -        0x10aedafff +libintl.9.dylib (11.4) <D10EB3B0-DA7E-3888-B5AD-AA06A5DB4A3B> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libintl.9.dylib
       0x10aee2000 -        0x10af1cff7 +libfontconfig.1.dylib (11.2) <3E269D74-9376-39A6-9706-828419A010C8> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libfontconfig.1.dylib
       0x10af36000 -        0x10afccfff +libfreetype.6.dylib (19.6) <4546767B-9E9D-38B3-ABD8-D1D2CF5790B4> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libfreetype.6.dylib
       0x10affd000 -        0x10b108fff +libX11.6.dylib (10) <1BAB7ED3-D9A4-3AAD-9DBA-CCA9C5F54E49> /opt/X11/*/libX11.6.dylib
       0x10b132000 -        0x10b1caff7 +libwx_gtk2u_xrc-3.0.dylib (3) <85274369-ABB5-331D-A0AE-0CA995C23795> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_gtk2u_xrc-3.0.dylib
       0x10b20d000 -        0x10b296fff +libwx_gtk2u_html-3.0.dylib (3) <BBBB26B2-8B24-3040-8FA2-F535E5895D55> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_gtk2u_html-3.0.dylib
       0x10b2e2000 -        0x10b301ff7 +libwx_gtk2u_qa-3.0.dylib (3) <B142906B-5FA8-38F9-AF42-80D2601EF797> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_gtk2u_qa-3.0.dylib
       0x10b315000 -        0x10b40afff +libwx_gtk2u_adv-3.0.dylib (3) <0245ECCD-DE4E-3284-9835-B883D3E79D9B> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_gtk2u_adv-3.0.dylib
       0x10b4c1000 -        0x10b82cfff +libwx_gtk2u_core-3.0.dylib (3) <C2EAC165-61FE-3C4C-A509-8150080B28D9> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_gtk2u_core-3.0.dylib
       0x10ba01000 -        0x10ba0eff7 +libwx_baseu_xml-3.0.dylib (3) <76A08E8A-EC58-3ED4-850E-F135B4DCD86D> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_baseu_xml-3.0.dylib
       0x10ba15000 -        0x10ba43ff7 +libwx_baseu_net-3.0.dylib (3) <0AC5D122-CA00-3F72-82AB-37523ED7F855> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_baseu_net-3.0.dylib
       0x10ba5d000 -        0x10bc1bff7 +libwx_baseu-3.0.dylib (3) <48A1B14C-EEBB-3B91-AF38-89876A6AD8B0> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libwx_baseu-3.0.dylib
       0x10bcbb000 -        0x10bcbcfff +libXinerama.1.dylib (2) <0F9B6B63-91DE-3C56-A80D-1E6FF6422577> /opt/X11/*/libXinerama.1.dylib
       0x10bcc1000 -        0x10bcc8fff +libXrandr.2.dylib (5) <3A827840-3495-37C2-84F0-913EA3F99D52> /opt/X11/*/libXrandr.2.dylib
       0x10bcce000 -        0x10bcd5ff7 +libXcursor.1.dylib (2.2) <7D54773C-F6BF-3ABF-BD44-C7ABA5A8AB6A> /opt/X11/*/libXcursor.1.dylib
       0x10bcdc000 -        0x10bcddfff +libXcomposite.1.dylib (2) <B1F1D126-B5CC-3E9D-ABB1-99998261A621> /opt/X11/*/libXcomposite.1.dylib
       0x10bce2000 -        0x10bce3fff +libXdamage.1.dylib (3) <047F8282-2B2D-344A-A297-229259A0F11A> /opt/X11/*/libXdamage.1.dylib
       0x10bce8000 -        0x10bcebfff +libXfixes.3.dylib (5) <4C581BB8-C505-32A0-8D08-11DCDCF6446B> /opt/X11/*/libXfixes.3.dylib
       0x10bcf1000 -        0x10bd88fff +libpixman-1.0.dylib (35) <44CBF785-B96B-3A4D-8F89-473C21171614> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libpixman-1.0.dylib
       0x10bdb6000 -        0x10bdb7fff +libxcb-shm.0.dylib (1) <6DB5532F-F353-313A-9E9F-BCFBC1AC42C5> /opt/X11/*/libxcb-shm.0.dylib
       0x10bdbd000 -        0x10bdd6ff7 +libxcb.1.dylib (3) <FDEDEE32-91A5-3301-AFB5-50B8D4CCCBBD> /opt/X11/*/libxcb.1.dylib
       0x10bdea000 -        0x10bdf0fff +libxcb-render.0.dylib (1) <0B37BEDF-E5E7-3D58-9CA4-5E77675FDAEE> /opt/X11/*/libxcb-render.0.dylib
       0x10bdfa000 -        0x10be00fff +libXrender.1.dylib (5) <5D636930-CDBD-3098-876E-827CF3314F75> /opt/X11/*/libXrender.1.dylib
       0x10be06000 -        0x10be12fff +libXext.6.dylib (11) <899041F6-4E8D-322E-9A21-03BDB005BD63> /opt/X11/*/libXext.6.dylib
       0x10be1b000 -        0x10be1cfff +libgmodule-2.0.0.dylib (5102) <57298881-EA8E-3928-9945-A2D77126B284> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgmodule-2.0.0.dylib
       0x10be1f000 -        0x10bf07ff7 +libharfbuzz.0.dylib (10401.3) <97AEA663-C0F2-37CC-8AD1-9B4D0A0B454E> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libharfbuzz.0.dylib
       0x10bf59000 -        0x10bf59fff +libgthread-2.0.0.dylib (5102) <9F6466A5-81C1-3969-BFF9-D3EDDB0E52C3> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libgthread-2.0.0.dylib
       0x10bf5c000 -        0x10bf61ff7 +libffi.6.dylib (7.4) <6218104B-5FF3-3E41-9813-B5ABAB6EE845> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libffi.6.dylib
       0x10bf65000 -        0x10bf7effb  libexpat.1.dylib (15) <F48F1B7B-BEB4-32EE-8C5D-0370096F3864> /usr/lib/libexpat.1.dylib
       0x10bf88000 -        0x10bfb9ff7 +libpng16.16.dylib (45) <C37EE8DB-2EFE-37A4-8F62-6182392BF5BC> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libpng16.16.dylib
       0x10bfcb000 -        0x10bfccfff +libXau.6.dylib (7) <45CD2F7C-EDBB-3575-B883-9C397685B211> /opt/X11/*/libXau.6.dylib
       0x10bfd1000 -        0x10bfd4fff +libXdmcp.6.dylib (7) <B8414558-7AF1-357E-9361-79D317C6AB28> /opt/X11/*/libXdmcp.6.dylib
       0x10bfda000 -        0x10bfddfff +libXxf86vm.1.dylib (2) <41E6682D-2FC1-33D7-AA07-4F8D82C2789C> /opt/X11/*/libXxf86vm.1.dylib
       0x10bfe3000 -        0x10bfe8fff +libSM.6.dylib (7.1) <AFE0D1D9-D221-38C2-B39F-B17172171213> /opt/X11/*/libSM.6.dylib
       0x10bfee000 -        0x10c03dff7 +libtiff.3.dylib (12.2) <49D2359E-726B-303B-9DAC-EBE4B7920954> /Applications/GNURadio.app/Contents/MacOS/usr/lib/libtiff.3.dylib
       0x10c051000 -        0x10c061fff +libICE.6.dylib (10) <DC8EF2B4-6ACF-30F7-A2F6-C091D021D317> /opt/X11/*/libICE.6.dylib
       0x10c2be000 -        0x10c392ff7 +_gdi_.so (???) <E56066FD-70A2-3D27-ACB8-F20480EB1252> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_gdi_.so
       0x10c53d000 -        0x10c601ff7 +_windows_.so (???) <BC68A252-15AE-3F4D-AD81-17161170FB7D> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_windows_.so
       0x10c79d000 -        0x10c8a3fff +_controls_.so (???) <BB62F5DE-078E-3415-BC8B-FC69D52E335D> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_controls_.so
       0x10caf6000 -        0x10cbc0fff +_misc_.so (???) <EBA85E55-4F08-3A70-9199-0D209E306964> /Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_misc_.so
       0x10cce1000 -        0x10cce9ff7  com.apple.iokit.IOUSBLib (900.4.1 - 900.4.1) <9AC661EF-50F3-3F15-B22F-BA2F98FDEC19> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Contents/MacOS/IOUSBLib
    0x7fffa980c000 -     0x7fffa980cfff  com.apple.Accelerate (1.11 - Accelerate 1.11) <916E360F-323C-3AE1-AB3D-D1F3B284AEE9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fffa9825000 -     0x7fffa9d3efeb  com.apple.vImage (8.1 - ???) <B58A7937-BEE2-38FE-87F4-5D5F40D31DC9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fffa9d3f000 -     0x7fffa9eb0ff3  libBLAS.dylib (1185.50.4) <4087FFE0-627E-3623-96B4-F0A9A1991E09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fffa9eb1000 -     0x7fffa9ec5ffb  libBNNS.dylib (15) <254698C7-7D36-3FFF-864E-ADEEEE543076> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fffa9ec6000 -     0x7fffaa2bcfef  libLAPACK.dylib (1185.50.4) <C35FFB2F-A0E6-3903-8A3C-113A74BCBCA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fffaa2bd000 -     0x7fffaa2d3fff  libLinearAlgebra.dylib (1185.50.4) <345CAACF-7263-36EF-B69B-793EA8B390AF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fffaa2d4000 -     0x7fffaa2dafff  libQuadrature.dylib (3) <EF56C8E6-DE22-3C69-B543-A8648F335FDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fffaa2db000 -     0x7fffaa2efff7  libSparseBLAS.dylib (1185.50.4) <67BA432E-FB59-3C78-A8BE-ED4274CBC359> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fffaa2f0000 -     0x7fffaa477fe7  libvDSP.dylib (600.60.1) <4155F45B-41CD-3782-AE8F-7AE740FD83C3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fffaa478000 -     0x7fffaa52afff  libvMisc.dylib (600.60.1) <98F27D2D-E5DD-38EF-8747-0C4DE821A23D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fffaa52b000 -     0x7fffaa52bfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <7C5733E7-0568-3E7D-AF61-160F19FED544> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fffaa7ea000 -     0x7fffab5c3ff3  com.apple.AppKit (6.9 - 1504.83.101) <EC7BD195-F9E1-3E43-820A-5FDD0B2B0B67> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fffab5d5000 -     0x7fffab5d5fff  com.apple.ApplicationServices (48 - 48) <4C71CBA8-47E4-38BF-BE3B-F20DF8667D5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fffab5d6000 -     0x7fffab644ff7  com.apple.ApplicationServices.ATS (377 - 422.2) <A31D17BE-F747-39FB-9A84-5F2F8891204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fffab6de000 -     0x7fffab80dff7  libFontParser.dylib (194.12) <73C3946D-EF92-3AC1-89C3-0E75B2A85325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fffab80e000 -     0x7fffab858fff  libFontRegistry.dylib (196.4) <EA96AE47-3369-3DEA-BB82-98348ADBD85B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fffab955000 -     0x7fffab9ffff7  com.apple.ColorSync (4.12.0 - 502.2) <ACA4001E-A0E3-33F6-9CD6-EEC2AA15E322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fffaba00000 -     0x7fffaba51fff  com.apple.HIServices (1.22 - 592.1) <7353E76E-9A3A-3693-87AF-41953585E024> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fffaba52000 -     0x7fffaba61ff3  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2CBE7F61-2056-3F96-99A1-0D527796AFA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fffaba62000 -     0x7fffabaaffff  com.apple.print.framework.PrintCore (12 - 491) <5027FD58-F0EE-33E4-8577-934CA06CD2AF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fffabab0000 -     0x7fffabaebfff  com.apple.QD (3.12 - 313) <B339C41D-8CDF-3342-8414-F9717DCCADD4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fffabaec000 -     0x7fffabaf7fff  com.apple.speech.synthesis.framework (6.6.2 - 6.6.2) <7853EFF4-62B9-394E-B7B8-41A645656820> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fffabaf8000 -     0x7fffabd04fff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <91D2BA22-B168-3A9A-9008-6FFC5A8FDC1E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fffabd05000 -     0x7fffabd05fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <8C0153FD-FEFF-309C-AACD-BF9657A31F8E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fffabe6e000 -     0x7fffac248fff  com.apple.CFNetwork (811.5.4 - 811.5.4) <4DBF8932-6286-3B23-87D9-63615B9958D9> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fffac262000 -     0x7fffac262fff  com.apple.Carbon (154 - 157) <69F403C7-F0CB-34E6-89B0-235CF4978C17> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fffac263000 -     0x7fffac266fff  com.apple.CommonPanels (1.2.6 - 98) <BF04BB22-D54C-309E-9F5C-897D969CAF70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fffac267000 -     0x7fffac570fff  com.apple.HIToolbox (2.1.1 - 857.8) <CAB143FE-AEAF-3EDE-AD7B-C04E1B7C5615> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fffac571000 -     0x7fffac574ff7  com.apple.help (1.3.5 - 49) <B1A930E3-5907-3677-BACD-858EF68B172D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fffac575000 -     0x7fffac57afff  com.apple.ImageCapture (9.0 - 9.0) <341252B4-E082-361A-B756-6A330259C741> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fffac57b000 -     0x7fffac612ff3  com.apple.ink.framework (10.9 - 219) <1BD40B45-FD33-3177-A935-565EE5FC79D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fffac613000 -     0x7fffac62dfff  com.apple.openscripting (1.7 - 172) <31CFBB35-24BD-3E12-9B6B-1FA842FB605B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fffac62e000 -     0x7fffac62fff3  com.apple.print.framework.Print (12 - 267) <E2F82F1F-DC27-3EF0-9F75-B354F701450A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fffac630000 -     0x7fffac632ff7  com.apple.securityhi (9.0 - 55006) <DBD65629-535D-3669-8218-7F074D61638C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fffac633000 -     0x7fffac639ff7  com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <082895DC-3AC7-3DEF-ADCA-5B018C19C9D3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fffac864000 -     0x7fffac8f1fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <78767F88-91D4-31CE-AAC6-1F9407F479BB> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fffac8f2000 -     0x7fffac905fff  com.apple.CoreBluetooth (1.0 - 1) <BCB78777-76F0-3CC1-8443-9E61AEF7EF63> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fffac906000 -     0x7fffacc01fff  com.apple.CoreData (120 - 754.2) <4C9CAB2C-60D4-3694-A0A0-5B04B14BD14E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fffacc02000 -     0x7fffaccaeff7  com.apple.CoreDisplay (1.0 - 1) <AAD5DF0B-0D22-305E-86FF-BB1431130363> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fffaccaf000 -     0x7fffad148ff7  com.apple.CoreFoundation (6.9 - 1349.8) <09ED473E-5DE8-307F-B55C-16F6419236D5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fffad149000 -     0x7fffad7cbfff  com.apple.CoreGraphics (2.0 - 1070.22) <78E7C882-837D-3CC3-B221-767B999873CE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fffad7cc000 -     0x7fffada0fffb  com.apple.CoreImage (12.4.0 - 451.4.9) <BE4303C9-C9D9-361D-AC94-DBE40EB6700E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fffadb74000 -     0x7fffadb74fff  com.apple.CoreServices (775.19 - 775.19) <7255917D-EFBB-3BE2-A8FD-DAD631BC0949> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fffadb75000 -     0x7fffadbc6fff  com.apple.AE (712.5 - 712.5) <61F2AE2C-E04E-3FDF-9E88-201325136C83> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fffadbc7000 -     0x7fffadea2ff7  com.apple.CoreServices.CarbonCore (1159.6 - 1159.6) <08AC074C-965B-3EDF-8E45-0707C8DE9EAD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fffadea3000 -     0x7fffaded6fff  com.apple.DictionaryServices (1.2 - 274) <D23866E2-F7C8-3984-A9D4-96552CCDE573> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fffaded7000 -     0x7fffadedfff3  com.apple.CoreServices.FSEvents (1230.50.1 - 1230.50.1) <2AD1B0E5-7214-37C4-8D11-A27C9CAC0F74> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fffadee0000 -     0x7fffae04cff7  com.apple.LaunchServices (775.19 - 775.19) <94D15A2A-852C-3B4B-A701-43043C8F1527> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fffae04d000 -     0x7fffae0fdffb  com.apple.Metadata (10.7.0 - 1075.40) <DA911E1B-3977-386D-930D-96BD5085CB8E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fffae0fe000 -     0x7fffae15dfff  com.apple.CoreServices.OSServices (775.19 - 775.19) <C709A773-4FA0-33DD-B3E2-FBA41E00F177> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fffae15e000 -     0x7fffae1cefff  com.apple.SearchKit (1.4.0 - 1.4.0) <7A6DDA2B-03F1-3137-BA9E-1CC211973E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fffae1cf000 -     0x7fffae214ff7  com.apple.coreservices.SharedFileList (38 - 38) <DA096678-93AB-3291-BDE2-482F1D544589> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fffae29d000 -     0x7fffae3eaffb  com.apple.CoreText (352.0 - 544.15) <BF0EE575-BB7E-3BF9-9029-232B4ADC24E4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fffae3eb000 -     0x7fffae420ff3  com.apple.CoreVideo (1.8 - 235.3) <AC11D5FB-C77B-34F5-B942-F698E84C229F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fffae421000 -     0x7fffae492ffb  com.apple.framework.CoreWLAN (11.0 - 1200.31) <E47C0568-E37B-3052-9E77-F0F371DCDE7F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fffae590000 -     0x7fffae595fff  com.apple.DiskArbitration (2.7 - 2.7) <8AC72143-D3C4-3AA6-84DF-734E3AFAC49B> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fffae727000 -     0x7fffaeacdff3  com.apple.Foundation (6.9 - 1349.81) <730B7944-BB43-35D5-A546-9F6CCED4B9F3> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fffaeaf9000 -     0x7fffaeb2aff7  com.apple.GSS (4.0 - 2.0) <6FADED0B-0425-3567-A75A-040C5A4638EB> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fffaebea000 -     0x7fffaec8dffb  com.apple.Bluetooth (5.0.4 - 5.0.4f18) <B3FED7E7-45EE-32DD-B59E-7942BCE9426C> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fffaec8e000 -     0x7fffaed24ff7  com.apple.framework.IOKit (2.0.2 - 1324.60.3) <7CE4C98B-107C-3AAA-B49A-F2ACFCBBF526> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fffaed25000 -     0x7fffaed2bffb  com.apple.IOSurface (159.7 - 159.7) <40550017-EF96-3C52-B400-806AFEE4B134> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fffaed7e000 -     0x7fffaeedefef  com.apple.ImageIO.framework (3.3.0 - 1599.10.2) <87AA4D39-0AFC-3A34-98EF-02710E2BF3CA> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fffaeedf000 -     0x7fffaeee3fff  libGIF.dylib (1599.10.2) <6ED05614-1301-3452-943B-118F00F20C8D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fffaeee4000 -     0x7fffaefd4ff7  libJP2.dylib (1599.10.2) <72C00423-55F0-3CAD-B198-EF00950791E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fffaefd5000 -     0x7fffaeff8ffb  libJPEG.dylib (1599.10.2) <78945614-990F-3705-A91C-46F717F7C635> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fffaeff9000 -     0x7fffaf020ff7  libPng.dylib (1599.10.2) <B800C14F-6E41-36B6-8DC1-1AE97A83A964> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fffaf021000 -     0x7fffaf023ff3  libRadiance.dylib (1599.10.2) <037D95B4-82A7-3A59-B3EB-0FF0977CF7A5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fffaf024000 -     0x7fffaf072fff  libTIFF.dylib (1599.10.2) <CA2C7BF9-FDDB-36CF-B063-B075B29F8878> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fffafdd9000 -     0x7fffafdf2ff7  com.apple.Kerberos (3.0 - 1) <B9D242EB-E325-3A21-9812-C77CBBFB0D51> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fffb05d1000 -     0x7fffb062cfff  com.apple.Metal (87.18 - 87.18) <5C2F12FB-45C1-3103-A827-3D225BF8D05A> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fffb0f15000 -     0x7fffb0f1dfff  com.apple.NetFS (6.0 - 4.0) <14A24D00-5673-330A-959D-87F72040DEFF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fffb10fd000 -     0x7fffb114bff3  com.apple.opencl (2.8.6 - 2.8.6) <5FAF6F49-2648-39E6-922B-5630A5D7F7E4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fffb114c000 -     0x7fffb1165ffb  com.apple.CFOpenDirectory (10.12 - 194) <A64E9A01-3F6E-36EA-9C10-88C564A68C9D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fffb1166000 -     0x7fffb1171ff7  com.apple.OpenDirectory (10.12 - 194) <4298FFD0-B1A7-3064-AF5B-708B3FA38671> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fffb1172000 -     0x7fffb1174fff  libCVMSPluginSupport.dylib (14.0.16) <A20EC348-37C9-33B6-9A81-06006F3214A1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fffb1175000 -     0x7fffb1178ff7  libCoreFSCache.dylib (156.3) <687C4CC3-6537-344B-8BE1-5234C8CB2864> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fffb1179000 -     0x7fffb117dfff  libCoreVMClient.dylib (156.3) <E7AEFCBE-B6BF-3C7C-9A4E-E78CB04DB794> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fffb117e000 -     0x7fffb1187ff7  libGFXShared.dylib (14.0.16) <63542E68-EB1A-3ECF-AAFB-E7B8AB313C70> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fffb1188000 -     0x7fffb1193fff  libGL.dylib (14.0.16) <84BEED97-0A93-356D-A922-97EA311EA446> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fffb1194000 -     0x7fffb11d0ff7  libGLImage.dylib (14.0.16) <3518A85C-6905-3511-A6C9-2F82C519D28F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fffb1348000 -     0x7fffb1389ff7  libGLU.dylib (14.0.16) <9860DCF7-56E0-3A8F-A377-52635C9D8B27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fffb1cf1000 -     0x7fffb1cfffff  com.apple.opengl (14.0.16 - 14.0.16) <27E7D76E-A26B-39F8-8CF2-AB57920776A3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fffb2851000 -     0x7fffb2a51fff  com.apple.QuartzCore (1.11 - 453.39.3) <AB46D60D-17A8-3122-800E-2A9DA604FCBA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fffb2fb8000 -     0x7fffb32baff7  com.apple.security (7.0 - 57740.60.18) <021AACF6-D15F-37E0-840B-88853684BA00> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fffb32bb000 -     0x7fffb3330fff  com.apple.securityfoundation (6.0 - 55132.50.7) <4433C0CC-FE90-3DD3-BAC1-CC31D515B510> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fffb335b000 -     0x7fffb335eff3  com.apple.xpc.ServiceManagement (1.0 - 1) <9F285B19-B53B-3502-85A2-72C26DB40EA7> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fffb36e5000 -     0x7fffb3754ff7  com.apple.SystemConfiguration (1.14 - 1.14) <2412CDE0-C317-31EA-8F53-7A58BBFCC720> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fffb5fd3000 -     0x7fffb5ff5ffb  com.apple.framework.Apple80211 (12.0 - 1200.47) <B692048E-1B61-3DAF-9CBA-4D314E7562DC> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fffb5ff6000 -     0x7fffb6005feb  com.apple.AppleFSCompression (88.50.3 - 1.0) <478E8BFF-8BA2-375E-BE02-BA27F115C15A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fffb60f9000 -     0x7fffb618497f  com.apple.AppleJPEG (1.0 - 1) <B9E9570D-04A4-34E4-B756-D200043B25B8> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fffb65b7000 -     0x7fffb6635ff7  com.apple.backup.framework (1.8.5 - 1.8.5) <CC679891-E8F5-3166-8EB6-AEA06954A52D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fffb72c0000 -     0x7fffb72e7ff3  com.apple.ChunkingLibrary (173 - 173) <FC2165F9-FC93-39C0-8323-C2F43A5E00A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fffb7c0c000 -     0x7fffb7c15ffb  com.apple.CommonAuth (4.0 - 2.0) <216950CB-269F-3476-BA17-D6363AC49FBC> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fffb835d000 -     0x7fffb836dfff  com.apple.CoreEmoji (1.0 - 40.3.3) <E9A28301-2D79-3A97-A046-028258A6ABE5> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fffb8969000 -     0x7fffb89f8ff7  com.apple.CoreSymbolication (62046) <7839CD8E-011D-3567-88DE-3D472C661136> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fffb89f9000 -     0x7fffb8b38fe7  com.apple.coreui (2.1 - 431.3) <2E8FEC10-FC5B-3782-92DA-A85C24B7BF7C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fffb8b39000 -     0x7fffb8c09ff3  com.apple.CoreUtils (5.1 - 510.31) <E68BB8ED-8874-36EC-A7C5-1017C0E727CB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fffb8c59000 -     0x7fffb8cbeff3  com.apple.framework.CoreWiFi (12.0 - 1200.31) <DF0972EF-F817-3FD3-8C00-2D57B8738D8C> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fffb8cbf000 -     0x7fffb8ccdff7  com.apple.CrashReporterSupport (10.12 - 827) <14037A71-ECFE-394A-8D6E-2CECE98F02EE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fffb8d3f000 -     0x7fffb8d49ffb  com.apple.framework.DFRFoundation (1.0 - 104.25) <7CFF896C-EF22-3941-BB3D-F3615CE4C908> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fffb8d4a000 -     0x7fffb8d4eff3  com.apple.DSExternalDisplay (3.1 - 380) <A195C0CE-8E4E-384B-9556-8270E306FE1D> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fffb8d84000 -     0x7fffb8df9ffb  com.apple.datadetectorscore (7.0 - 539.1) <9C312AAC-8AEE-3C72-BDE5-7FBF62452525> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fffb8e35000 -     0x7fffb8e74fff  com.apple.DebugSymbols (137 - 137) <58A70B66-2628-3CFE-B103-2200D95FC5F7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fffb8e75000 -     0x7fffb8f86fff  com.apple.desktopservices (1.11.5 - 1.11.5) <46A9D4F3-1EF8-373C-98A4-AD48D285E484> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fffb926e000 -     0x7fffb969fff7  com.apple.vision.FaceCore (3.3.2 - 3.3.2) <9391D5A3-738C-3136-9D07-518CB43DBADA> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fffba9f6000 -     0x7fffba9f6fff  libmetal_timestamp.dylib (600.0.49.9) <E5EED927-1671-3390-BCBB-D76201D63C73> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fffbacc7000 -     0x7fffbace3fff  com.apple.GenerationalStorage (2.0 - 267.1) <3DE1C580-D089-362D-8582-8DE68A3C5F13> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fffbb3f4000 -     0x7fffbb46aff3  com.apple.Heimdal (4.0 - 2.0) <8F9C9041-66D5-36C9-8A4C-1658035C311D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fffbba85000 -     0x7fffbba8cffb  com.apple.IOAccelerator (311.13 - 311.13) <40C04C41-A76A-3687-8D64-F76E8C46AA81> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fffbba8e000 -     0x7fffbbaa2ff7  com.apple.IOPresentment (1.0 - 29.10) <A3F7C1F6-CE50-3804-AAAF-7B75EBC46BE4> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fffbbaa3000 -     0x7fffbbac5fff  com.apple.IconServices (74.4 - 74.4) <218DDD05-35F4-3833-B98D-471ED0EBC031> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fffbbbac000 -     0x7fffbbd63fff  com.apple.LanguageModeling (1.0 - 123.2.5) <A8CA965F-0399-310D-91C3-B93DDDE9A442> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fffbc684000 -     0x7fffbc6fdff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <C323FC94-FFA5-3EE6-B2AC-7E61EA92F304> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fffbc877000 -     0x7fffbc89fff7  com.apple.MultitouchSupport.framework (368.16 - 368.16) <512ADEC6-D694-3D73-A48A-6BE79CD39539> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fffbc951000 -     0x7fffbc95cfff  com.apple.NetAuth (6.2 - 6.2) <97F487D6-8089-31A8-B68C-6C1EAC6ED1B5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fffbd234000 -     0x7fffbd275ff3  com.apple.PerformanceAnalysis (1.148.3 - 148.3) <6A21AB41-3AAA-32F3-9D46-2555A143A8B9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fffbd95d000 -     0x7fffbd977fff  com.apple.ProtocolBuffer (1 - 249.1) <A1F1B0F3-078F-378F-A9A9-0DEEA70E816A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fffbd990000 -     0x7fffbd9b3ff3  com.apple.RemoteViewServices (2.0 - 124) <6B967FDA-6591-302C-BA0A-76C4856E584E> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fffbe70c000 -     0x7fffbe799fff  com.apple.Sharing (696.2.67 - 696.2.67) <F681EE28-153F-3216-97A6-6F5E4148AB2E> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fffbe7ba000 -     0x7fffbea20fef  com.apple.SkyLight (1.600.0 - 170.3) <83AB220F-48C0-3063-8ED3-ACDB69243B4D> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fffbebff000 -     0x7fffbec0bff7  com.apple.SpeechRecognitionCore (3.3.2 - 3.3.2) <684BD1EA-8268-331C-A5A9-080EB375C658> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fffbf2f7000 -     0x7fffbf36bfdf  com.apple.Symbolication (62048.1) <1A30ED19-7532-3F46-9DD3-9879A973D0CF> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fffbf7aa000 -     0x7fffbf7b0ff7  com.apple.TCC (1.0 - 1) <911B534B-4AC7-34E4-935E-E42ECD008CBC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fffbf83c000 -     0x7fffbf902ff7  com.apple.TextureIO (2.8 - 2.8) <3D61E533-4156-3B21-B7ED-CB823E680DFC> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fffbf976000 -     0x7fffbf977fff  com.apple.TrustEvaluationAgent (2.0 - 28.50.1) <EBE65DD5-1732-3747-8C6C-7BECEBF089A4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fffbf978000 -     0x7fffbfb08ff3  com.apple.UIFoundation (1.0 - 490.7) <2A3063FE-1790-3510-8A0E-AEC581D42B7E> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fffc0bb9000 -     0x7fffc0bbbffb  com.apple.loginsupport (1.0 - 1) <F3140B97-12C3-35A7-9D3D-43DA2D13C113> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fffc0c10000 -     0x7fffc0c2bff7  libCRFSuite.dylib (34) <F78B7F5F-0B4F-35C6-AA2F-84EE9CB22137> /usr/lib/libCRFSuite.dylib
    0x7fffc0c2c000 -     0x7fffc0c37fff  libChineseTokenizer.dylib (21) <0886E908-A825-36AF-B94B-2361FD8BC2A1> /usr/lib/libChineseTokenizer.dylib
    0x7fffc0cc9000 -     0x7fffc0ccaff3  libDiagnosticMessagesClient.dylib (102) <84A04D24-0E60-3810-A8C0-90A65E2DF61A> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fffc0ccb000 -     0x7fffc0edefff  libFosl_dynamic.dylib (16.39) <E22A4243-D148-3C74-BA15-2D906A3D1F9E> /usr/lib/libFosl_dynamic.dylib
    0x7fffc0f02000 -     0x7fffc0f02fff  libOpenScriptingUtil.dylib (172) <90743888-C1E8-34E3-924E-1A754B2B63B9> /usr/lib/libOpenScriptingUtil.dylib
    0x7fffc0f03000 -     0x7fffc0f07ffb  libScreenReader.dylib (477.40.6) <CBE6420C-EF60-3ACD-A0B6-7CBE936BA3B8> /usr/lib/libScreenReader.dylib
    0x7fffc0f08000 -     0x7fffc0f09ffb  libSystem.B.dylib (1238.60.2) <FC9E9F13-3B18-305C-BE0A-97C7843652B0> /usr/lib/libSystem.B.dylib
    0x7fffc0f75000 -     0x7fffc0fa0ff3  libarchive.2.dylib (41.50.2) <B4F507BC-B24E-3BE7-B658-94D798E2CD81> /usr/lib/libarchive.2.dylib
    0x7fffc0fa1000 -     0x7fffc101dfc7  libate.dylib (1.12.13) <D0767875-D02E-3377-84D8-5F174C27BEA9> /usr/lib/libate.dylib
    0x7fffc1021000 -     0x7fffc1021ff3  libauto.dylib (187) <34388D0B-C539-3C1B-9408-2BC152162E43> /usr/lib/libauto.dylib
    0x7fffc1022000 -     0x7fffc1032ff3  libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib
    0x7fffc1033000 -     0x7fffc1041ff7  libbz2.1.0.dylib (38) <ADFA329A-DCE7-356D-8F09-A3168DFC6610> /usr/lib/libbz2.1.0.dylib
    0x7fffc1042000 -     0x7fffc1098ff7  libc++.1.dylib (307.5) <0B43BB5D-E6EB-3464-8DE9-B41AC8ED9D1C> /usr/lib/libc++.1.dylib
    0x7fffc1099000 -     0x7fffc10c3fff  libc++abi.dylib (307.3) <30199352-88BF-30BD-8CFF-2A4FBE247523> /usr/lib/libc++abi.dylib
    0x7fffc10c4000 -     0x7fffc10d4ffb  libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib
    0x7fffc10d5000 -     0x7fffc10ebfcf  libcompression.dylib (39) <F2726F95-F54E-3B21-BCB5-F7151DEFDC2F> /usr/lib/libcompression.dylib
    0x7fffc10ec000 -     0x7fffc10ecff7  libcoretls.dylib (121.50.4) <64B1001E-10F6-3542-A3B2-C4B49F51817F> /usr/lib/libcoretls.dylib
    0x7fffc10ed000 -     0x7fffc10eeff3  libcoretls_cfhelpers.dylib (121.50.4) <1A10303E-5EB0-3C7C-9165-021FCDFD934D> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fffc11a8000 -     0x7fffc128dff7  libcrypto.0.9.8.dylib (64.50.6) <D34E16A7-990A-37A9-933A-DFAA46554EAA> /usr/lib/libcrypto.0.9.8.dylib
    0x7fffc142b000 -     0x7fffc147eff7  libcups.2.dylib (450) <9950BFCB-7882-33C9-9ECF-CE66773C5657> /usr/lib/libcups.2.dylib
    0x7fffc14f9000 -     0x7fffc14f9fff  libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib
    0x7fffc1507000 -     0x7fffc1508fff  libffi.dylib (18.1) <49D03682-E111-351C-8266-4519B3B82BE9> /usr/lib/libffi.dylib
    0x7fffc1509000 -     0x7fffc150eff7  libheimdal-asn1.dylib (498.50.8) <A40E3196-235E-34CE-AD9A-8D1AFC5DE004> /usr/lib/libheimdal-asn1.dylib
    0x7fffc150f000 -     0x7fffc1601ff7  libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib
    0x7fffc1602000 -     0x7fffc1827ffb  libicucore.A.dylib (57165.0.1) <2931B842-2946-3576-AD1D-1CDA22FA1388> /usr/lib/libicucore.A.dylib
    0x7fffc182d000 -     0x7fffc182efff  liblangid.dylib (126) <2085E7A7-9A34-3735-87F4-F174EF8EABF0> /usr/lib/liblangid.dylib
    0x7fffc182f000 -     0x7fffc1848ffb  liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib
    0x7fffc1849000 -     0x7fffc185fff7  libmarisa.dylib (5) <9030D214-5D0F-30CB-AC03-902C63909362> /usr/lib/libmarisa.dylib
    0x7fffc1860000 -     0x7fffc1b08ff7  libmecabra.dylib (744.8) <D429FCC9-42A4-38B3-8784-44024BC859EF> /usr/lib/libmecabra.dylib
    0x7fffc1b3b000 -     0x7fffc1bb5ff3  libnetwork.dylib (856.60.1) <191E99F5-4723-3180-8013-02AF2F9AE4B8> /usr/lib/libnetwork.dylib
    0x7fffc1bb6000 -     0x7fffc1f88047  libobjc.A.dylib (709) <DC77AA6E-A4E4-326D-8D7F-82D63AA88F99> /usr/lib/libobjc.A.dylib
    0x7fffc1f8b000 -     0x7fffc1f8ffff  libpam.2.dylib (21.30.1) <71EB0D88-DE84-3C8D-A2C5-58AA282BC5BC> /usr/lib/libpam.2.dylib
    0x7fffc1f90000 -     0x7fffc1fc1fff  libpcap.A.dylib (67.60.1) <F6BC6ED6-AEE4-3520-B248-0C342636E2B0> /usr/lib/libpcap.A.dylib
    0x7fffc1fde000 -     0x7fffc1ffaffb  libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib
    0x7fffc204a000 -     0x7fffc2197ff7  libsqlite3.dylib (254.7) <07CD6DE3-394D-3C6A-A4B4-4CAB1054A041> /usr/lib/libsqlite3.dylib
    0x7fffc21ba000 -     0x7fffc21f2ff3  libssl.0.9.8.dylib (64.50.6) <9A9C9D9A-7948-3412-ABE4-01FCC4A72CD2> /usr/lib/libssl.0.9.8.dylib
    0x7fffc228c000 -     0x7fffc2299fff  libxar.1.dylib (357) <69547C64-E811-326F-BBED-490C6361BDCB> /usr/lib/libxar.1.dylib
    0x7fffc229a000 -     0x7fffc2389ffb  libxml2.2.dylib (30.16) <D2A6861B-D9FA-3BFC-B664-830C3FCE6065> /usr/lib/libxml2.2.dylib
    0x7fffc238a000 -     0x7fffc23b3fff  libxslt.1.dylib (15.9) <00735AD5-B62D-3E83-86AC-5533E4E2B102> /usr/lib/libxslt.1.dylib
    0x7fffc23b4000 -     0x7fffc23c5ff3  libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib
    0x7fffc23d4000 -     0x7fffc23d8ff7  libcache.dylib (79) <093A4DAB-8385-3D47-A350-E20CB7CCF7BF> /usr/lib/system/libcache.dylib
    0x7fffc23d9000 -     0x7fffc23e3fff  libcommonCrypto.dylib (60092.50.5) <8A64D1B0-C70E-385C-92F0-E669079FDA90> /usr/lib/system/libcommonCrypto.dylib
    0x7fffc23e4000 -     0x7fffc23ebfff  libcompiler_rt.dylib (62) <55D47421-772A-32AB-B529-1A46C2F43B4D> /usr/lib/system/libcompiler_rt.dylib
    0x7fffc23ec000 -     0x7fffc23f4fff  libcopyfile.dylib (138) <819BEA3C-DF11-3E3D-A1A1-5A51C5BF1961> /usr/lib/system/libcopyfile.dylib
    0x7fffc23f5000 -     0x7fffc2478fdf  libcorecrypto.dylib (442.50.19) <65D7165E-2E71-335D-A2D6-33F78E2DF0C1> /usr/lib/system/libcorecrypto.dylib
    0x7fffc2479000 -     0x7fffc24aafff  libdispatch.dylib (703.50.37) <6582BAD6-ED27-3B30-B620-90B1C5A4AE3C> /usr/lib/system/libdispatch.dylib
    0x7fffc24ab000 -     0x7fffc24b0ffb  libdyld.dylib (433.5) <EC3D88D2-3D40-3274-8E26-362C2D7352C8> /usr/lib/system/libdyld.dylib
    0x7fffc24b1000 -     0x7fffc24b1ffb  libkeymgr.dylib (28) <7AA011A9-DC21-3488-BF73-3B5B14D1FDD6> /usr/lib/system/libkeymgr.dylib
    0x7fffc24b2000 -     0x7fffc24beffb  libkxld.dylib (3789.60.24) <5DFCDC05-6CBC-35A6-8B92-DF6803492E12> /usr/lib/system/libkxld.dylib
    0x7fffc24bf000 -     0x7fffc24bffff  liblaunch.dylib (972.60.2) <D3306CFF-58AA-3C90-B06C-B70E80E60C5B> /usr/lib/system/liblaunch.dylib
    0x7fffc24c0000 -     0x7fffc24c5ff3  libmacho.dylib (898) <17D5D855-F6C3-3B04-B680-E9BF02EF8AED> /usr/lib/system/libmacho.dylib
    0x7fffc24c6000 -     0x7fffc24c8ff3  libquarantine.dylib (85.50.1) <12448CC2-378E-35F3-BE33-9DC395A5B970> /usr/lib/system/libquarantine.dylib
    0x7fffc24c9000 -     0x7fffc24caffb  libremovefile.dylib (45) <38D4CB9C-10CD-30D3-8B7B-A515EC75FE85> /usr/lib/system/libremovefile.dylib
    0x7fffc24cb000 -     0x7fffc24e3ff7  libsystem_asl.dylib (349.50.5) <096E4228-3B7C-30A6-8B13-EC909A64499A> /usr/lib/system/libsystem_asl.dylib
    0x7fffc24e4000 -     0x7fffc24e4ff7  libsystem_blocks.dylib (67) <10DC5404-73AB-35B3-A277-A8AFECB476EB> /usr/lib/system/libsystem_blocks.dylib
    0x7fffc24e5000 -     0x7fffc2572fef  libsystem_c.dylib (1158.50.2) <E5AE5244-7D0C-36AC-8BB6-C7AE7EA52A4B> /usr/lib/system/libsystem_c.dylib
    0x7fffc2573000 -     0x7fffc2576ffb  libsystem_configuration.dylib (888.60.2) <BECC01A2-CA8D-31E6-BCDF-D452965FA976> /usr/lib/system/libsystem_configuration.dylib
    0x7fffc2577000 -     0x7fffc257afff  libsystem_coreservices.dylib (41.4) <7D26DE79-B424-3450-85E1-F7FAB32714AB> /usr/lib/system/libsystem_coreservices.dylib
    0x7fffc257b000 -     0x7fffc2593fff  libsystem_coretls.dylib (121.50.4) <EC6FCF07-DCFB-3A03-9CC9-6DD3709974C6> /usr/lib/system/libsystem_coretls.dylib
    0x7fffc2594000 -     0x7fffc259afff  libsystem_dnssd.dylib (765.50.9) <CC960215-0B1B-3822-A13A-3DDE96FA796F> /usr/lib/system/libsystem_dnssd.dylib
    0x7fffc259b000 -     0x7fffc25c4ff7  libsystem_info.dylib (503.50.4) <611DB84C-BF70-3F92-8702-B9F28A900920> /usr/lib/system/libsystem_info.dylib
    0x7fffc25c5000 -     0x7fffc25e7ff7  libsystem_kernel.dylib (3789.60.24) <6E9E485F-91F6-36B7-A125-AE91DC978BCC> /usr/lib/system/libsystem_kernel.dylib
    0x7fffc25e8000 -     0x7fffc262ffe7  libsystem_m.dylib (3121.6) <86D499B5-BBDC-3D3B-8A4E-97AE8E6672A4> /usr/lib/system/libsystem_m.dylib
    0x7fffc2630000 -     0x7fffc264eff7  libsystem_malloc.dylib (116.50.8) <A3D15F17-99A6-3367-8C7E-4280E8619C95> /usr/lib/system/libsystem_malloc.dylib
    0x7fffc264f000 -     0x7fffc26a8ffb  libsystem_network.dylib (856.60.1) <369D0221-56CA-3C3E-9EDE-94B41CAE77B7> /usr/lib/system/libsystem_network.dylib
    0x7fffc26a9000 -     0x7fffc26b2ff3  libsystem_networkextension.dylib (563.60.2) <B021F2B3-8A75-3633-ABB0-FC012B8E9B0C> /usr/lib/system/libsystem_networkextension.dylib
    0x7fffc26b3000 -     0x7fffc26bcff3  libsystem_notify.dylib (165.20.1) <B8160190-A069-3B3A-BDF6-2AA408221FAE> /usr/lib/system/libsystem_notify.dylib
    0x7fffc26bd000 -     0x7fffc26c5fe7  libsystem_platform.dylib (126.50.8) <897462FD-B318-321B-A554-E61982630F7E> /usr/lib/system/libsystem_platform.dylib
    0x7fffc26c6000 -     0x7fffc26d0ff7  libsystem_pthread.dylib (218.60.3) <B8FB5E20-3295-39E2-B5EB-B464D1D4B104> /usr/lib/system/libsystem_pthread.dylib
    0x7fffc26d1000 -     0x7fffc26d4ff7  libsystem_sandbox.dylib (592.60.1) <DC780631-BD23-36B1-9376-668619E18D25> /usr/lib/system/libsystem_sandbox.dylib
    0x7fffc26d5000 -     0x7fffc26d6ff3  libsystem_secinit.dylib (24.50.4) <F78B847B-3565-3E4B-98A6-F7AD40392E2D> /usr/lib/system/libsystem_secinit.dylib
    0x7fffc26d7000 -     0x7fffc26deffb  libsystem_symptoms.dylib (532.50.47) <3390E07C-C1CE-348F-ADBD-2C5440B45EAA> /usr/lib/system/libsystem_symptoms.dylib
    0x7fffc26df000 -     0x7fffc26f2ff7  libsystem_trace.dylib (518.60.2) <6B145B10-5874-3E89-90CD-D370DB475BA1> /usr/lib/system/libsystem_trace.dylib
    0x7fffc26f3000 -     0x7fffc26f8ffb  libunwind.dylib (35.3) <3D50D8A8-C460-334D-A519-2DA841102C6B> /usr/lib/system/libunwind.dylib
    0x7fffc26f9000 -     0x7fffc2722ff7  libxpc.dylib (972.60.2) <1C9AF716-69DF-359F-85E9-7DFDE362F9A2> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 270030
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=359.5M resident=0K(0%) swapped_out_or_unallocated=359.5M(100%)
Writable regions: Total=123.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=123.7M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Dispatch continuations            16.0M        2 
Kernel Alloc Once                    8K        2 
MALLOC                            48.0M       35 
MALLOC guard page                   32K        7 
STACK GUARD                       56.1M       15 
Stack                             19.6M       15 
VM_ALLOCATE                       39.5M       45 
__DATA                            25.5M      373 
__IMAGE                            528K        2 
__LINKEDIT                       142.8M      138 
__TEXT                           216.6M      339 
__UNICODE                          556K        2 
shared memory                       12K        4 
===========                     =======  ======= 
TOTAL                            565.2M      966 

Model: MacBookPro11,5, BootROM MBP114.0172.B16, 4 processors, Intel Core i7, 2,8 GHz, 16 GB, SMC 2.30f2
Graphics: AMD Radeon R9 M370X, AMD Radeon R9 M370X, PCIe, 2048 MB
Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x152), Broadcom BCM43xx 1.0 (7.21.171.126.1a2)
Bluetooth: Version 5.0.4f18, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM0512G, 500,28 GB
USB Device: USB 3.0 Bus
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Bluetooth USB Host Controller
USB Device: HackRF One
Thunderbolt Bus: MacBook Pro, Apple Inc., 27.1

@dholl
Copy link
Contributor

dholl commented Jun 2, 2017

Eeck, this looks very similar to #22 . @cfriedt , Any luck with your crash diagnostics? Do you think your troubles and @gilbertoverg's are related?

(I develop my own hardware, and don't have other vendors' hardware to poke at the moment... Do I need any special hardware to try reproducing this crash on my own? What's a minimal test I could try?)

@gilbertoverg
Copy link
Author

I'm using an hackrf to test osmocom_siggen and osmocom_fft, I can also test osmocom_fft with an airspy. I'm getting the crash 1 second after running the script

@gilbertoverg
Copy link
Author

This is interesting: if I remove the two check marks from the xquartz security settings, osmocom_siggen crashes far more often than having only the "authenticate connections" enabled

@gilbertoverg
Copy link
Author

This is more interesting: I'm running wireshark listening the loopback interface, when osmocom_siggen starts correctly this is what I'm getting:
schermata 2017-06-03 alle 19 41 28
or:
schermata 2017-06-03 alle 19 51 48
When it crashes:
schermata 2017-06-03 alle 19 42 48
or:
schermata 2017-06-03 alle 19 43 40
or:
schermata 2017-06-03 alle 19 42 16

@gilbertoverg
Copy link
Author

gilbertoverg commented Jun 3, 2017

I've temporary disabled the loopback interface with sudo ifconfig lo0 down, disabled the wifi and osmocom_siggen works every time with this trick: changing the position of the osmocom signal generator window before closing it

@gilbertoverg
Copy link
Author

gilbertoverg commented Jun 3, 2017

@dholl you can reproduce this crash without any special hardware, simply try to run osmocom_siggen with no arguments, if it works it prints:

Mac OS; Clang version 8.1.0 (clang-802.0.42); Boost_106300; UHD_003.010.001.local-release_003_010_001_001-0-gc705922a

gr-osmosdr 0.1.4 (0.1.4) gnuradio 3.7.10.1
built-in sink types: uhd hackrf bladerf 

FATAL: No supported devices found to pick from.

Trying to fill up 1 missing channel(s) with null sink(s).
This is being done to prevent the application from crashing
due to gnuradio bug #528.

Sink has no sample rates (wrong device arguments?).

if it crashes:

Mac OS; Clang version 8.1.0 (clang-802.0.42); Boost_106300; UHD_003.010.001.local-release_003_010_001_001-0-gc705922a

gr-osmosdr 0.1.4 (0.1.4) gnuradio 3.7.10.1
built-in sink types: uhd hackrf bladerf 
Segmentation fault: 11

@cfriedt
Copy link
Collaborator

cfriedt commented Jun 4, 2017

I've seen this too - it's crashing somewhere either in UHD or boost when it's searching for network interfaces, if i remember correctly. Technically, I believe this duplicates either #22 or #26 .

@gilbertoverg
Copy link
Author

@cfriedt I'm still not able to run osmocom_fft, this is what I'm getting:

Mac OS; Clang version 8.1.0 (clang-802.0.42); Boost_106300; UHD_003.010.001.local-release_003_010_001_001-0-gc705922a

gr-osmosdr 0.1.4 (0.1.4) gnuradio 3.7.10.1
built-in source types: file osmosdr fcd rtl rtl_tcp uhd miri hackrf bladerf rfspace airspy 
Using HackRF One with firmware 2017.02.1 
Traceback (most recent call last):
  File "/Applications/GNURadio.app/Contents/MacOS/usr/bin/osmocom_fft", line 841, in <module>
    main ()
  File "/Applications/GNURadio.app/Contents/MacOS/usr/bin/osmocom_fft", line 837, in main
    app = stdgui2.stdapp(app_top_block, "osmocom Spectrum Browser", nstatus=1)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 46, in __init__
    wx.App.__init__ (self, redirect=False)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_core.py", line 8628, in __init__
    self._BootstrapApp()
  File "/Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_core.py", line 8196, in _BootstrapApp
    return _core_.PyApp__BootstrapApp(*args, **kwargs)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 49, in OnInit
    frame = stdframe (self.top_block_maker, self.title, self._nstatus)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 76, in __init__
    self.panel = stdpanel (self, self, top_block_maker)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/stdgui2.py", line 98, in __init__
    self.top_block = top_block_maker (frame, self, vbox, sys.argv)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/bin/osmocom_fft", line 246, in __init__
    fft_rate=options.fft_rate)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/fftsink_nongl.py", line 198, in __init__
    self.win = fft_window(self, parent, size=size)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/fftsink_nongl.py", line 331, in __init__
    self.control_panel = control_panel(self)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/fftsink_nongl.py", line 256, in __init__
    wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER)
  File "/Applications/GNURadio.app/Contents/MacOS/usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/_windows.py", line 68, in __init__
    _windows_.Panel_swiginit(self,_windows_.new_Panel(*args, **kwargs))
wx._core.PyAssertionError: C++ assertion "m_window" failed at ./src/gtk/dcclient.cpp(2043) in DoGetSize(): GetSize() doesn't work without window

@cfriedt
Copy link
Collaborator

cfriedt commented Jun 4, 2017

@gilbertoverg pull requests are welcome.

@gilbertoverg
Copy link
Author

@cfriedt after a long day I found a fix for osmocom_fft (I'm not a python programmer):
In /GNURadio.app/Contents/MacOS/usr/share/gnuradio/python/site-packages/gnuradio/wxgui/plot.py comment out line 497

self.OnSize(None) # sets the initial size based on client size

@cfriedt
Copy link
Collaborator

cfriedt commented Jun 5, 2017

Nice! I feel your pain - I'm also not too happy with Python, but it seems to be what all the hip kids are using these days ;-)

@cfriedt
Copy link
Collaborator

cfriedt commented Jul 15, 2017

Closing due to inactivity, and because the stack trace referenced was fixed in PR #48

@cfriedt cfriedt closed this as completed Jul 15, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants