SCI Seg3D Mailing List

Text archives Help


[Seg3D] Re: Compile errors and ITK crashes with Seg3D 2.1.4 and 2.1.5


Chronological Thread 
  • From: Ayla Khan <ayla@sci.utah.edu>
  • To: seg3d@sci.utah.edu
  • Subject: [Seg3D] Re: Compile errors and ITK crashes with Seg3D 2.1.4 and 2.1.5
  • Date: Tue, 19 Jun 2012 17:01:50 -0600

Hi Peter,

We don't support changing the ITK version packaged with Seg3D or the GDCM settings - these are tightly integrated into the Seg3D build. We have also customized the ITK and GDCM CMake build to better support the platforms we build on. We will be upgrading to ITK 4 in the near future, but in the meanwhile, using the ITK filters packaged with Seg3D is strongly recommended.

For anyone interested in extending Seg3D with their own filters, I've started a wiki page with an example of how to wrap an ITK filter not currently included in Seg3D as a plugin:


The contents are incomplete (I will fill them in over the next few weeks), but there is a link to sample code and information on how code in the Plugins directory should be laid out.

Ayla

On May 30, 2012, at 2:35 AM, Peter Salz wrote:

Hello,

I tried to implement the DiscreteGaussianFilter as described in the tutorials in order to understand how to modify Seg3D.

When the program crashed, however, I noticed that any ITK-based filter (even the built-in ones) crashes on use. This happened in Seg3D 2.1.4 (Code from the SVN) and 2.1.5 (also SVN Code). The 2.1.4 code that I downloaded from the SCI website didn't compile. This surprised me because I managed to compile and use Seg3D before.

Please find all details below - and if you know any help or encountered this before, please let me know. Note that all these errors occurred with a clean SVN checkout or source code download.

I use Mac OS X 10.7.4 with Qt 4.8.0 (although going back to 4.7.4 didn't change a thing). I have ITK 4.1.0 installed, but couldn't figure out how to let Seg3D use this instead of the fairly old one that comes along it.
I also have GDCM 2.2 installed and changed the parameter USE_SYSTEM_GDCM (or similar) to both settings without changing the result.

My guess is that the ITK 3.16.0 that comes with the source code does not work with this setup. So I wonder whether there is a way to let Seg3D use my own ITK installation (the ccmake parameters didn't provide the right switch for that).



When compiling Seg3D 2.1.4 from the source I downloaded from the SCI website (not SVN), I get the following error:

In file included from /Users/peter/Documents/Forschung/Seg3D2-2.1.4-code/src/Externals/itk/Code/Common/itkKLMSegmentationBorder.cxx:17:
/Users/peter/Documents/Forschung/Seg3D2-2.1.4-code/src/Externals/itk/Code/Common/itkKLMSegmentationBorder.h:84:39: error:
     member reference base type 'const KLMDynamicBorderArray<TBorder> *' is not
     a structure or union
   if( m_Pointer->GetLambda() == rhs.m_Pointer->GetLambda() )
                                 ~~~ ^
/Users/peter/Documents/Forschung/Seg3D2-2.1.4-code/src/Externals/itk/Code/Common/itkKLMSegmentationBorder.h:88:34: error:
     member reference base type 'const KLMDynamicBorderArray<TBorder> *' is not
     a structure or union
       return ( m_Pointer > rhs.m_Pointer );
                            ~~~ ^
/Users/peter/Documents/Forschung/Seg3D2-2.1.4-code/src/Externals/itk/Code/Common/itkKLMSegmentationBorder.h:103:36: error:
     member reference base type 'const KLMDynamicBorderArray<TBorder> *' is not
     a structure or union
         static_cast< double>(rhs.m_Pointer-...
                              ~~~ ^
/Users/peter/Documents/Forschung/Seg3D2-2.1.4-code/src/Externals/itk/Code/Common/itkKLMSegmentationBorder.h:109:41: error:
     member reference base type 'const KLMDynamicBorderArray<TBorder> *' is not
     a structure or union
   return(m_Pointer->GetLambda() > rhs.m_Pointer->GetLambda() );
                                   ~~~ ^
27 warnings and 4 errors generated.
make[2]: *** [Externals/itk/Code/Common/CMakeFiles/ITKCommon.dir/itkKLMSegmentationBorder.o] Error 1
make[1]: *** [Externals/itk/Code/Common/CMakeFiles/ITKCommon.dir/all] Error 2
make: *** [all] Error 2





The Seg3D 2.1.4 code from the SVN repository compiled successfully, but crashes whenever I use an ITK-based filter. Here is the log of the crashed thread, the full report is attached below.

Thread 15 Crashed:
0                                  0x00000001047e83e9 itk::ProcessObject::GenerateInputRequestedRegion() + 41
1                                  0x0000000103d04dbc itk::ImageToImageFilter<itk::Image<float, 3u>, itk::Image<float, 3u> >::GenerateInputRequestedRegion() + 28
2   ???                            000000000000000000 0 + 0
3                                  0x00000001047dfdd9 itk::MultiThreader::SingleMethodExecute() + 1033
4                                  0x0000000103d01d26 itk::ImageSource<itk::Image<float, 3u> >::GenerateData() + 134
5                                  0x00000001047e8b1d itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 1405
6                                  0x00000001047e865c itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 188
7                                  0x00000001047e865c itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 188
8                                  0x0000000103d0f52e itk::StreamingImageFilter<itk::Image<float, 3u>, itk::Image<float, 3u> >::UpdateOutputData(itk::DataObject*) + 1566
9                                  0x0000000103e1d338 itk::DiscreteGaussianImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u> >::GenerateData() + 3496
10                                 0x00000001047e8b1d itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 1405
11                                 0x0000000103e12560 void Seg3D::DiscreteGaussianFilterAlgo::typed_run_filter<int>() + 512
12                                 0x0000000103e10cd0 Seg3D::DiscreteGaussianFilterAlgo::run_filter() + 96
13                                 0x0000000103ccb232 Seg3D::LayerFilter::run() + 50



The 2.1.5 code produces similar errors, but this time only the following was shown (also find the full report below)

Thread 23 Crashed:
0   ???                            000000000000000000 0 + 0
1   ???                            0x000000010fa37c90 vtable for itk::ImageRegion<3u> + 16
2                                  0x000000010ef6b4e3 itk::MultiThreader::SingleMethodProxy(void*) + 19
3   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
4   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13



Thank you for any help,
kind regards,

Peter Salz
University of Kaiserslautern, Germany






Full report for Seg3D 2.1.4:

Process:         Seg3D2 [3788]
Path:            /Users/USER/Documents/*/Seg3D2.app/Contents/MacOS/Seg3D2
Identifier:      ???
Version:         ??? (???)
Code Type:       X86-64 (Native)
Parent Process:  launchd [388]

Date/Time:       2012-05-29 14:52:53.245 +0200
OS Version:      Mac OS X 10.7.4 (11E53)
Report Version:  9

Interval Since Last Report:          450016 sec
Crashes Since Last Report:           27
Per-App Interval Since Last Report:  8279 sec
Per-App Crashes Since Last Report:   23
Anonymous UUID:                      A7969E96-3602-4AC5-8648-B225D44B7F57

Crashed Thread:  15

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: 0x000000000000000d, 0x0000000000000000

VM Regions Near 0:
-->
   __TEXT                 0000000103ae9000-000000010527a000 [ 23.6M] r-x/rwx SM=COW  /Users/USER/Documents/*/Seg3D2.app/Contents/MacOS/Seg3D2

Application Specific Information:
objc[3788]: garbage collection is OFF

Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_c.dylib              0x00007fff944db8ba tiny_malloc_from_free_list + 1471
1   libsystem_c.dylib              0x00007fff944dc00e szone_malloc_should_clear + 1115
2   libsystem_c.dylib              0x00007fff945113c8 malloc_zone_malloc + 77
3   libsystem_c.dylib              0x00007fff945121a4 malloc + 44
4   libstdc++.6.dylib              0x00007fff90d4468e operator new(unsigned long) + 94
5   QtGui                          0x000000010655d57a QRegion::QRegion(QRect const&, QRegion::RegionType) + 122
6   QtGui                          0x0000000106420ab3 QWidget::update(QRect const&) + 163
7   QtGui                          0x0000000106420bb5 QWidget::update() + 53
8   QtGui                          0x000000010642abad QWidgetPrivate::setUpdatesEnabled_helper(bool) + 429
9   QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
10  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
11  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
12  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
13  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
14  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
15  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
16  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
17  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
18  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
19  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
20  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
21  QtGui                          0x000000010642ab5f QWidgetPrivate::setUpdatesEnabled_helper(bool) + 351
22                                 0x000000010405002b Seg3D::LayerManagerWidgetPrivate::handle_layer_inserted(boost::shared_ptr<Seg3D::Layer>, bool) + 395
23                                 0x000000010405c876 boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>::operator()(Seg3D::LayerManagerWidgetPrivate*, boost::shared_ptr<Seg3D::Layer>, bool) const + 70
24                                 0x000000010405c78d void boost::_bi::list3<boost::_bi::value<Seg3D::LayerManagerWidgetPrivate*>, boost::_bi::value<boost::shared_ptr<Seg3D::Layer> >, boost::_bi::value<bool> >::operator()<boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>&, boost::_bi::list0&, int) + 61
25                                 0x000000010405c558 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>, boost::_bi::list3<boost::_bi::value<Seg3D::LayerManagerWidgetPrivate*>, boost::_bi::value<boost::shared_ptr<Seg3D::Layer> >, boost::_bi::value<bool> > >, void>::invoke(boost::detail::function::function_buffer&) + 24
26                                 0x000000010405ccd9 void QtUtils::CheckQtPointerImpl<QPointer<Seg3D::LayerManagerWidgetPrivate> >(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>) + 89
27                                 0x000000010405d6e5 void boost::_bi::list2<boost::_bi::value<QPointer<Seg3D::LayerManagerWidgetPrivate> >, boost::_bi::value<boost::function<void ()()> > >::operator()<void (*)(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>), boost::_bi::list0>(boost::_bi::type<void>, void (*&)(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>), boost::_bi::list0&, int) + 117
28                                 0x000000010405d2f8 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, void (*)(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>), boost::_bi::list2<boost::_bi::value<QPointer<Seg3D::LayerManagerWidgetPrivate> >, boost::_bi::value<boost::function<void ()()> > > >, void>::invoke(boost::detail::function::function_buffer&) + 24
29                                 0x0000000103b84245 Core::EventT<boost::function<void ()()> >::run() + 69
30                                 0x0000000103b8292b Core::Event::handle_event() + 27
31                                 0x0000000103fcc930 QtUtils::QtEventHandlerContext::process_events() + 336
32                                 0x0000000103fcbe16 QtUtils::QtEventHandlerObject::eventFilter(QObject*, QEvent*) + 22
33  QtCore                         0x00000001071582d7 QCoreApplicationPrivate::sendThroughApplicationEventFilters(QObject*, QEvent*) + 167
34  QtGui                          0x00000001063d1f16 QApplicationPrivate::notify_helper(QObject*, QEvent*) + 38
35  QtGui                          0x00000001063d8fe4 QApplication::notify(QObject*, QEvent*) + 1060
36  QtCore                         0x000000010715875c QCoreApplication::notifyInternal(QObject*, QEvent*) + 124
37  QtCore                         0x000000010715a380 QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) + 736
38  com.apple.CoreFoundation       0x00007fff917f94f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
39  com.apple.CoreFoundation       0x00007fff917f8d5d __CFRunLoopDoSources0 + 253
40  com.apple.CoreFoundation       0x00007fff9181fb49 __CFRunLoopRun + 905
41  com.apple.CoreFoundation       0x00007fff9181f486 CFRunLoopRunSpecific + 230
42  com.apple.HIToolbox            0x00007fff94d424d3 RunCurrentEventLoopInMode + 277
43  com.apple.HIToolbox            0x00007fff94d496d3 ReceiveNextEventCommon + 181
44  com.apple.HIToolbox            0x00007fff94d4960e BlockUntilNextEventMatchingListInMode + 62
45  com.apple.AppKit               0x00007fff954a4e31 _DPSNextEvent + 659
46  com.apple.AppKit               0x00007fff954a4735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
47  com.apple.AppKit               0x00007fff954a1071 -[NSApplication run] + 470
48  QtGui                          0x000000010638e750 QEventDispatcherMac::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 1824
49  QtCore                         0x0000000107157664 QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 68
50  QtCore                         0x0000000107157a14 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 324
51  QtCore                         0x000000010715a90c QCoreApplication::exec() + 188
52                                 0x0000000103fc8fc8 QtUtils::QtApplication::exec() + 24
53                                 0x0000000103aed75a main + 2650
54                                 0x0000000103aec634 start + 52

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib         0x00007fff94d057e6 kevent + 10
1   libdispatch.dylib              0x00007fff8cd3578a _dispatch_mgr_invoke + 923
2   libdispatch.dylib              0x00007fff8cd3431a _dispatch_mgr_thread + 54

Thread 2:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 3:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 4:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 5:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 6:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 7:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 8:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 9:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 10:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103cf09a1 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x0000000103b84ddd Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x0000000103b82d0d Core::EventHandler::run_eventhandler() + 45
5                                  0x0000000103b8432e Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x0000000103b36a01 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 11:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x0000000103b38bd2 boost::condition_variable::timed_wait(boost::unique_lock<boost::mutex>&, boost::posix_time::ptime const&) + 162
3                                  0x00000001043cdee6 Seg3D::AutoSave::run() + 1094
4                                  0x0000000103b36a01 thread_proxy + 161
5   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
6   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 12:
0   libsystem_kernel.dylib         0x00007fff94d05192 __workq_kernreturn + 10
1   libsystem_c.dylib              0x00007fff944c1594 _pthread_wqthread + 758
2   libsystem_c.dylib              0x00007fff944c2b85 start_wqthread + 13

Thread 13:
0   libsystem_kernel.dylib         0x00007fff94d05192 __workq_kernreturn + 10
1   libsystem_c.dylib              0x00007fff944c1594 _pthread_wqthread + 758
2   libsystem_c.dylib              0x00007fff944c2b85 start_wqthread + 13

Thread 14:

Thread 15 Crashed:
0                                  0x00000001047e83e9 itk::ProcessObject::GenerateInputRequestedRegion() + 41
1                                  0x0000000103d04dbc itk::ImageToImageFilter<itk::Image<float, 3u>, itk::Image<float, 3u> >::GenerateInputRequestedRegion() + 28
2   ???                            000000000000000000 0 + 0
3                                  0x00000001047dfdd9 itk::MultiThreader::SingleMethodExecute() + 1033
4                                  0x0000000103d01d26 itk::ImageSource<itk::Image<float, 3u> >::GenerateData() + 134
5                                  0x00000001047e8b1d itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 1405
6                                  0x00000001047e865c itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 188
7                                  0x00000001047e865c itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 188
8                                  0x0000000103d0f52e itk::StreamingImageFilter<itk::Image<float, 3u>, itk::Image<float, 3u> >::UpdateOutputData(itk::DataObject*) + 1566
9                                  0x0000000103e1d338 itk::DiscreteGaussianImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u> >::GenerateData() + 3496
10                                 0x00000001047e8b1d itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 1405
11                                 0x0000000103e12560 void Seg3D::DiscreteGaussianFilterAlgo::typed_run_filter<int>() + 512
12                                 0x0000000103e10cd0 Seg3D::DiscreteGaussianFilterAlgo::run_filter() + 96
13                                 0x0000000103ccb232 Seg3D::LayerFilter::run() + 50
14                                 0x0000000103b42c7c void boost::_bi::list1<boost::_bi::value<boost::shared_ptr<Core::Runnable> > >::operator()<void (*)(boost::shared_ptr<Core::Runnable>), boost::_bi::list0>(boost::_bi::type<void>, void (*&)(boost::shared_ptr<Core::Runnable>), boost::_bi::list0&, int) + 44
15                                 0x0000000103b42c42 boost::detail::thread_data<boost::_bi::bind_t<void, void (*)(boost::shared_ptr<Core::Runnable>), boost::_bi::list1<boost::_bi::value<boost::shared_ptr<Core::Runnable> > > > >::run() + 34
16                                 0x0000000103b36a01 thread_proxy + 161
17  libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
18  libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 16:
0                                  0x0000000103dbd328 itk::ConstNeighborhoodIterator<itk::Image<int, 3u>, itk::ZeroFluxNeumannBoundaryCondition<itk::Image<int, 3u> > >::GetPixel(unsigned int, bool&) const + 216
1                                  0x0000000103dbd249 itk::ConstNeighborhoodIterator<itk::Image<int, 3u>, itk::ZeroFluxNeumannBoundaryCondition<itk::Image<int, 3u> > >::GetPixel(unsigned int) const + 41
2                                  0x0000000103e1e87b itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2619
3                                  0x0000000103d04d96 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
4                                  0x00000001047e1823 itk::MultiThreader::SingleMethodProxy(void*) + 19
5   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
6   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 17:
0                                  0x0000000103e1e897 itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2647
1                                  0x0000000103d04d96 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
2                                  0x00000001047e1823 itk::MultiThreader::SingleMethodProxy(void*) + 19
3   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
4   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 18:
0                                  0x0000000103e1e89a itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2650
1                                  0x0000000103d04d96 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
2                                  0x00000001047e1823 itk::MultiThreader::SingleMethodProxy(void*) + 19
3   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
4   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 19:
0                                  0x0000000103dbd328 itk::ConstNeighborhoodIterator<itk::Image<int, 3u>, itk::ZeroFluxNeumannBoundaryCondition<itk::Image<int, 3u> > >::GetPixel(unsigned int, bool&) const + 216
1                                  0x0000000103dbd249 itk::ConstNeighborhoodIterator<itk::Image<int, 3u>, itk::ZeroFluxNeumannBoundaryCondition<itk::Image<int, 3u> > >::GetPixel(unsigned int) const + 41
2                                  0x0000000103e1e87b itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2619
3                                  0x0000000103d04d96 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
4                                  0x00000001047e1823 itk::MultiThreader::SingleMethodProxy(void*) + 19
5   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
6   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 20:
0                                  0x0000000103dbd328 itk::ConstNeighborhoodIterator<itk::Image<int, 3u>, itk::ZeroFluxNeumannBoundaryCondition<itk::Image<int, 3u> > >::GetPixel(unsigned int, bool&) const + 216
1                                  0x0000000103dbd249 itk::ConstNeighborhoodIterator<itk::Image<int, 3u>, itk::ZeroFluxNeumannBoundaryCondition<itk::Image<int, 3u> > >::GetPixel(unsigned int) const + 41
2                                  0x0000000103e1e87b itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2619
3                                  0x0000000103d04d96 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
4                                  0x00000001047e1823 itk::MultiThreader::SingleMethodProxy(void*) + 19
5   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
6   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 15 crashed with X86 Thread State (64-bit):
 rax: 0x00007fa67d3a7120  rbx: 0x0000000000000000  rcx: 0x00007fa67d3a3b60  rdx: 0x00007fa68263be60
 rdi: 0x8000000000000000  rsi: 0x00007fa682600000  rbp: 0x000000013bfd8378  rsp: 0x000000013bfd8368
  r8: 0x0000000000000004   r9: 0x00007fa67d3f8df0  r10: 0x0000000040ad0a9a  r11: 0x00000000e69920cc
 r12: 0x00007fa67d38a400  r13: 0x00007fa67d3dce70  r14: 0x0000000107397400  r15: 0x00007fa67e828200
 rip: 0x00000001047e83e9  rfl: 0x0000000000010286  cr2: 0x0000000103dbf850
Logical CPU: 6

Binary Images:
      0x103ae9000 -        0x105279fff + (??? - ???) <8495BA05-2C21-396C-9828-F53337A5A77A> /Users/USER/Documents/*/Seg3D2.app/Contents/MacOS/Seg3D2
      0x10621b000 -        0x1062fcfef +QtOpenGL (4.8.0 - compatibility 4.8.0) <4478205B-4E6F-1691-6F63-FFDC5C7DB69D> /Users/USER/*/QtOpenGL.framework/Versions/4/QtOpenGL
      0x10634d000 -        0x106d58fe7 +QtGui (4.8.0 - compatibility 4.8.0) <D5588EC0-CB69-31E3-B1AA-4772B88EAD96> /Users/USER/*/QtGui.framework/Versions/4/QtGui
      0x10701e000 -        0x1072e4fff +QtCore (4.8.0 - compatibility 4.8.0) <9726D48A-4CC7-0E50-2E62-2568E27A8546> /Users/USER/*/QtCore.framework/Versions/4/QtCore
      0x107388000 -        0x10738efff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
      0x10976a000 -        0x109903fff  GLEngine (??? - ???) <61484217-C41D-3A65-86BD-397ACC0D069F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
      0x109937000 -        0x109965ff7  GLRendererFloat (??? - ???) <E33704BC-AA25-3279-A585-ABC6B3176D3E> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
      0x109d04000 -        0x109dfdfff  libGLProgrammability.dylib (??? - ???) <7396EE13-5FA6-3E78-88D0-2502CFE79A97> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
      0x109e23000 -        0x10a0ebff7  com.apple.ATIRadeonX3000GLDriver (7.18.18 - 7.1.8) <337EB117-0CB0-3C9E-AEE8-76BCB3CB9371> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRadeonX3000GLDriver
   0x7fff636e9000 -     0x7fff6371dbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
   0x7fff89ed9000 -     0x7fff89f4ffff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
   0x7fff89f50000 -     0x7fff89f90ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
   0x7fff8a0d3000 -     0x7fff8a0dcff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
   0x7fff8a222000 -     0x7fff8a235ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
   0x7fff8a26c000 -     0x7fff8a2d4ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
   0x7fff8a2d5000 -     0x7fff8a2e2fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
   0x7fff8a337000 -     0x7fff8a33cfff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
   0x7fff8a33d000 -     0x7fff8a391ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
   0x7fff8a3c8000 -     0x7fff8a3ccfff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
   0x7fff8a3dc000 -     0x7fff8a3e4fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
   0x7fff8a3e5000 -     0x7fff8a48afff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
   0x7fff8a49d000 -     0x7fff8a4caff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
   0x7fff8a511000 -     0x7fff8a56dff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
   0x7fff8a56e000 -     0x7fff8a571fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
   0x7fff8a5b0000 -     0x7fff8ab94fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
   0x7fff8ab95000 -     0x7fff8ac79fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
   0x7fff8ac7a000 -     0x7fff8ac80fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
   0x7fff8ac81000 -     0x7fff8ac86fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
   0x7fff8ac87000 -     0x7fff8af70ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
   0x7fff8b0fc000 -     0x7fff8b415fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
   0x7fff8b45e000 -     0x7fff8b4a2ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
   0x7fff8b4a3000 -     0x7fff8b4a9fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
   0x7fff8b4aa000 -     0x7fff8b4bffff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
   0x7fff8b4c0000 -     0x7fff8b4c3ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
   0x7fff8b91a000 -     0x7fff8b93efff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
   0x7fff8b93f000 -     0x7fff8b965fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
   0x7fff8b966000 -     0x7fff8ba73fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
   0x7fff8c7ac000 -     0x7fff8c804fff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
   0x7fff8c805000 -     0x7fff8c888fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
   0x7fff8c9c1000 -     0x7fff8c9c1fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
   0x7fff8c9c2000 -     0x7fff8ca04ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
   0x7fff8ca05000 -     0x7fff8ca40fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
   0x7fff8ca41000 -     0x7fff8ccb4fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
   0x7fff8cd32000 -     0x7fff8cd40fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
   0x7fff8cd4f000 -     0x7fff8cdbffff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
   0x7fff8cdc0000 -     0x7fff8cdc7fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
   0x7fff8d626000 -     0x7fff8d77ffff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
   0x7fff8d781000 -     0x7fff8d7c0ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
   0x7fff8d7c1000 -     0x7fff8e15ec9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
   0x7fff8e15f000 -     0x7fff8e15ffff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
   0x7fff8e160000 -     0x7fff8e1f6ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
   0x7fff8e203000 -     0x7fff8e210ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
   0x7fff8e256000 -     0x7fff8e33ae5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
   0x7fff8e37a000 -     0x7fff8e3e3fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
   0x7fff8e438000 -     0x7fff8e5d7ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
   0x7fff8f215000 -     0x7fff8f219fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
   0x7fff8f224000 -     0x7fff8f264fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
   0x7fff8f265000 -     0x7fff8f267fff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
   0x7fff8f30b000 -     0x7fff8f3beff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
   0x7fff8f3bf000 -     0x7fff8f3c3ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
   0x7fff8f49a000 -     0x7fff8f49bff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
   0x7fff8f4fe000 -     0x7fff8f529ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
   0x7fff8f582000 -     0x7fff8f689fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
   0x7fff8fb1d000 -     0x7fff8fb33ff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
   0x7fff8fb34000 -     0x7fff8fc39fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
   0x7fff8ffc9000 -     0x7fff90090ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
   0x7fff90098000 -     0x7fff900d2fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
   0x7fff900d3000 -     0x7fff900d3fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
   0x7fff900d4000 -     0x7fff900e6ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
   0x7fff900e7000 -     0x7fff900ecff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
   0x7fff905d0000 -     0x7fff909fdfff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
   0x7fff909fe000 -     0x7fff90a2dfff  com.apple.shortcut (2.1 - 2.1) <43C186C0-6B0F-39FA-976A-C307CC410495> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
   0x7fff90a36000 -     0x7fff90a5efff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
   0x7fff90a8b000 -     0x7fff90a8bfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
   0x7fff90d02000 -     0x7fff90d04ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
   0x7fff90d05000 -     0x7fff90d78fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
   0x7fff90dfd000 -     0x7fff90e14fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
   0x7fff90e15000 -     0x7fff90f17fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
   0x7fff90f9b000 -     0x7fff90fedff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
   0x7fff90fee000 -     0x7fff9101eff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
   0x7fff9124b000 -     0x7fff912d0ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
   0x7fff912de000 -     0x7fff91378ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
   0x7fff91379000 -     0x7fff9141bfff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
   0x7fff917e7000 -     0x7fff919bbff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
   0x7fff919c8000 -     0x7fff919d6fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
   0x7fff919f7000 -     0x7fff91a59ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
   0x7fff91a5a000 -     0x7fff91b73fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
   0x7fff91d77000 -     0x7fff91d78fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
   0x7fff91dc6000 -     0x7fff91dd5ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
   0x7fff91dd6000 -     0x7fff91dddff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
   0x7fff91dde000 -     0x7fff91ddefff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
   0x7fff91e56000 -     0x7fff91f4bfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
   0x7fff91f4c000 -     0x7fff91f70fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
   0x7fff91fad000 -     0x7fff91ff9ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
   0x7fff92055000 -     0x7fff9205cfff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
   0x7fff9205d000 -     0x7fff92124ff7  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <7E2E109C-A438-3EDC-A6EB-3EF634A1B28B> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
   0x7fff92125000 -     0x7fff9219bfff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
   0x7fff921c6000 -     0x7fff921c7fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
   0x7fff921c8000 -     0x7fff921d8ff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
   0x7fff921d9000 -     0x7fff92227fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
   0x7fff92267000 -     0x7fff9226dff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
   0x7fff92b19000 -     0x7fff92b6dfff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
   0x7fff92b8d000 -     0x7fff92b92fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
   0x7fff92bb0000 -     0x7fff92bb0fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
   0x7fff93533000 -     0x7fff935b7ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
   0x7fff9361e000 -     0x7fff93647fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
   0x7fff93648000 -     0x7fff936e9ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
   0x7fff93dcf000 -     0x7fff94296fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
   0x7fff94297000 -     0x7fff942d6fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
   0x7fff9431e000 -     0x7fff9432cff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
   0x7fff9432d000 -     0x7fff94349ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
   0x7fff94358000 -     0x7fff9435cfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
   0x7fff9435d000 -     0x7fff94469fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
   0x7fff9446a000 -     0x7fff9446dfff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
   0x7fff94471000 -     0x7fff9454efef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
   0x7fff945c4000 -     0x7fff945ceff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
   0x7fff945cf000 -     0x7fff94705fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
   0x7fff94706000 -     0x7fff94707fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
   0x7fff94708000 -     0x7fff9471aff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
   0x7fff9471b000 -     0x7fff94726fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
   0x7fff94727000 -     0x7fff94747fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
   0x7fff94748000 -     0x7fff9474efff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
   0x7fff94799000 -     0x7fff947c6fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
   0x7fff947c7000 -     0x7fff947ccfff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
   0x7fff947cd000 -     0x7fff94838ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
   0x7fff94839000 -     0x7fff9487afff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
   0x7fff94951000 -     0x7fff949b1fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
   0x7fff949b7000 -     0x7fff949cefff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
   0x7fff949d6000 -     0x7fff949e4fff  com.apple.HelpData (2.1.2 - 72.2) <363E36C5-F7C0-34A6-83D3-97C8FB6511F0> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
   0x7fff949e5000 -     0x7fff949e5fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
   0x7fff949e6000 -     0x7fff94a03ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
   0x7fff94a10000 -     0x7fff94a8bff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
   0x7fff94b20000 -     0x7fff94b26fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
   0x7fff94ce0000 -     0x7fff94cebff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
   0x7fff94cec000 -     0x7fff94cedfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
   0x7fff94cee000 -     0x7fff94d0efff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
   0x7fff94d0f000 -     0x7fff94d2efff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
   0x7fff94d40000 -     0x7fff9506cff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
   0x7fff95083000 -     0x7fff95083fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
   0x7fff95163000 -     0x7fff95179fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
   0x7fff9517a000 -     0x7fff9517bff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
   0x7fff9517c000 -     0x7fff9517efff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
   0x7fff9517f000 -     0x7fff9549bfff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
   0x7fff9549c000 -     0x7fff960a2ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
   0x7fff960a3000 -     0x7fff960ccfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
   0x7fff960cd000 -     0x7fff960d1fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
   0x7fff96109000 -     0x7fff9610cfff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
   0x7fff96122000 -     0x7fff9634cfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
   0x7fff963a3000 -     0x7fff963ceff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
   0x7fff963cf000 -     0x7fff964aeff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
   0x7fff9670b000 -     0x7fff96872fff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
   0x7fff96873000 -     0x7fff96890fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
   0x7fff96891000 -     0x7fff96a93fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
   0x7fff96de0000 -     0x7fff96de2fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
   0x7fff96de3000 -     0x7fff96df7ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
   0x7fff96df8000 -     0x7fff96dfdfff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
   0x7fff96eb0000 -     0x7fff96ebbff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
   0x7fff96f08000 -     0x7fff96f09ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
   0x7fff96f0a000 -     0x7fff96f3dff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS

External Modification Summary:
 Calls made by other processes targeting this process:
   task_for_pid: 2
   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: 5416
   thread_create: 1
   thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=202.3M resident=155.2M(77%) swapped_out_or_unallocated=47.1M(23%)
Writable regions: Total=1.1G written=823.7M(76%) resident=894.2M(82%) swapped_out=0K(0%) unallocated=190.4M(18%)

REGION TYPE                      VIRTUAL
===========                      =======
CG backing stores                  4236K
CG image                              4K
CG raster data                      128K
CG shared images                   3472K
CoreGraphics                         16K
CoreServices                       3384K
IOKit                              28.7M
IOKit (reserved)                   5632K        reserved VM address space (unallocated)
MALLOC                            910.7M
MALLOC guard page                    32K
MALLOC_LARGE (reserved)            70.1M        reserved VM address space (unallocated)
Memory tag=240                        4K
Memory tag=242                       12K
OpenGL GLSL                        1372K
OpenGL GLSL (reserved)              128K        reserved VM address space (unallocated)
STACK GUARD                        56.1M
Stack                              17.7M
Stack (reserved)                    520K        reserved VM address space (unallocated)
VM_ALLOCATE                        16.2M
__CI_BITMAP                          80K
__DATA                             15.1M
__IMAGE                             528K
__LINKEDIT                         64.7M
__TEXT                            137.6M
__UNICODE                           544K
mapped file                        38.4M
shared memory                      29.2M
===========                      =======
TOTAL                               1.4G
TOTAL, minus reserved VM space      1.3G

Model: iMac12,2, BootROM IM121.0047.B1F, 4 processors, Intel Core i7, 3.4 GHz, 12 GB, SMC 1.72f2
Graphics: AMD Radeon HD 6970M, AMD Radeon HD 6970M, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
Memory Module: BANK 1/DIMM1, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.64.8-P2P
Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Network Service: AirPort, AirPort, en1
Serial ATA Device: WDC WD1001FALS-403AA0, 1 TB
Serial ATA Device: OPTIARC DVD RW AD-5680H
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd140000 / 5
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: USB-PS/2 Optical Mouse, 0x046d  (Logitech Inc.), 0xc01b, 0xfa130000 / 5
USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6








Full report for 2.1.5:



Process:         Seg3D2 [3137]
Path:            /Users/USER/Documents/*/Seg3D2.app/Contents/MacOS/Seg3D2
Identifier:      ???
Version:         ??? (???)
Code Type:       X86-64 (Native)
Parent Process:  launchd [388]

Date/Time:       2012-05-29 14:50:22.866 +0200
OS Version:      Mac OS X 10.7.4 (11E53)
Report Version:  9

Interval Since Last Report:          449873 sec
Crashes Since Last Report:           26
Per-App Interval Since Last Report:  8246 sec
Per-App Crashes Since Last Report:   22
Anonymous UUID:                      A7969E96-3602-4AC5-8648-B225D44B7F57

Crashed Thread:  23

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

VM Regions Near 0:
-->
   __TEXT                 000000010e273000-000000010fa02000 [ 23.6M] r-x/rwx SM=COW  /Users/USER/Documents/*/Seg3D2.app/Contents/MacOS/Seg3D2

Application Specific Information:
objc[3137]: garbage collection is OFF

Thread 0:: Dispatch queue: com.apple.main-thread
0   QtGui                          0x0000000110ddd4f0 QCssScanner_Generated::lex() + 512
1   QtGui                          0x0000000110de419d QCss::Scanner::scan(QString const&, QVector<QCss::Symbol>*) + 141
2   QtGui                          0x0000000110de4ea9 QCss::Parser::init(QString const&, bool) + 137
3   QtGui                          0x0000000110e3c056 QStyleSheetStyle::styleRules(QWidget const*) const + 1094
4   QtGui                          0x0000000110e3f43a QStyleSheetStyle::renderRule(QWidget const*, int, unsigned long long) const + 346
5   QtGui                          0x0000000110e40490 QStyleSheetStyle::setGeometry(QWidget*) + 64
6   QtGui                          0x0000000110e40ad5 QStyleSheetStyle::polish(QWidget*) + 229
7   QtGui                          0x0000000110e38254 _ZL13updateWidgetsRK5QListIPK7QWidgetE + 244
8   QtGui                          0x0000000110e3baf6 QStyleSheetStyle::repolish(QWidget*) + 134
9                                  0x000000010e75d7dc Ui_ColorBarWidget::setupUi(QWidget*) + 236
10                                 0x000000010e75d3bb QtUtils::QtColorBarWidget::QtColorBarWidget(QWidget*) + 139
11                                 0x000000010e7ee033 Seg3D::LayerWidget::LayerWidget(QFrame*, boost::shared_ptr<Seg3D::Layer>) + 2691
12                                 0x000000010e7d5a8b Seg3D::LayerGroupWidgetPrivate::create_layer_widget(boost::shared_ptr<Seg3D::Layer>) + 75
13                                 0x000000010e7d80be Seg3D::LayerGroupWidget::handle_change() + 990
14                                 0x000000010e7daa96 Seg3D::LayerManagerWidgetPrivate::handle_layer_inserted(boost::shared_ptr<Seg3D::Layer>, bool) + 374
15                                 0x000000010e7e72f6 boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>::operator()(Seg3D::LayerManagerWidgetPrivate*, boost::shared_ptr<Seg3D::Layer>, bool) const + 70
16                                 0x000000010e7e720d void boost::_bi::list3<boost::_bi::value<Seg3D::LayerManagerWidgetPrivate*>, boost::_bi::value<boost::shared_ptr<Seg3D::Layer> >, boost::_bi::value<bool> >::operator()<boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>&, boost::_bi::list0&, int) + 61
17                                 0x000000010e7e6fd8 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf2<void, Seg3D::LayerManagerWidgetPrivate, boost::shared_ptr<Seg3D::Layer>, bool>, boost::_bi::list3<boost::_bi::value<Seg3D::LayerManagerWidgetPrivate*>, boost::_bi::value<boost::shared_ptr<Seg3D::Layer> >, boost::_bi::value<bool> > >, void>::invoke(boost::detail::function::function_buffer&) + 24
18                                 0x000000010e7e7759 void QtUtils::CheckQtPointerImpl<QPointer<Seg3D::LayerManagerWidgetPrivate> >(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>) + 89
19                                 0x000000010e7e8165 void boost::_bi::list2<boost::_bi::value<QPointer<Seg3D::LayerManagerWidgetPrivate> >, boost::_bi::value<boost::function<void ()()> > >::operator()<void (*)(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>), boost::_bi::list0>(boost::_bi::type<void>, void (*&)(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>), boost::_bi::list0&, int) + 117
20                                 0x000000010e7e7d78 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, void (*)(QPointer<Seg3D::LayerManagerWidgetPrivate>, boost::function<void ()()>), boost::_bi::list2<boost::_bi::value<QPointer<Seg3D::LayerManagerWidgetPrivate> >, boost::_bi::value<boost::function<void ()()> > > >, void>::invoke(boost::detail::function::function_buffer&) + 24
21                                 0x000000010e30efe5 Core::EventT<boost::function<void ()()> >::run() + 69
22                                 0x000000010e30d6cb Core::Event::handle_event() + 27
23                                 0x000000010e7576d0 QtUtils::QtEventHandlerContext::process_events() + 336
24                                 0x000000010e756bb6 QtUtils::QtEventHandlerObject::eventFilter(QObject*, QEvent*) + 22
25  QtCore                         0x000000011187b187 QCoreApplicationPrivate::sendThroughApplicationEventFilters(QObject*, QEvent*) + 167
26  QtGui                          0x0000000110b34df6 QApplicationPrivate::notify_helper(QObject*, QEvent*) + 38
27  QtGui                          0x0000000110b3b58e QApplication::notify(QObject*, QEvent*) + 2094
28  QtCore                         0x000000011178e21c QCoreApplication::notifyInternal(QObject*, QEvent*) + 124
29  QtCore                         0x000000011187be0b QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) + 731
30  com.apple.CoreFoundation       0x00007fff917f94f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
31  com.apple.CoreFoundation       0x00007fff917f8d5d __CFRunLoopDoSources0 + 253
32  com.apple.CoreFoundation       0x00007fff9181fb49 __CFRunLoopRun + 905
33  com.apple.CoreFoundation       0x00007fff9181f486 CFRunLoopRunSpecific + 230
34  com.apple.HIToolbox            0x00007fff94d424d3 RunCurrentEventLoopInMode + 277
35  com.apple.HIToolbox            0x00007fff94d496d3 ReceiveNextEventCommon + 181
36  com.apple.HIToolbox            0x00007fff94d4960e BlockUntilNextEventMatchingListInMode + 62
37  com.apple.AppKit               0x00007fff954a4e31 _DPSNextEvent + 659
38  com.apple.AppKit               0x00007fff954a4735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
39  com.apple.AppKit               0x00007fff954a1071 -[NSApplication run] + 470
40  QtGui                          0x0000000110af1c04 QEventDispatcherMac::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 1588
41  QtCore                         0x000000011187a774 QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 68
42  QtCore                         0x000000011187aa94 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 180
43  QtCore                         0x000000011187c0bc QCoreApplication::exec() + 188
44                                 0x000000010e753d68 QtUtils::QtApplication::exec() + 24
45                                 0x000000010e2784ea main + 2650
46                                 0x000000010e2773c4 start + 52

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib         0x00007fff94d057e6 kevent + 10
1   libdispatch.dylib              0x00007fff8cd3578a _dispatch_mgr_invoke + 923
2   libdispatch.dylib              0x00007fff8cd3431a _dispatch_mgr_thread + 54

Thread 2:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 3:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 4:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 5:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 6:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 7:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 8:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 9:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 10:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e47b741 boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 129
3                                  0x000000010e30fb7d Core::DefaultEventHandlerContext::wait_and_process_events() + 125
4                                  0x000000010e30daad Core::EventHandler::run_eventhandler() + 45
5                                  0x000000010e30f0ce Core::DefaultEventHandlerContextPrivate::start_thread(Core::EventHandler*) + 142
6                                  0x000000010e2c17a1 thread_proxy + 161
7   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
8   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 11:
0   libsystem_kernel.dylib         0x00007fff94d04bca __psynch_cvwait + 10
1   libsystem_c.dylib              0x00007fff944c3274 _pthread_cond_wait + 840
2                                  0x000000010e2c3972 boost::condition_variable::timed_wait(boost::unique_lock<boost::mutex>&, boost::posix_time::ptime const&) + 162
3                                  0x000000010eb59a86 Seg3D::AutoSave::run() + 1094
4                                  0x000000010e2c17a1 thread_proxy + 161
5   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
6   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 12:: com.apple.CFSocket.private
0   libsystem_kernel.dylib         0x00007fff94d04df2 __select + 10
1   com.apple.CoreFoundation       0x00007fff91868c8b __CFSocketManager + 1355
2   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
3   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 13:
0   libsystem_kernel.dylib         0x00007fff94d05192 __workq_kernreturn + 10
1   libsystem_c.dylib              0x00007fff944c1594 _pthread_wqthread + 758
2   libsystem_c.dylib              0x00007fff944c2b85 start_wqthread + 13

Thread 14:: CoreAnimation render server
0   libsystem_kernel.dylib         0x00007fff94d0367a mach_msg_trap + 10
1   libsystem_kernel.dylib         0x00007fff94d02d71 mach_msg + 73
2   com.apple.QuartzCore           0x00007fff8e43a2d9 CA::Render::Server::server_thread(void*) + 184
3   com.apple.QuartzCore           0x00007fff8e43a219 thread_fun + 24
4   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
5   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 15:
0   libsystem_kernel.dylib         0x00007fff94d05192 __workq_kernreturn + 10
1   libsystem_c.dylib              0x00007fff944c1594 _pthread_wqthread + 758
2   libsystem_c.dylib              0x00007fff944c2b85 start_wqthread + 13

Thread 16:

Thread 17:

Thread 18:
0                                  0x000000010e5a962b itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2635
1                                  0x000000010e48fb36 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
2                                  0x000000010ef69a99 itk::MultiThreader::SingleMethodExecute() + 1033
3                                  0x000000010e48cac6 itk::ImageSource<itk::Image<float, 3u> >::GenerateData() + 134
4                                  0x000000010ef727dd itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 1405
5                                  0x000000010ef7231c itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 188
6                                  0x000000010ef7231c itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 188
7                                  0x000000010e49a2ce itk::StreamingImageFilter<itk::Image<float, 3u>, itk::Image<float, 3u> >::UpdateOutputData(itk::DataObject*) + 1566
8                                  0x000000010e5a80d8 itk::DiscreteGaussianImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u> >::GenerateData() + 3496
9                                  0x000000010ef727dd itk::ProcessObject::UpdateOutputData(itk::DataObject*) + 1405
10                                 0x000000010e59d300 void Seg3D::DiscreteGaussianFilterAlgo::typed_run_filter<int>() + 512
11                                 0x000000010e59ba70 Seg3D::DiscreteGaussianFilterAlgo::run_filter() + 96
12                                 0x000000010e455fd2 Seg3D::LayerFilter::run() + 50
13                                 0x000000010e2cda1c void boost::_bi::list1<boost::_bi::value<boost::shared_ptr<Core::Runnable> > >::operator()<void (*)(boost::shared_ptr<Core::Runnable>), boost::_bi::list0>(boost::_bi::type<void>, void (*&)(boost::shared_ptr<Core::Runnable>), boost::_bi::list0&, int) + 44
14                                 0x000000010e2cd9e2 boost::detail::thread_data<boost::_bi::bind_t<void, void (*)(boost::shared_ptr<Core::Runnable>), boost::_bi::list1<boost::_bi::value<boost::shared_ptr<Core::Runnable> > > > >::run() + 34
15                                 0x000000010e2c17a1 thread_proxy + 161
16  libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
17  libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 19:
0                                  0x000000010e5a9684 itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2724
1                                  0x000000010e48fb36 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
2                                  0x000000010ef6b4e3 itk::MultiThreader::SingleMethodProxy(void*) + 19
3   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
4   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 20:
0                                  0x000000010e547fd7 itk::ConstNeighborhoodIterator<itk::Image<int, 3u>, itk::ZeroFluxNeumannBoundaryCondition<itk::Image<int, 3u> > >::GetPixel(unsigned int) const + 23
1                                  0x000000010e5a961b itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2619
2                                  0x000000010e48fb36 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
3                                  0x000000010ef6b4e3 itk::MultiThreader::SingleMethodProxy(void*) + 19
4   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
5   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 21:
0                                  0x000000010e5a9637 itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2647
1                                  0x000000010e48fb36 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
2                                  0x000000010ef6b4e3 itk::MultiThreader::SingleMethodProxy(void*) + 19
3   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
4   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 22:
0                                  0x000000010e48ae66 itk::ProgressReporter::CompletedPixel() + 6
1                                  0x000000010e5a9729 itk::NeighborhoodOperatorImageFilter<itk::Image<int, 3u>, itk::Image<float, 3u>, double>::ThreadedGenerateData(itk::ImageRegion<3u> const&, int) + 2889
2                                  0x000000010e48fb36 itk::ImageSource<itk::Image<float, 3u> >::ThreaderCallback(void*) + 134
3                                  0x000000010ef6b4e3 itk::MultiThreader::SingleMethodProxy(void*) + 19
4   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
5   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 23 Crashed:
0   ???                            000000000000000000 0 + 0
1   ???                            0x000000010fa37c90 vtable for itk::ImageRegion<3u> + 16
2                                  0x000000010ef6b4e3 itk::MultiThreader::SingleMethodProxy(void*) + 19
3   libsystem_c.dylib              0x00007fff944bf8bf _pthread_start + 335
4   libsystem_c.dylib              0x00007fff944c2b75 thread_start + 13

Thread 23 crashed with X86 Thread State (64-bit):
 rax: 0x0000000000000000  rbx: 0x0000000000000005  rcx: 0x0000000000000000  rdx: 0x00007fe64d813050
 rdi: 0x0000000111a70000  rsi: 0x00007fe64d800000  rbp: 0x000000012306def0  rsp: 0x000000012306dea8
  r8: 0x0000000000000006   r9: 0x0000000000000000  r10: 0x00000000573c98d9  r11: 0x00000000ffffffdf
 r12: 0x000000000000da27  r13: 0x000000012306e000  r14: 0x000000012225ad78  r15: 0x000000010ef6b4d0
 rip: 0x0000000000000000  rfl: 0x0000000000010212  cr2: 0x0000000000000000
Logical CPU: 1

Binary Images:
      0x10e273000 -        0x10fa01fff + (??? - ???) <A78209CA-1AEE-337C-B120-5D9ADC897AC8> /Users/USER/Documents/*/Seg3D2.app/Contents/MacOS/Seg3D2
      0x11099c000 -        0x110a6cfef +QtOpenGL (4.7.4 - compatibility 4.7.0) <86BB9DBB-FE0A-5731-1566-91CC4D710154> /Users/USER/*/QtOpenGL.framework/Versions/4/QtOpenGL
      0x110ab2000 -        0x111491fff +QtGui (4.7.4 - compatibility 4.7.0) <4DCC441B-F328-7DD3-C149-3011BE727C55> /Users/USER/*/QtGui.framework/Versions/4/QtGui
      0x11173b000 -        0x1119c2fef +QtCore (4.7.4 - compatibility 4.7.0) <12F4F71B-0999-8DD0-0D79-9D7F5E37EB98> /Users/USER/*/QtCore.framework/Versions/4/QtCore
      0x111a5d000 -        0x111a63fff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
      0x111ccc000 -        0x111cd2fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <303313AD-2D57-37A5-922B-3194C5DCD007> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
      0x113233000 -        0x113236fff  libLatinSuppConverter.dylib (54.0.0 - compatibility 1.0.0) <7E087B67-5698-34B6-9F16-1E0C1C3FF0DD> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
      0x113260000 -        0x113264fff  com.apple.qldisplay.Generic (3.2 - 500.16) <DF14FB23-60E5-3BD9-B312-39F95C8F737E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/PlugIns/Generic.qldisplay/Contents/MacOS/Generic
      0x113eb4000 -        0x11404dfff  GLEngine (??? - ???) <61484217-C41D-3A65-86BD-397ACC0D069F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
      0x114081000 -        0x1140afff7  GLRendererFloat (??? - ???) <E33704BC-AA25-3279-A585-ABC6B3176D3E> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
      0x11444e000 -        0x114547fff  libGLProgrammability.dylib (??? - ???) <7396EE13-5FA6-3E78-88D0-2502CFE79A97> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
      0x11456d000 -        0x114835ff7  com.apple.ATIRadeonX3000GLDriver (7.18.18 - 7.1.8) <337EB117-0CB0-3C9E-AEE8-76BCB3CB9371> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRadeonX3000GLDriver
      0x114eb0000 -        0x114eb3ff7  libCoreFSCache.dylib (??? - ???) <70D5EB80-24F5-3837-9302-EBD4CFCE5CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
      0x114eb7000 -        0x114eb7ff5 +cl_kernels (??? - ???) <E829A90E-1257-432A-BE53-C86366BA3748> cl_kernels
      0x114ec0000 -        0x114ec0ffd +cl_kernels (??? - ???) <AC8758B3-4369-4B55-ADC5-39E56B3C90C4> cl_kernels
      0x115301000 -        0x115302ffc +cl_kernels (??? - ???) <777475E0-1D8A-4533-83E3-2BEE3CF1BA66> cl_kernels
      0x115b0e000 -        0x115b0fff3 +cl_kernels (??? - ???) <C0275860-2963-4E68-96B9-A67B7CD615FF> cl_kernels
      0x115b14000 -        0x115b15ff3 +cl_kernels (??? - ???) <66D563E5-2F83-4376-827E-B1A8C09F8CF4> cl_kernels
      0x1188ee000 -        0x118981ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
      0x11b53f000 -        0x11b5d2ff7  unorm8_argb.dylib (1.50.69 - compatibility 1.0.0) <62C3F70B-9B04-39BD-BE29-582A1DE89A90> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb.dylib
   0x7fff6de73000 -     0x7fff6dea7baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
   0x7fff89ed9000 -     0x7fff89f4ffff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
   0x7fff89f50000 -     0x7fff89f90ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
   0x7fff89fda000 -     0x7fff8a0c4fff  com.apple.backup.framework (1.3.3 - 1.3.3) <6C49FBCF-D6AF-3351-BBBF-A98A622CA517> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
   0x7fff8a0d3000 -     0x7fff8a0dcff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
   0x7fff8a222000 -     0x7fff8a235ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
   0x7fff8a236000 -     0x7fff8a26bfff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
   0x7fff8a26c000 -     0x7fff8a2d4ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
   0x7fff8a2d5000 -     0x7fff8a2e2fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
   0x7fff8a2e3000 -     0x7fff8a336fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
   0x7fff8a337000 -     0x7fff8a33cfff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
   0x7fff8a33d000 -     0x7fff8a391ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
   0x7fff8a3c8000 -     0x7fff8a3ccfff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
   0x7fff8a3cd000 -     0x7fff8a3dbff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
   0x7fff8a3dc000 -     0x7fff8a3e4fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
   0x7fff8a3e5000 -     0x7fff8a48afff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
   0x7fff8a49d000 -     0x7fff8a4caff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
   0x7fff8a504000 -     0x7fff8a510fff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
   0x7fff8a511000 -     0x7fff8a56dff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
   0x7fff8a56e000 -     0x7fff8a571fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
   0x7fff8a5b0000 -     0x7fff8ab94fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
   0x7fff8ab95000 -     0x7fff8ac79fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
   0x7fff8ac7a000 -     0x7fff8ac80fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
   0x7fff8ac81000 -     0x7fff8ac86fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
   0x7fff8ac87000 -     0x7fff8af70ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
   0x7fff8af71000 -     0x7fff8b0fbfff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
   0x7fff8b0fc000 -     0x7fff8b415fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
   0x7fff8b416000 -     0x7fff8b45dff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
   0x7fff8b45e000 -     0x7fff8b4a2ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
   0x7fff8b4a3000 -     0x7fff8b4a9fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
   0x7fff8b4aa000 -     0x7fff8b4bffff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
   0x7fff8b4c0000 -     0x7fff8b4c3ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
   0x7fff8b4c4000 -     0x7fff8b5beff7  com.apple.DiskImagesFramework (10.7.4 - 331.6) <C7860B00-E1CF-3851-9A3B-9F145B7F498F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
   0x7fff8b91a000 -     0x7fff8b93efff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
   0x7fff8b93f000 -     0x7fff8b965fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
   0x7fff8b966000 -     0x7fff8ba73fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
   0x7fff8c7ac000 -     0x7fff8c804fff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
   0x7fff8c805000 -     0x7fff8c888fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
   0x7fff8c889000 -     0x7fff8c989fff  com.apple.QuickLookUIFramework (3.2 - 500.16) <0BACF8C4-5A7B-31EE-B4AA-3CCF8615C9A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
   0x7fff8c98a000 -     0x7fff8c9a4fff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
   0x7fff8c9a5000 -     0x7fff8c9b7ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
   0x7fff8c9c1000 -     0x7fff8c9c1fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
   0x7fff8c9c2000 -     0x7fff8ca04ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
   0x7fff8ca05000 -     0x7fff8ca40fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
   0x7fff8ca41000 -     0x7fff8ccb4fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
   0x7fff8cd32000 -     0x7fff8cd40fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
   0x7fff8cd4f000 -     0x7fff8cdbffff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
   0x7fff8cdc0000 -     0x7fff8cdc7fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
   0x7fff8cdc8000 -     0x7fff8d55cfef  com.apple.CoreAUC (6.16.11 - 6.16.11) <3D40FEA5-AFE7-3752-A52E-D0F80304320A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
   0x7fff8d55d000 -     0x7fff8d58afff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
   0x7fff8d626000 -     0x7fff8d77ffff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
   0x7fff8d781000 -     0x7fff8d7c0ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
   0x7fff8d7c1000 -     0x7fff8e15ec9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
   0x7fff8e15f000 -     0x7fff8e15ffff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
   0x7fff8e160000 -     0x7fff8e1f6ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
   0x7fff8e203000 -     0x7fff8e210ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
   0x7fff8e211000 -     0x7fff8e255ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
   0x7fff8e256000 -     0x7fff8e33ae5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
   0x7fff8e37a000 -     0x7fff8e3e3fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
   0x7fff8e438000 -     0x7fff8e5d7ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
   0x7fff8e5d8000 -     0x7fff8eadbfe7  com.apple.RawCamera.bundle (3.13.0 - 627) <4593B038-1A60-5ADB-565D-5BDFA28A53F2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
   0x7fff8f215000 -     0x7fff8f219fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
   0x7fff8f224000 -     0x7fff8f264fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
   0x7fff8f265000 -     0x7fff8f267fff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
   0x7fff8f268000 -     0x7fff8f293fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
   0x7fff8f294000 -     0x7fff8f294fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
   0x7fff8f30b000 -     0x7fff8f3beff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
   0x7fff8f3bf000 -     0x7fff8f3c3ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
   0x7fff8f407000 -     0x7fff8f499ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
   0x7fff8f49a000 -     0x7fff8f49bff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
   0x7fff8f4fe000 -     0x7fff8f529ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
   0x7fff8f52a000 -     0x7fff8f581fff  com.apple.Suggestions (1.1 - 85.1) <DE511C42-D2F2-309C-80EE-53862245DE22> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
   0x7fff8f582000 -     0x7fff8f689fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
   0x7fff8fb1d000 -     0x7fff8fb33ff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
   0x7fff8fb34000 -     0x7fff8fc39fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
   0x7fff8fc3a000 -     0x7fff8ff5efff  com.apple.AddressBook.framework (6.1.2 - 1090) <65FE6A36-F3F8-37FE-8B88-50F20F278779> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
   0x7fff8ff6b000 -     0x7fff8ffc8ff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
   0x7fff8ffc9000 -     0x7fff90090ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
   0x7fff90091000 -     0x7fff90097ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
   0x7fff90098000 -     0x7fff900d2fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
   0x7fff900d3000 -     0x7fff900d3fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
   0x7fff900d4000 -     0x7fff900e6ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
   0x7fff900e7000 -     0x7fff900ecff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
   0x7fff90278000 -     0x7fff904e6ff7  com.apple.QuartzComposer (5.0 - 236.7) <D556126B-3D67-3E37-82E0-D06532DE0C89> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
   0x7fff905d0000 -     0x7fff909fdfff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
   0x7fff909fe000 -     0x7fff90a2dfff  com.apple.shortcut (2.1 - 2.1) <43C186C0-6B0F-39FA-976A-C307CC410495> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
   0x7fff90a2e000 -     0x7fff90a35fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <B3F07872-63B1-3AAF-A313-9B2886822C58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
   0x7fff90a36000 -     0x7fff90a5efff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
   0x7fff90a8b000 -     0x7fff90a8bfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
   0x7fff90a8c000 -     0x7fff90d01ff7  com.apple.imageKit (2.1.2 - 1.0) <5BAA52A9-F359-31E4-8109-74EBCEB626B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
   0x7fff90d02000 -     0x7fff90d04ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
   0x7fff90d05000 -     0x7fff90d78fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
   0x7fff90dfd000 -     0x7fff90e14fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
   0x7fff90e15000 -     0x7fff90f17fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
   0x7fff90f9b000 -     0x7fff90fedff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
   0x7fff90fee000 -     0x7fff9101eff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
   0x7fff9124b000 -     0x7fff912d0ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
   0x7fff912de000 -     0x7fff91378ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
   0x7fff91379000 -     0x7fff9141bfff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
   0x7fff9141c000 -     0x7fff9176ffff  com.apple.FinderKit (1.0.3 - 1.0.3) <D0BF82AD-69D6-3190-804C-6CF061BA22EF> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
   0x7fff91770000 -     0x7fff917e6fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
   0x7fff917e7000 -     0x7fff919bbff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
   0x7fff919c8000 -     0x7fff919d6fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
   0x7fff919f7000 -     0x7fff91a59ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
   0x7fff91a5a000 -     0x7fff91b73fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
   0x7fff91d77000 -     0x7fff91d78fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
   0x7fff91dc6000 -     0x7fff91dd5ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
   0x7fff91dd6000 -     0x7fff91dddff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
   0x7fff91dde000 -     0x7fff91ddefff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
   0x7fff91e56000 -     0x7fff91f4bfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
   0x7fff91f4c000 -     0x7fff91f70fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
   0x7fff91f71000 -     0x7fff91facfff  com.apple.LDAPFramework (3.2 - 120.2) <A2675243-9122-308D-A5C8-9C1C4FE7639D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
   0x7fff91fad000 -     0x7fff91ff9ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
   0x7fff91ffa000 -     0x7fff92054ff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
   0x7fff92055000 -     0x7fff9205cfff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
   0x7fff9205d000 -     0x7fff92124ff7  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <7E2E109C-A438-3EDC-A6EB-3EF634A1B28B> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
   0x7fff92125000 -     0x7fff9219bfff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
   0x7fff9219c000 -     0x7fff921c5ff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
   0x7fff921c6000 -     0x7fff921c7fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
   0x7fff921c8000 -     0x7fff921d8ff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
   0x7fff921d9000 -     0x7fff92227fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
   0x7fff92267000 -     0x7fff9226dff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
   0x7fff9294a000 -     0x7fff92a47ff7  com.apple.avfoundation (2.0 - 180.40) <ED3DCB15-7E88-34FD-9E56-4ECAD10A6E7E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
   0x7fff92a48000 -     0x7fff92a81fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
   0x7fff92b19000 -     0x7fff92b6dfff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
   0x7fff92b8d000 -     0x7fff92b92fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
   0x7fff92b93000 -     0x7fff92baffff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
   0x7fff92bb0000 -     0x7fff92bb0fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
   0x7fff92bb1000 -     0x7fff92fceff7  com.apple.SceneKit (125.3 - 125.4) <12AD6DBE-F3A3-34D6-BA01-B211BEAFD48F> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
   0x7fff93040000 -     0x7fff933e9fef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
   0x7fff93533000 -     0x7fff935b7ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
   0x7fff9361e000 -     0x7fff93647fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
   0x7fff93648000 -     0x7fff936e9ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
   0x7fff93999000 -     0x7fff93dccff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
   0x7fff93dcf000 -     0x7fff94296fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
   0x7fff94297000 -     0x7fff942d6fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
   0x7fff942d7000 -     0x7fff9431dfff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
   0x7fff9431e000 -     0x7fff9432cff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
   0x7fff9432d000 -     0x7fff94349ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
   0x7fff94358000 -     0x7fff9435cfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
   0x7fff9435d000 -     0x7fff94469fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
   0x7fff9446a000 -     0x7fff9446dfff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
   0x7fff94471000 -     0x7fff9454efef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
   0x7fff945c4000 -     0x7fff945ceff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
   0x7fff945cf000 -     0x7fff94705fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
   0x7fff94706000 -     0x7fff94707fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
   0x7fff94708000 -     0x7fff9471aff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
   0x7fff9471b000 -     0x7fff94726fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
   0x7fff94727000 -     0x7fff94747fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
   0x7fff94748000 -     0x7fff9474efff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
   0x7fff9474f000 -     0x7fff94798ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
   0x7fff94799000 -     0x7fff947c6fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
   0x7fff947c7000 -     0x7fff947ccfff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
   0x7fff947cd000 -     0x7fff94838ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
   0x7fff94839000 -     0x7fff9487afff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
   0x7fff948ae000 -     0x7fff948b1fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
   0x7fff94912000 -     0x7fff94950fff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
   0x7fff94951000 -     0x7fff949b1fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
   0x7fff949b7000 -     0x7fff949cefff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
   0x7fff949d6000 -     0x7fff949e4fff  com.apple.HelpData (2.1.2 - 72.2) <363E36C5-F7C0-34A6-83D3-97C8FB6511F0> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
   0x7fff949e5000 -     0x7fff949e5fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
   0x7fff949e6000 -     0x7fff94a03ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
   0x7fff94a04000 -     0x7fff94a0fff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
   0x7fff94a10000 -     0x7fff94a8bff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
   0x7fff94a8c000 -     0x7fff94b1fff7  com.apple.PDFKit (2.6.3 - 2.6.3) <49BF9CDC-E902-3CAC-9C04-3302545907D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
   0x7fff94b20000 -     0x7fff94b26fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
   0x7fff94ce0000 -     0x7fff94cebff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
   0x7fff94cec000 -     0x7fff94cedfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
   0x7fff94cee000 -     0x7fff94d0efff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
   0x7fff94d0f000 -     0x7fff94d2efff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
   0x7fff94d40000 -     0x7fff9506cff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
   0x7fff9506d000 -     0x7fff95082fff  com.apple.FileSync.framework (6.0.1 - 502.2) <65A5CD1B-766D-33F8-8AC1-0984499838E9> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
   0x7fff95083000 -     0x7fff95083fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
   0x7fff95084000 -     0x7fff95162fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
   0x7fff95163000 -     0x7fff95179fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
   0x7fff9517a000 -     0x7fff9517bff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
   0x7fff9517c000 -     0x7fff9517efff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
   0x7fff9517f000 -     0x7fff9549bfff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
   0x7fff9549c000 -     0x7fff960a2ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
   0x7fff960a3000 -     0x7fff960ccfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
   0x7fff960cd000 -     0x7fff960d1fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
   0x7fff960d2000 -     0x7fff960d2fff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
   0x7fff96109000 -     0x7fff9610cfff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
   0x7fff96122000 -     0x7fff9634cfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
   0x7fff96351000 -     0x7fff963a2ff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
   0x7fff963a3000 -     0x7fff963ceff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
   0x7fff963cf000 -     0x7fff964aeff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
   0x7fff9670b000 -     0x7fff96872fff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
   0x7fff96873000 -     0x7fff96890fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
   0x7fff96891000 -     0x7fff96a93fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
   0x7fff96abd000 -     0x7fff96ddffe7  com.apple._javascript_Core (7534.56 - 7534.56.6) <675725F8-37C4-3B80-ADB0-7B6AE908A908> /System/Library/Frameworks/_javascript_Core.framework/Versions/A/_javascript_Core
   0x7fff96de0000 -     0x7fff96de2fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
   0x7fff96de3000 -     0x7fff96df7ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
   0x7fff96df8000 -     0x7fff96dfdfff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
   0x7fff96eb0000 -     0x7fff96ebbff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
   0x7fff96ebc000 -     0x7fff96ee3fff  com.apple.framework.internetaccounts (1.2 - 3) <483427CA-8140-355D-B668-78F5A5F1A1D6> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts
   0x7fff96f08000 -     0x7fff96f09ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
   0x7fff96f0a000 -     0x7fff96f3dff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS

External Modification Summary:
 Calls made by other processes targeting this process:
   task_for_pid: 33
   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: 5327
   thread_create: 1
   thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=255.1M resident=191.6M(75%) swapped_out_or_unallocated=63.5M(25%)
Writable regions: Total=454.8M written=168.3M(37%) resident=223.6M(49%) swapped_out=0K(0%) unallocated=231.1M(51%)

REGION TYPE                      VIRTUAL
===========                      =======
ATS (font support)                 31.9M
ATS (font support) (reserved)         4K        reserved VM address space (unallocated)
CG backing stores                  16.5M
CG image                            152K
CG raster data                      188K
CG shared images                   3472K
CoreAnimation                         4K
CoreGraphics                         16K
CoreImage                             8K
CoreServices                       3384K
IOKit                              73.5M
IOKit (reserved)                   6144K        reserved VM address space (unallocated)
MALLOC                            228.7M
MALLOC guard page                    32K
MALLOC_LARGE (reserved)            60.1M        reserved VM address space (unallocated)
Memory tag=240                        4K
Memory tag=242                       12K
Memory tag=243                        4K
Memory tag=251                       28K
OpenCL                               52K
OpenGL GLSL                        1372K
OpenGL GLSL (reserved)              128K        reserved VM address space (unallocated)
STACK GUARD                        56.1M
Stack                              18.2M
Stack (reserved)                   1040K        reserved VM address space (unallocated)
VM_ALLOCATE                        16.3M
__CI_BITMAP                          80K
__DATA                             22.0M
__IMAGE                             528K
__LINKEDIT                         64.7M
__RC_CAMERAS                        248K
__TEXT                            190.4M
__UNICODE                           544K
mapped file                        42.1M
shared memory                      19.7M
===========                      =======
TOTAL                             857.2M
TOTAL, minus reserved VM space    790.0M

Model: iMac12,2, BootROM IM121.0047.B1F, 4 processors, Intel Core i7, 3.4 GHz, 12 GB, SMC 1.72f2
Graphics: AMD Radeon HD 6970M, AMD Radeon HD 6970M, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
Memory Module: BANK 1/DIMM1, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393930353432382D3035312E4130304C4620
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.64.8-P2P
Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Network Service: AirPort, AirPort, en1
Serial ATA Device: WDC WD1001FALS-403AA0, 1 TB
Serial ATA Device: OPTIARC DVD RW AD-5680H
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd140000 / 5
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: USB-PS/2 Optical Mouse, 0x046d  (Logitech Inc.), 0xc01b, 0xfa130000 / 5
USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6









  • [Seg3D] Re: Compile errors and ITK crashes with Seg3D 2.1.4 and 2.1.5, Ayla Khan, 06/19/2012

Archive powered by MHonArc 2.6.16.

Top of page