MFC CRecordset heap corruption detected at Close()

I recently upgraded my operating system from Windows XP to Windows 7 SP1 64 bit. We are using Visual Studio 2005/2008  Professional Edition and Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production.
When I try to execute this code I am getting the below exceptions.
try {
  CDatabase *pDatabase = CDatabaseConnection::getDatabaseConnectionProcessLog();
  ORSProcessLog rsProcessLog(pDatabase);
  CString strFilter = _T("SELECT PROCESS_ID, MESSAGE FROM OP_PROCESS_LOG");
  rsProcessLog.SetRowsetSize(1);
  if( !rsProcessLog.Open(CRecordset::dynaset, strFilter, CRecordset::appendOnly) ) 
  return;
  if( !rsProcessLog.CanAppend() )
  return;
  rsProcessLog.AddNew(); 
  rsProcessLog.m_PROCESS_ID = gcsProcessID;
  rsProcessLog.m_MESSAGE = csMessageA;
  rsProcessLog.Update();
  rsProcessLog.Close();
catch ( CDBException* pEx )
  bException = true;
  pEx->GetErrorMessage(szCause, 255);
catch( CException* pEx )
  bException = true;
  pEx->GetErrorMessage(szCause, 255);
where rsProcessLog is the CRecordset object using a successfully connected database pointer pDatabase
In 32- bit Debug version I get a message box at rsProcessLog.Close(); with the below text
Debug Error
Program: ......\Test.exe
HEAP CORRUPTION DETECTED: after Normal block (#506) at 0x0087F628. CRT detected that the application wrote to memory after end of heap buffer.
Memory allocated at f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dbcore.cpp(2626)
(Please Retry to debug the application)
In 32- bit Release version I get a message box at rsProcessLog.Close(); with the below text
Windows has triggered a breakpoint in Test.exe
This may be due to a corruption of the heap, which indicates a bug in Test.exe or any of the DLLS it has loaded.
This may also be due to the user pressing F12 while Test.exe has focus.
The output window may have more diagnostic information.
The above code was a working code in Windows XP with the rest of the env remaining the same and it continues to run in Windows XP but not in Windows 7. Any help will be greatly appreciated.

Greg,
I installed the Patch using OPatch utility. After the installation I am still getting the "HEAP CORRUPTION DETECTED.." error. Please Help.
I am attaching the OPatch log file for your reference.
[Nov 5, 2013 10:52:37 AM]    OPatch invoked as follows: 'apply -Report ' [Nov 5, 2013 10:52:37 AM]    OUI-67077:                              Oracle Home       : C:\Oracle\Ora11_32                              Central Inventory : C:\Program Files (x86)\Oracle\Inventory                                 from           : n/a                              OPatch version    : 11.2.0.3.5                              OUI version       : 11.2.0.3.0                              OUI location      : C:\Oracle\Ora11_32\oui                              Log file location : C:\Oracle\Ora11_32\cfgtoollogs\opatch\17363844_Nov_05_2013_10_52_36\apply2013-11-05_10-52-36AM_1.log [Nov 5, 2013 10:52:37 AM]    Patch history file: C:\Oracle\Ora11_32\cfgtoollogs\opatch\opatch_history.txt [Nov 5, 2013 10:52:37 AM]    Starting ApplySession at Tue Nov 05 10:52:37 EST 2013 [Nov 5, 2013 10:52:37 AM]    Starting Apply Session at Tue Nov 05 10:52:37 EST 2013 [Nov 5, 2013 10:52:38 AM]    OPatch will do the following:                              [Oracle Home discovery]                      : Configure and Validate Oracle Home info.                              [Prerequisite for apply]                     : Invoke prerequisites to see if patch can be applied.                              [Patch conflict detection for apply patch]   : Check if any conflict with already installed patches in Oracle Home. [Nov 5, 2013 10:52:38 AM]    --------------------- Oracle Home discovery --------------------- [Nov 5, 2013 10:52:38 AM]    OUI-67086:ApplySession applying interim patch '17363844' to OH 'C:\Oracle\Ora11_32' [Nov 5, 2013 10:52:38 AM]    Applying interim patch '17363844' to OH 'C:\Oracle\Ora11_32' [Nov 5, 2013 10:52:38 AM]    Starting to apply patch to local system at Tue Nov 05 10:52:38 EST 2013 [Nov 5, 2013 10:52:38 AM]    Verifying environment and performing prerequisite checks... [Nov 5, 2013 10:52:40 AM]    Start the Apply initScript at Tue Nov 05 10:52:40 EST 2013 [Nov 5, 2013 10:52:40 AM]    Finish the Apply initScript at Tue Nov 05 10:52:40 EST 2013 [Nov 5, 2013 10:52:40 AM]    --------------------- Prerequisite for apply --------------------- [Nov 5, 2013 10:52:40 AM]    Running prerequisite checks... [Nov 5, 2013 10:52:40 AM]    Patch "17363844" is ignored as it is not a "Fusion Applications patch". [Nov 5, 2013 10:52:40 AM]    Check if patch "17363844"  is a no-op patch. [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.rsf, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.plsql, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.network.rsf, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.precomp.common, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.precomp.lang, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.rman, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.util, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.tg4msql, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.dbscripts, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.xdk.rsf, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.oci, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.sysman.console.db, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.ctx, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.network.listener, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.sysman.agent, 10.2.0.4.3 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.deconfig, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.dv, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.hsodbc, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.ons, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.install.deinstalltool, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.oraolap.api, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.oraolap, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.sdo.locator, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.ordim.server, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.sysman.oms.core, 10.2.0.4.4 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.ldap.owm, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.tg4db2, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.tg4ifmx, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.tg4sybs, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.tg4tera, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.rdbms.scheduler, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.ovm, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.sysman.repository.core, 10.2.0.4.4 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.marvel, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.xdk.parser.java, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.xdk, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.idm.oid, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    Opt. comp. not in OH inventory: oracle.owb.rsf, 11.2.0.3.0 [Nov 5, 2013 10:52:40 AM]    [ oracle.rdbms, 11.2.0.3.0 ] , [ oracle.rdbms.rsf, 11.2.0.3.0 ] , [ oracle.rdbms.plsql, 11.2.0.3.0 ] , [ oracle.network.rsf, 11.2.0.3.0 ] , [ oracle.precomp.common, 11.2.0.3.0 ] , [ oracle.precomp.lang, 11.2.0.3.0 ] , [ oracle.rdbms.rman, 11.2.0.3.0 ] , [ oracle.rdbms.util, 11.2.0.3.0 ] , [ oracle.rdbms.tg4msql, 11.2.0.3.0 ] , [ oracle.rdbms.dbscripts, 11.2.0.3.0 ] , [ oracle.xdk.rsf, 11.2.0.3.0 ] , [ oracle.rdbms.oci, 11.2.0.3.0 ] , [ oracle.sysman.console.db, 11.2.0.3.0 ] , [ oracle.ctx, 11.2.0.3.0 ] , [ oracle.network.listener, 11.2.0.3.0 ] , [ oracle.sysman.agent, 10.2.0.4.3 ] , [ oracle.rdbms.deconfig, 11.2.0.3.0 ] , [ oracle.rdbms.dv, 11.2.0.3.0 ] , [ oracle.rdbms.hsodbc, 11.2.0.3.0 ] , [ oracle.ons, 11.2.0.3.0 ] , [ oracle.install.deinstalltool, 11.2.0.3.0 ] , [ oracle.oraolap.api, 11.2.0.3.0 ] , [ oracle.oraolap, 11.2.0.3.0 ] , [ oracle.sdo.locator, 11.2.0.3.0 ] , [ oracle.ordim.server, 11.2.0.3.0 ] , [ oracle.sysman.oms.core, 10.2.0.4.4 ] , [ oracle.ldap.owm, 11.2.0.3.0 ] , [ oracle.rdbms.tg4db2, 11.2.0.3.0 ] , [ oracle.rdbms.tg4ifmx, 11.2.0.3.0 ] , [ oracle.rdbms.tg4sybs, 11.2.0.3.0 ] , [ oracle.rdbms.tg4tera, 11.2.0.3.0 ] , [ oracle.rdbms.scheduler, 11.2.0.3.0 ] , [ oracle.ovm, 11.2.0.3.0 ] , [ oracle.sysman.repository.core, 10.2.0.4.4 ] , [ oracle.marvel, 11.2.0.3.0 ] , [ oracle.xdk.parser.java, 11.2.0.3.0 ] , [ oracle.xdk, 11.2.0.3.0 ] , [ oracle.idm.oid, 11.2.0.3.0 ] , [ oracle.owb.rsf, 11.2.0.3.0 ] [Nov 5, 2013 10:52:40 AM]    None of the selected patches are no-op. patches.. [Nov 5, 2013 10:52:41 AM]    Prereq checkPatchApplicableOnCurrentPlatform Passed for patch : 17363844 [Nov 5, 2013 10:52:41 AM]    Patch 17363844: Optional component(s) missing : [ oracle.rdbms, 11.2.0.3.0 ] , [ oracle.rdbms.rsf, 11.2.0.3.0 ] , [ oracle.rdbms.plsql, 11.2.0.3.0 ] , [ oracle.network.rsf, 11.2.0.3.0 ] , [ oracle.precomp.common, 11.2.0.3.0 ] , [ oracle.precomp.lang, 11.2.0.3.0 ] , [ oracle.rdbms.rman, 11.2.0.3.0 ] , [ oracle.rdbms.util, 11.2.0.3.0 ] , [ oracle.rdbms.tg4msql, 11.2.0.3.0 ] , [ oracle.rdbms.dbscripts, 11.2.0.3.0 ] , [ oracle.xdk.rsf, 11.2.0.3.0 ] , [ oracle.rdbms.oci, 11.2.0.3.0 ] , [ oracle.sysman.console.db, 11.2.0.3.0 ] , [ oracle.ctx, 11.2.0.3.0 ] , [ oracle.network.listener, 11.2.0.3.0 ] , [ oracle.sysman.agent, 10.2.0.4.3 ] , [ oracle.rdbms.deconfig, 11.2.0.3.0 ] , [ oracle.rdbms.dv, 11.2.0.3.0 ] , [ oracle.rdbms.hsodbc, 11.2.0.3.0 ] , [ oracle.ons, 11.2.0.3.0 ] , [ oracle.install.deinstalltool, 11.2.0.3.0 ] , [ oracle.oraolap.api, 11.2.0.3.0 ] , [ oracle.oraolap, 11.2.0.3.0 ] , [ oracle.sdo.locator, 11.2.0.3.0 ] , [ oracle.ordim.server, 11.2.0.3.0 ] , [ oracle.sysman.oms.core, 10.2.0.4.4 ] , [ oracle.ldap.owm, 11.2.0.3.0 ] , [ oracle.rdbms.tg4db2, 11.2.0.3.0 ] , [ oracle.rdbms.tg4ifmx, 11.2.0.3.0 ] , [ oracle.rdbms.tg4sybs, 11.2.0.3.0 ] , [ oracle.rdbms.tg4tera, 11.2.0.3.0 ] , [ oracle.rdbms.scheduler, 11.2.0.3.0 ] , [ oracle.ovm, 11.2.0.3.0 ] , [ oracle.sysman.repository.core, 10.2.0.4.4 ] , [ oracle.marvel, 11.2.0.3.0 ] , [ oracle.xdk.parser.java, 11.2.0.3.0 ] , [ oracle.xdk, 11.2.0.3.0 ] , [ oracle.idm.oid, 11.2.0.3.0 ] , [ oracle.owb.rsf, 11.2.0.3.0 ] [Nov 5, 2013 10:52:41 AM]    --------------------- Patch conflict detection for apply patch --------------------- [Nov 5, 2013 10:52:41 AM]    Patch 17363844 is not subset of any other patch processed till now [Nov 5, 2013 10:52:41 AM]    Patch ID  17363844 [Nov 5, 2013 10:52:41 AM]    Patches that conflict: [  ] [Nov 5, 2013 10:52:41 AM]    Checking conflicts for patch: 17363844 [Nov 5, 2013 10:52:41 AM]    Checking conflicts/supersets for patch: 17363844 with patch:17363844 [Nov 5, 2013 10:52:41 AM]    Patch 17363844 is not subset of any other patch processed till now [Nov 5, 2013 10:52:41 AM]    Patch ID  17363844 [Nov 5, 2013 10:52:41 AM]    Patches that conflict: [  ] [Nov 5, 2013 10:52:41 AM]    Checking conflicts for patch: 17363844 [Nov 5, 2013 10:52:41 AM]    Checking conflicts/supersets for patch: 17363844 with patch:17363844 [Nov 5, 2013 10:52:41 AM]    To continue, OPatch will do the following:                              [Back up for restore]           : Back up 31 files for Oracle Home restore in case of patching error.                              [Back up for rollback]          : Back up 30 files for future patch rollback.                              [Pre-script processing]         : Execute pre script for patch [17363844].                              [Patch Oracle Home for apply]   : Copy 29 file(s) to Oracle Home;                                                                Archive 1 jar file(s) with 1 class file(s).                              [Update inventory for apply]    : Modify the inventory to record  patch [17363844].                              [Post-script processing]        : Execute post script for patch [17363844]. [Nov 5, 2013 10:52:41 AM]    All checks passed. [Nov 5, 2013 10:52:41 AM]    Need to look only in the OUI based Oracle Home to configure OCM [Nov 5, 2013 10:52:41 AM]    Current working directory is : C:\Oracle\Ora11_32\OPatch [Nov 5, 2013 10:52:41 AM]    platform specific OPatch with ocm.zip has been used [Nov 5, 2013 10:52:41 AM]    The ocm location is C:\Oracle\Ora11_32\OPatch\ocm\ocm.zip [Nov 5, 2013 10:52:41 AM]    ***************************************************************************                              Oracle Configuration Manager (OCM) is included with this release of OPatch.                              *************************************************************************** [Nov 5, 2013 10:52:41 AM]    OPatch will now install the Oracle Configuration Manager in "C:\Oracle\Ora11_32" . [Nov 5, 2013 10:52:41 AM]    OCM zip file to be installed is:"C:\Oracle\Ora11_32\OPatch\ocm\ocm.zip" [Nov 5, 2013 10:52:41 AM]    [Report: skip unzipping "C:\Oracle\Ora11_32\OPatch\ocm\ocm.zip"] [Nov 5, 2013 10:52:41 AM]    OPatch has successfully installed  Oracle Configuration Manager in "C:\Oracle\Ora11_32".                              Please refer log file for details. [Nov 5, 2013 10:52:41 AM]    OPatch will now configure the Oracle Configuration Manager in "C:\Oracle\Ora11_32" . Provide your email address to be informed of security issues, install and initiate Oracle Configuration Manager. Easier for you if you use your My Oracle Support Email address/User Name. Visit http://www.oracle.com/support/policies.html for details. Email address/User Name: Provide your My Oracle Support password to receive security updates via your My Oracle Support account.

Similar Messages

  • Why every time I try to open InDesign CC on Mac OS Maverick I get a "heap corruption detected free list canary is damaged" message and the application crashes?

    Why every time I try to open InDesign CC on Mac OS Maverick I get a "heap corruption detected free list canary is damaged" message and the application crashes?
    PL

    I am on Windows, but have a few saved Mac discussions that may help (or, may not... but free to read)
    Mac and Root User http://forums.adobe.com/thread/879931
    -and http://forums.adobe.com/thread/940869?tstart=0
    Troubleshooting guide for Mac freeze
    http://helpx.adobe.com/x-productkb/global/troubleshoot-system-errors-freezes-mac.html

  • Logic crashing - Heap corruption detected, free list canary is damaged -can anybody help?

    I updated to Mavericks and have Logic 10.0.4
    I keep getting crashes!!!!
    *** error for object 0x618000212330: Heap corruption detected, free list canary is damaged
    Can anybodt help pls.
    I have removed all my Waves plug ins - just have soundtoys now and Logic native.
    Nightmare as it keeps and keeps crashing! 255 times to date..
    Any pointers would be appreciated
    2009 Mac Pro 18GB Ram
    Nick

    Process:         Logic Pro X [756]
    Path:            /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Identifier:      com.apple.logic10
    Version:         10.0.4 (2911.63)
    Build Info:      MALogic-2911063000000000~16
    App Item ID:     634148309
    App External ID: 73352631
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [198]
    Responsible:     Logic Pro X [756]
    User ID:         501
    PlugIn Path:       /Library/Audio/Plug-Ins/Components/Maschine.component/Contents/MacOS/Maschine
    PlugIn Identifier: Maschine.MusicDevice.component
    PlugIn Version:    1.8.2 [R247] (1.8.2 [R247], Copyright © 2012 Native Instruments)
    Date/Time:       2013-11-26 16:11:08.476 -0800
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  B6EEE18D-EE3F-764E-594E-04215FBE31EF
    Sleep/Wake UUID: 08C5CE69-0AF2-41BB-9370-F15A0E97522D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    *** error for object 0x608001c10070: Heap corruption detected, free list canary is damaged
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff88da0866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff91cef35c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff90d0ebba abort + 125
    3   libsystem_malloc.dylib                  0x00007fff8aa9abf9 nanozone_error + 486
    4   libsystem_malloc.dylib                  0x00007fff8aa9adbb _nano_malloc_check_clear + 445
    5   libsystem_malloc.dylib                  0x00007fff8aa996c4 nano_malloc + 35
    6   libsystem_malloc.dylib                  0x00007fff8aa9787c malloc_zone_malloc + 71
    7   libsystem_malloc.dylib                  0x00007fff8aa98290 malloc + 42
    8   com.apple.CoreFoundation                0x00007fff8a89c69b __CFDataInit + 731
    9   com.apple.CoreFoundation                0x00007fff8a8ea7dd CFStringCreateArrayWithFindResults + 253
    10  com.apple.CoreFoundation                0x00007fff8a8ea5c3 CFStringCreateArrayBySeparatingStrings + 67
    11  com.apple.CoreFoundation                0x00007fff8a88a6b6 _CFURLInitWithFileSystemPath + 614
    12  com.apple.CoreFoundation                0x00007fff8a88a420 CFURLCreateWithFileSystemPath + 128
    13  Maschine.MusicDevice.component          0x00000001221d6fbf NI::GP::FileName::init(bool) + 847
    14  Maschine.MusicDevice.component          0x00000001221d85fe NI::GP::FileName::trySetFull(NI::GP::String const&) + 126
    15  Maschine.MusicDevice.component          0x00000001229a80a4 BFileName::ToGPFileNamePreComposed() const + 148
    16  Maschine.MusicDevice.component          0x0000000122d5788c KONTAKT_KIL_INT::InstanceInt::GetFileName(int) + 76
    17  Maschine.MusicDevice.component          0x000000012330f388 NI::GB::DESC::Zone::getFileName() const + 56
    18  Maschine.MusicDevice.component          0x0000000123315bf3 NI::GB::EAL::Zone::removeSample() + 483
    19  Maschine.MusicDevice.component          0x0000000123315792 NI::GB::EAL::Zone::reset() + 370
    20  Maschine.MusicDevice.component          0x00000001231279e6 NI::KORE::EAL::ObjectContainer<NI::GB::EAL::Sampler, NI::GB::EAL::Zone, NI::GB::DESC::Sampler, NI::GB::DESC::Zone>::removeChild(unsigned long) + 518
    21  Maschine.MusicDevice.component          0x000000012320039e NI::GB::EAL::Sampler::removeZoneByIndex(unsigned int) + 926
    22  Maschine.MusicDevice.component          0x00000001231ffea6 NI::GB::EAL::Sampler::removeZoneFromId(NI::KORE::OID<NI::GB::DESC::Zone>) + 518
    23  Maschine.MusicDevice.component          0x00000001231fed30 NI::GB::EAL::Sampler::removeZone(NI::GB::EAL::Zone) + 144
    24  Maschine.MusicDevice.component          0x00000001231fea58 NI::GB::EAL::Sampler::reset() + 616
    25  Maschine.MusicDevice.component          0x000000012336e627 NI::KORE::EAL::ObjectFactory::Record<NI::GB::EAL::ModulatableModule<NI::GB::EAL ::Sampler> >::resetModule(NI::KORE::EAL::ModuleAccessor&) const + 215
    26  Maschine.MusicDevice.component          0x00000001228b79e2 NI::KORE::EAL::Slot::deleteModule() + 434
    27  Maschine.MusicDevice.component          0x00000001228b955a NI::KORE::EAL::Slot::reset() + 170
    28  Maschine.MusicDevice.component          0x0000000122e66275 NI::GB::EAL::SignalChain::reset() + 421
    29  Maschine.MusicDevice.component          0x00000001232bf129 NI::GB::EAL::Track::reset() + 681
    30  Maschine.MusicDevice.component          0x00000001232cff9f NI::GB::EAL::TrackMgr::reset() + 335
    31  Maschine.MusicDevice.component          0x0000000122ec45b4 NI::GB::EAL::Group::reset() + 180
    32  Maschine.MusicDevice.component          0x00000001233746bb NI::KORE::EAL::ObjectFactory::Record<NI::GB::EAL::Group>::resetModule(NI::KORE: :EAL::ModuleAccessor&) const + 187
    33  Maschine.MusicDevice.component          0x00000001228b81f2 NI::KORE::EAL::Slot::insertModule(NI::KORE::PUBLIC::IntWrapperBase<NI::KORE::PU BLIC::ModuleTypeTrait>, bool) + 530
    34  Maschine.MusicDevice.component          0x0000000122f49258 bool NI::GB::DETAIL::loadSound<NI::KORE::STREAM::StreamObjectDef<1734832672u, NI::GB::STREAM::MaschineSound, (NI::KORE::STREAM::eStreamAsChunkFlag)0, NI::GB::STREAM::GroupContentManager, NI::GB::STREAM::GroupVersionizer>, NI::GB::EAL::Group>(NI::GP::FileName const&, NI::KORE::EAL::Slot&, NI::KORE::PUBLIC::IntWrapperBase<NI::KORE::PUBLIC::ModuleTypeTrait>, bool, bool, NI::KORE::SoundFileBase::eError&, NI::GP::String&, NI::AB::eThread) + 3096
    35  Maschine.MusicDevice.component          0x0000000122f42663 NI::GB::DETAIL::loadSoundForSlot(NI::GP::FileName const&, NI::KORE::EAL::Slot&, bool, bool, NI::KORE::SoundFileBase::eError&, NI::GP::String&, NI::AB::eThread) + 915
    36  Maschine.MusicDevice.component          0x0000000122f45ac0 NI::GB::Interface_EAL_FILE::loadSoundAndReportError(NI::GP::FileName const&, NI::KORE::EAL::Slot&, unsigned int, bool, bool) + 112
    37  Maschine.MusicDevice.component          0x0000000122daf2a0 NI::GB::Instance::CmdFileLoad(NI::KORE::Instance::eMessageContext, bool, NI::GB::Instance::eLayer) + 1136
    38  Maschine.MusicDevice.component          0x0000000122e42c63 NI::GB::GUI::COMMON_DETAIL::MenuAction<NI::GB::EAL::Group>::open(NI::GB::Instan ce*) + 67
    39  Maschine.MusicDevice.component          0x0000000122510146 NI::NWL::PopupMenu::autoHide(NI::NWL::MenuBar::tMenuItem const&) + 182
    40  Maschine.MusicDevice.component          0x00000001224bfd32 NI::NWL::Button::onMouse(unsigned int, NI::UIA::MouseEventData*) + 578
    41  Maschine.MusicDevice.component          0x00000001224b36cd NI::NWL::Pane::onMouse(unsigned int, NI::UIA::MouseEventData*) + 2029
    42  Maschine.MusicDevice.component          0x00000001224b2d8e NI::NWL::Pane::onEvent(unsigned int, NI::UIA::EventData*) + 46
    43  Maschine.MusicDevice.component          0x0000000121e778c7 NI::NWL::Window<NI::UIA::AUWindow>::onEvent(unsigned int, NI::UIA::EventData*) + 1047
    44  Maschine.MusicDevice.component          0x0000000121e7749b non-virtual thunk to NI::GB::GrooveBoxEditor::onEvent(unsigned int, NI::UIA::EventData*) + 59
    45  Maschine.MusicDevice.component          0x000000012222b0ea NI::UIA::EventTarget::sendEvent(unsigned int, NI::UIA::EventData*) + 10
    46  Maschine.MusicDevice.component          0x00000001222585a3 NI::UIA::DETAIL::WindowImpl::sendEvent(unsigned int, NI::UIA::EventData*, bool) + 35
    47  Maschine.MusicDevice.component          0x000000012222443c NI::UIA::COCOA::View::handleMouseButtonEvent(objc_object*, NSEvent*, NI::UIA::eMouseButton, NI::UIA::eMouseButtonState) + 380
    48  Maschine.MusicDevice.component          0x000000012221f526 NI::UIA::COCOA::View::mouseUp(objc_object*, objc_selector*, NSEvent*) + 38
    49  com.apple.AppKit                        0x00007fff8d31c3f5 -[NSWindow sendEvent:] + 781
    50  com.apple.logic10                       0x0000000101a41526 0x10107f000 + 10233126
    51  com.apple.logic10                       0x0000000101856723 0x10107f000 + 8222499
    52  com.apple.AppKit                        0x00007fff8d2bd744 -[NSApplication sendEvent:] + 2021
    53  com.apple.logic10                       0x000000010153326b 0x10107f000 + 4932203
    54  com.apple.logic10                       0x00000001015331cd 0x10107f000 + 4932045
    55  com.apple.logic10                       0x000000010152f947 0x10107f000 + 4917575
    56  com.apple.logic10                       0x000000010153324a 0x10107f000 + 4932170
    57  com.apple.logic10                       0x00000001015331cd 0x10107f000 + 4932045
    58  com.apple.AppKit                        0x00007fff8d10da29 -[NSApplication run] + 646
    59  com.apple.AppKit                        0x00007fff8d0f8803 NSApplicationMain + 940
    60  com.apple.logic10                       0x00000001015046d9 0x10107f000 + 4740825
    61  com.apple.logic10                       0x0000000101082044 0x10107f000 + 12356
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff88da1662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8f95743d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8f957152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff88a61907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff88a6170b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apogee.DuetUSBPlugIn                0x00000001094fa6e3 apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 59
    3   com.apogee.DuetUSBPlugIn                0x00000001094fa9a3 ClientBiDirConnection::HandlePropertyChanges() + 33
    4   com.apogee.DuetUSBPlugIn                0x00000001094fac64 PthreadHandlingPropertyChanges(void*) + 14
    5   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apogee.DuetUSBPlugIn                0x00000001094fa326 MessageTX::TXThread() + 136
    3   com.apogee.DuetUSBPlugIn                0x00000001094fa600 TransmitThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff88da091a __recvfrom + 10
    1   com.apogee.DuetUSBPlugIn                0x00000001094faf5f ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 37
    2   com.apogee.DuetUSBPlugIn                0x00000001094f986f MessageRX::RXThread() + 147
    3   com.apogee.DuetUSBPlugIn                0x00000001094f9d08 ReceiveThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff88da09aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8a932d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff88a63a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x00007fff88aac02b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.logic10                       0x000000010125d7af 0x10107f000 + 1959855
    8   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.audio.midi.CoreMIDI           0x0000000102ace5a7 XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
    3   com.apple.audio.midi.CoreMIDI           0x0000000102ae91c1 MIDIProcess::RunMIDIInThread() + 121
    4   com.apple.audio.midi.CoreMIDI           0x0000000102acf63c XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI           0x0000000102acf2a1 CAPThread::Entry(CAPThread*) + 109
    6   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 9:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x000000010464bc53 ExtendedAudioFileScheduler::WorkerThreadProc() + 115
    3   com.apple.music.apps.MAFiles            0x000000010464b909 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 10:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x000000010464bc53 ExtendedAudioFileScheduler::WorkerThreadProc() + 115
    3   com.apple.music.apps.MAFiles            0x000000010464b909 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 11:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.audio.CoreAudio               0x00007fff85bec918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff85bec8a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff85beb02e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio               0x00007fff85beabcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio               0x00007fff85beaa8d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 12:: ProcessThread1/1024
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x0000000104737f23 MD::CallProcessThread1(void*) + 563
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 13:: ProcessThread2/1024
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x00000001047381d1 MD::CallProcessThread2(void*) + 577
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 14:: ProcessThread15/1024
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x000000010473a321 MD::CallProcessThread15(void*) + 577
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8d2ba1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 16:: FileIOThread
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAAudioEngine          0x0000000104753a65 0x104727000 + 182885
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 17:: SeqTimer
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c7e3c37 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c7e3859 TSWaitOnSemaphoreCommon + 424
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c7c5e09 TimerThread + 87
    5   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff88da09aa __select + 10
    1   com.apple.logic10                       0x00000001018df394 0x10107f000 + 8782740
    2   com.apple.logic10                       0x00000001014e7d9d 0x10107f000 + 4623773
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 19:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c77 _pthread_cond_wait + 787
    2   com.apple.CoreVideo                     0x00007fff89a81464 CVDisplayLink::waitUntil(unsigned long long) + 244
    3   com.apple.CoreVideo                     0x00007fff89a80998 CVDisplayLink::runIOThread() + 496
    4   com.apple.CoreVideo                     0x00007fff89a8078f startIOThread(void*) + 147
    5   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 20:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.apple.CoreVideo                     0x00007fff89a80a38 CVDisplayLink::runIOThread() + 656
    3   com.apple.CoreVideo                     0x00007fff89a8078f startIOThread(void*) + 147
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 21:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff88a63a7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.AppKit                        0x00007fff8d3c9f06 -[NSAnimation(NSInternal) _runBlocking] + 366
    7   com.apple.AppKit                        0x00007fff8d3c9d76 -[NSAnimation(NSInternal) _animationThread] + 73
    8   libdispatch.dylib                       0x00007fff8f9581d7 _dispatch_call_block_and_release + 12
    9   libdispatch.dylib                       0x00007fff8f9552ad _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff8f95709e _dispatch_root_queue_drain + 326
    11  libdispatch.dylib                       0x00007fff8f958193 _dispatch_worker_thread2 + 40
    12  libsystem_pthread.dylib                 0x00007fff91cefef8 _pthread_wqthread + 314
    13  libsystem_pthread.dylib                 0x00007fff91cf2fb9 start_wqthread + 13
    Thread 22:: com.apple.coreaudio.AQClient
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.audio.toolbox.AudioToolbox          0x00007fff889476c9 GenericRunLoopThread::Entry(void*) + 187
    6   com.apple.audio.toolbox.AudioToolbox          0x00007fff88900e5d CAPThread::Entry(CAPThread*) + 109
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 23:: SC3 Thread
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   Maschine.MusicDevice.component          0x0000000122484932 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::thread_info&, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&, boost::system::error_code const&) + 146
    3   Maschine.MusicDevice.component          0x00000001224844ad boost::asio::detail::task_io_service::run(boost::system::error_code&) + 317
    4   Maschine.MusicDevice.component          0x000000012248400c NI::SC3::Network::workerThread() + 60
    5   Maschine.MusicDevice.component          0x0000000122485565 NI::PA::ThreadImpl::run() + 69
    6   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 24:: SC3 Thread
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   Maschine.MusicDevice.component          0x0000000122484932 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::thread_info&, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&, boost::system::error_code const&) + 146
    3   Maschine.MusicDevice.component          0x00000001224844ad boost::asio::detail::task_io_service::run(boost::system::error_code&) + 317
    4   Maschine.MusicDevice.component          0x000000012249536c NI::SC3::TaskScheduler::workerThread() + 60
    5   Maschine.MusicDevice.component          0x0000000122485565 NI::PA::ThreadImpl::run() + 69
    6   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 25:: Maschine Controller Thread
    0   libsystem_kernel.dylib                  0x00007fff88d9ca6e semaphore_timedwait_trap + 10
    1   Maschine.MusicDevice.component          0x00000001221ed90a NI::GP::HEvent::wait(int) + 74
    2   Maschine.MusicDevice.component          0x00000001234b5f54 NI::GB::HW::GBXTimerThread::run() + 228
    3   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 26:: Prehear Work Thread
    0   libsystem_kernel.dylib                  0x00007fff88d9ca6e semaphore_timedwait_trap + 10
    1   Maschine.MusicDevice.component          0x00000001221ed90a NI::GP::HEvent::wait(int) + 74
    2   Maschine.MusicDevice.component          0x00000001230f34b4 NI::GB::Prehear::WorkThread::run() + 148
    3   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 27:: Prehear GC Thread
    0   libsystem_kernel.dylib                  0x00007fff88da0a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff90d2de60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff90d2dd52 usleep + 54
    3   Maschine.MusicDevice.component          0x00000001230f2caa NI::GB::Prehear::GCThread::run() + 26
    4   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    5   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 28:: Maschine Controller Thread
    0   libsystem_kernel.dylib                  0x00007fff88d9ca6e semaphore_timedwait_trap + 10
    1   Maschine.MusicDevice.component          0x00000001221ed90a NI::GP::HEvent::wait(int) + 74
    2   Maschine.MusicDevice.component          0x00000001234b5f54 NI::GB::HW::GBXTimerThread::run() + 228
    3   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 29:: Maschine Controller Thread
    0   libsystem_kernel.dylib                  0x00007fff88d9ca6e semaphore_timedwait_trap + 10
    1   Maschine.MusicDevice.component          0x00000001221ed90a NI::GP::HEvent::wait(int) + 74
    2   Maschine.MusicDevice.component          0x00000001234b5f54 NI::GB::HW::GBXTimerThread::run() + 228
    3   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 30:: Script
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Maschine.MusicDevice.component          0x0000000122a9c908 BEngine::SetEngineParThreadProc() + 72
    2   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 31:: Disk
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Maschine.MusicDevice.component          0x0000000122af59bb BStreamingEngine::run() + 139
    2   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 32:: BGLoading
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Maschine.MusicDevice.component          0x0000000122d291fc BBackgroundLoader::run() + 44
    2   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    3   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 33:: NIHWMaschineControllerMK20002Notification
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8a99b9d1 CFRunLoopRun + 97
    6   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 34:: NIHWMaschineMikroMK20002Notification
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8a99b9d1 CFRunLoopRun + 97
    6   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 35:: NIHWMaschineController0002Notification
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8a99b9d1 CFRunLoopRun + 97
    6   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 36:: NIHWMaschineMikro0002Notification
    0   libsystem_kernel.dylib                  0x00007fff88d9ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88d9bd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8a8e7315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8a8e6939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8a8e6275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8a99b9d1 CFRunLoopRun + 97
    6   Maschine.MusicDevice.component          0x00000001221edde0 NI::GP::Thread::execute(void*) + 48
    7   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 37:: SC3 Thread
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   Kontakt 5.MusicDevice.component          0x0000000140835745 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 901
    3   Kontakt 5.MusicDevice.component          0x00000001408350f9 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 297
    4   Kontakt 5.MusicDevice.component          0x00000001408bd50f NI::SC3::Network::workerThread() + 47
    5   Kontakt 5.MusicDevice.component          0x0000000140831e35 NI::PA::ThreadImpl::run() + 69
    6   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    7   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    8   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 38:: SC3 Thread
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   Kontakt 5.MusicDevice.component          0x0000000140835745 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 901
    3   Kontakt 5.MusicDevice.component          0x00000001408350f9 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 297
    4   Kontakt 5.MusicDevice.component          0x00000001408e369c NI::SC3::TaskScheduler::workerThread() + 60
    5   Kontakt 5.MusicDevice.component          0x0000000140831e35 NI::PA::ThreadImpl::run() + 69
    6   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    7   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    8   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 39:: SC3 Thread
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   Kontakt 5.MusicDevice.component          0x0000000140835745 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 901
    3   Kontakt 5.MusicDevice.component          0x00000001408350f9 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 297
    4   Kontakt 5.MusicDevice.component          0x00000001408e369c NI::SC3::TaskScheduler::workerThread() + 60
    5   Kontakt 5.MusicDevice.component          0x0000000140831e35 NI::PA::ThreadImpl::run() + 69
    6   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    7   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    8   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 40:: bg jobs
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component          0x000000014041811c SerialJobBGThread::run() + 92
    2   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    3   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 41:: AuxProcess #1
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component          0x0000000140266e11 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    3   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 42:: AuxProcess #2
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component          0x0000000140266e11 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    3   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 43:: AuxProcess #3
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component          0x0000000140266e11 BEngine::AuxProcessThreadProc(int) + 113
    2   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    3   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 44:: Script
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component          0x00000001402148db BEngine::SetEngineParThreadProc() + 91
    2   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    3   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 45:: Disk
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component          0x000000014026c6ee BStreamingEngine::run() + 142
    2   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    3   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 46:: BGLoading
    0   libsystem_kernel.dylib                  0x00007fff88d9ca56 semaphore_wait_trap + 10
    1   Kontakt 5.MusicDevice.component          0x000000014042a6fc BBackgroundLoader::run() + 44
    2   Kontakt 5.MusicDevice.component          0x000000013fd7e840 NI::GP::Thread::implExecute() + 16
    3   Kontakt 5.MusicDevice.component          0x000000013fd7e52d NI::GP::Thread::execute(void*) + 45
    4   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 47:
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.u-he.Diva.au                        0x0000000146e59eeb non-virtual thunk to boost::exception_detail::error_info_injector<std::runtime_error>::~error_info_i njector() + 17051
    3   com.u-he.Diva.au                        0x0000000146da59bb AudioModulesAUEntry + 275163
    4   com.u-he.Diva.au                        0x0000000146e53835 boost::thread::start_thread() + 563
    5   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 48:
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.u-he.Diva.au                        0x0000000146e59eeb non-virtual thunk to boost::exception_detail::error_info_injector<std::runtime_error>::~error_info_i njector() + 17051
    3   com.u-he.Diva.au                        0x0000000146da59bb AudioModulesAUEntry + 275163
    4   com.u-he.Diva.au                        0x0000000146e53835 boost::thread::start_thread() + 563
    5   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 49:
    0   libsystem_kernel.dylib                  0x00007fff88da0716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff91cf0c3b _pthread_cond_wait + 727
    2   com.u-he.Diva.au                        0x0000000146e59eeb non-virtual thunk to boost::exception_detail::error_info_injector<std::runtime_error>::~error_info_i njector() + 17051
    3   com.u-he.Diva.au                        0x0000000146da59bb AudioModulesAUEntry + 275163
    4   com.u-he.Diva.au                        0x0000000146e53835 boost::thread::start_thread() + 563
    5   libsystem_pthread.dylib                 0x00007fff91cee899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91cee72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91cf2fc9 thread_start + 13
    Thread 50:
    0   libsystem_kernel.dylib                  0x00007fff8

  • Hardware error? umem: heap corruption detected

    hi all,
    on one of our servers (t5240, ldom) just began occuring few days ago in 50% of creating zone attempts following error:
    [NOTICE: Zone rebooting]
    SunOS Release 5.10 Version Generic_141444-09 64-bit
    Copyright 1983-2009 Sun Microsystems, Inc.  All rights reserved.
    Use is subject to license terms.
    Hostname: web0
    Reading ZFS config: done.
    umem allocator: boundary tag corrupted
    bcp ^ bxstat = a110c8ed, should be f4eef4ee
    buffer=c28720  bufctl=c26960  cache: umem_alloc_32
    previous transaction on buffer c28720:
    thread=ca  time=T-0.003097460  slab=b99b30  cache: umem_alloc_32
    libumem.so.1'umem_cache_alloc+0x210
    libumem.so.1'umem_alloc+0x60
    libumem.so.1'malloc+0x28
    libuutil.so.1'uu_zalloc+0x4
    libuutil.so.1'uu_msprintf+0x34
    svc.startd'?? (0x2e14c)
    svc.startd'method_run+0x520
    svc.startd'method_thread+0x15c
    libc.so.1'?? (0xff1c8a20)
    umem: heap corruption detected
    stack trace:
    libumem.so.1'?? (0xff29c64c)
    libumem.so.1'?? (0xff29d6bc)
    libumem.so.1'umem_cache_alloc+0x210
    libumem.so.1'umem_alloc+0x60
    libumem.so.1'malloc+0x28
    libuutil.so.1'uu_zalloc+0x4
    libscf.so.1'scf_pg_create+0x4
    librestart.so.1'restarter_store_contract+0x4c
    svc.startd'?? (0x2dae0)
    svc.startd'method_run+0x590
    svc.startd'method_thread+0x15c
    libc.so.1'?? (0xff1c8a20)
    Feb 15 13:29:23 svc.startd[5990]: restarting after interruption
    Feb 15 13:29:25 svc.startd[5990]: svc:/system/cron:default: Method "/lib/svc/method/svc-cron" failed with exit status 99.
    Feb 15 13:29:25 svc.startd[5990]: system/cron:default failed: transitioned to maintenance (see 'svcs -xv' for details).. i rollbacked the global zones' root to 100% healthy snapshot and did /reconfigure reboot, i also rollbacked a ztemplate zones' (the zone from which are other zones cloned) to initial snapshot .. but this still occurs randomly in 50% of cases ..
    any idea what it is ??
    thanks and regards
    ave, daniel
    ps. i have also investigatated using fmadm, ipmitool and SP> for some HW error, but with no success ..
    Edited by: dpecka on Feb 16, 2010 12:43 AM

    Hi George2,
    The error message appears in the popup "Microsoft VC++ Debug Library" because you probably have Just-In-Time (JIT) debugging enabled in Visual Studio.  Please follow the linked instructions to disable debugging so that we can see where the crash occurs.  Once that's complete and you obtain theLabVIEW crash log, we can continue attacking the issue.  Goodnight!
    Peter K.
    National Instruments

  • Heap corruption detected, free list canary is damag

    I use Lightroom 4 on a iMac. Lightroom will not start and gives the trouble 'Heap corruption detected, free list canary is damaged' . Is there a solution? Reinstall did not work ...

    I use Lightroom 4 on a iMac. Lightroom will not start and gives the trouble 'Heap corruption detected, free list canary is damaged' . Is there a solution? Reinstall did not work ...

  • Logic x crashes... Heap corruption detected, free list canary is damaged

    Hi
    I have been using logic Pro x sense the first week it came out and the past few days i can not get it to open with out crashing immediatley. Once it loads and shows the logic file i loaded the pinwheel somes up and then it crashes. I have tried reinstalling now three times. 2 days before it started crashing i have been having issues with my Tascam Driver and started using the app IPtouch from my phone for logic. Please if anyone can help it would be greatly appreciated.
    I am running on a mac mini with i5

    I'd remove the Tascam driver and retry. If this doesn't help, remove the IPtouch and retry,
    If it crashes, let the crash reporter send the log to Apple.
    If not, report back here. ;-)
    Instead of the IPtouch you might try Apple's own Logic remote app. Has a lot functionality beyond the usual remoting, like documentation, that follow your work, like QuickHelp.
    Best,
    DaCaptain

  • Logic X Application Specific Information: abort() called *** error for object 0x608001600c20: Heap corruption detected, free list canary is damaged

    Can anyone please tell me what this error message means? And....how to fix this problem. Thanks.

    I'd remove the Tascam driver and retry. If this doesn't help, remove the IPtouch and retry,
    If it crashes, let the crash reporter send the log to Apple.
    If not, report back here. ;-)
    Instead of the IPtouch you might try Apple's own Logic remote app. Has a lot functionality beyond the usual remoting, like documentation, that follow your work, like QuickHelp.
    Best,
    DaCaptain

  • GetString Heap Corruption

    Hello,
    I've been searching through lots of threads regarding the "getString heap corruption" problem but i could not find any solution for this issue so here is a new thread.
    Environment:
    Instant Client 10.2.0.4, installed on C:\Oracle\instantclient-sdk-win32-10.2.0.4 and C:\Oracle\instantclient-basic-win32-10.2.0.4\
    VC++ 2005 with include folder C:\Oracle\instantclient-sdk-win32-10.2.0.4\instantclient_10_2\sdk\include and lib folder C:\Oracle\instantclient-sdk-win32-10.2.0.4\instantclient_10_2\sdk\lib\msvc.
    WinXP SP3 with Path environment variable having C:\Oracle\instantclient-basic-win32-10.2.0.4\ as the first entry.
    My sample is compiled in Release mode and linked with oraocci10.lib.
    The OCCI getString function generates a heap corruption every time she tries to fetch more then 16 bytes.
    Applications running in Release mode are capable to continue the job but obviously they will crash one day.
    If we use Microsoft Application Verifier an assertion is generated when this heap corruption is detected.
    I wonder if there is any solution for this issue. Thanks.
    Edited by: hfroliveira on Mar 9, 2010 2:36 AM

    Ross
    I have seen problems similar to what you are describing when a certain flag in VS is not set correctly. In VS, select the application you created and go to
    Properties->Configuration Properties->C/C++->Code Generation
    For the argument Runtime Library set it to Multi-threaded Debug DLL (/MDd) for Debug and Multi-threaded DLL (/MD) for Release.
    Lauren Foutz

  • Heap corruption only when compiling with VS 2013

    My co-worker can compile and run our program using MFC fine in VS 2010 on his computer, but when we run my version of the program compiled in VS 2013 on my computer, there is heap corruption.
    Does anyone have an idea of what could cause this or an effective way to debug this error in VS 2013? I have looked into the memory tools, but the heap corruption does not appear to occur at the same address all the time. I've also tried to locate the build
    tools for 2010, but I have not been able to get the MFC components to compile our program in 2013 with 2010 build tools.
    Thank you sincerely!

    Hi,
    Here is a blog about Debugging Heap corruption with Application Verifier and Debugdiag.
    http://blogs.msdn.com/b/lagdas/archive/2008/06/24/debugging-heap-corruption-with-application-verifier-and-debugdiag.aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Memory corruption detected with linux 3.9.2-1

    I have this message with dmesg and kernel 3.9.2-1, it disappears with kernel downgrade (3.8.11), what can i do ??
    p.s.
    the system seems to be stable.
    [   61.584649] Corrupted low memory at ffff880000006598 (6598 phys) = ff0000000000
    [   61.584695] ------------[ cut here ]------------
    [   61.584709] WARNING: at arch/x86/kernel/check.c:140 check_for_bios_corruption+0x10f/0x120()
    [   61.584712] Hardware name: HP Pavilion dv6 Notebook PC
    [   61.584714] Memory corruption detected in low memory
    [   61.584719] Modules linked in: fuse uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core joydev videodev media hp_wmi sparse_keymap iTCO_wdt iTCO_vendor_support arc4 snd_hda_codec_hdmi intel_powerclamp coretemp microcode psmouse serio_raw pcspkr i2c_i801 intel_ips acpi_cpufreq mperf ath9k ath9k_common ath9k_hw ath mac80211 cfg80211 r8168(O) rfkill thermal wmi snd_hda_codec_idt battery snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc hp_accel snd_timer lis3lv02d input_polldev snd ac evdev mei soundcore lpc_ich processor radeon ttm nfs lockd sunrpc fscache ext4 crc16 mbcache jbd2 sr_mod cdrom sd_mod ahci libahci ehci_pci ehci_hcd libata scsi_mod usbcore usb_common i915 video button i2c_algo_bit intel_agp intel_gtt drm_kms_helper drm i2c_core
    [   61.584832] Pid: 23, comm: kworker/0:1 Tainted: G           O 3.9.2-1-ARCH #1
    [   61.584835] Call Trace:
    [   61.584845]  [<ffffffff81058090>] warn_slowpath_common+0x70/0xa0
    [   61.584851]  [<ffffffff8105810c>] warn_slowpath_fmt+0x4c/0x50
    [   61.584858]  [<ffffffff8104543f>] check_for_bios_corruption+0x10f/0x120
    [   61.584865]  [<ffffffff8104545e>] check_corruption+0xe/0x40
    [   61.584873]  [<ffffffff81075e30>] process_one_work+0x170/0x440
    [   61.584880]  [<ffffffff81076905>] worker_thread+0x115/0x3d0
    [   61.584886]  [<ffffffff810767f0>] ? manage_workers+0x340/0x340
    [   61.584892]  [<ffffffff8107b5d0>] kthread+0xc0/0xd0
    [   61.584898]  [<ffffffff8107b510>] ? kthread_create_on_node+0x120/0x120
    [   61.584905]  [<ffffffff814d96ac>] ret_from_fork+0x7c/0xb0
    [   61.584910]  [<ffffffff8107b510>] ? kthread_create_on_node+0x120/0x120
    [   61.584914] ---[ end trace 1563130596fe98e7 ]---

    Nekos wrote:
    I have this message with dmesg and kernel 3.9.2-1, it disappears with kernel downgrade (3.8.11), what can i do ??
    p.s.
    the system seems to be stable.
    Well, the pithy answer would be to buy a computer from a vendor who supports free operating systems.
    Of course, I own and love my DV4.
    What does it mean?  Some BIOS implementations use areas of low memory without properly allocating it (letting the operating system know it is in use).  Windows just does not use that area of memory, and some vendors do a sloppy job in their software quality; it only has to work with Redmond code, so why fix it?
    Linux is forced to implement a bunch of ridiculous hacks to work around low quality hardware and firmware.  You found one.  The kernel was watching that memory to see if it could be trusted.  Something changed that memory when nothing (in the kernel's view) should have touched it.  Since it changed, the kernel has taken note that that memory should not be trusted.  Kind of analogous to finding a bad block on a disk drive and subsequently ignoring it by adding it to a list of bad blocks.
    So, aside from sucking it up because you lost some usable memory, you need do nothing.
    EDIT: BTW, it probably means the new kernel is more stable.
    Last edited by ewaller (2013-05-16 15:03:00)

  • Heap Corruption in ODBC 10.2.0.3 driver

    Howdy,
    I'm writing a piece of middleware that takes incoming requests and translates them connects to one of several back-ends: MSSQL, DB2, and Oracle. I've had a tremendous amount of diffficulty with the Oracle ODBC drivers.
    I am using the 10g instant client, but have had the same problem with the full client install. (I have installed Oracle pieces many, many times now.)
    I am developing in C++ using VC2K5 talking straight ODBC. The current problem is that calling SQLDriverConnect in a debug build always brings up a dialog box that says:
    Windows has triggered a breakpoint in OracleBindProblem.exe.
    This may be due to a corruption of the heap, and indicates a bug in OracleBindProblem.exe or any of the DLLs it has loaded.
    The output window may have more diagnostic information
    Boundschecker reports that this comes from a free that is not at the top of the alloc'd block coming from OraOCIEI10.dll (which VC debug runtime sees as a heap corruption, since the block headers aren't correct in the free).
    Is anyone else having this problem? Is there a fix? The app seems to continue correctly after this, but this is concerning for 2 reasons:
    1) Every time I connect, my debug run stops, which means I can't automate anything in debug, makes debugging really tough, and also makes handing the debug off to QA impossible. Since I use ASSERT's all over, being able to run the debug in test is pretty important.
    2) It's a HEAP CORRUPTION. Even if this is intentional ("clever" pointer math), it's pretty dangerous. And since it doesn't happen with previous drivers, I suspect it is not intentional.
    I've narrowed the problem down through a very small test app. I'd be happy to post the code if anyone is interested.
    I had to move to 10.2.0.3 because of a bug with bound parameters and keyset cursors in 10.1. I had to move to 10.1 because of an issue regarding DSN-less connections.
    Which brings me to another question I'd really appreciate insight on. Are the Oracle ODBC drivers a lost cause? I truly have never had a more negative initial experience with a piece of software as I have had over the last 2 weeks with these Oracle drivers. (Keep in mind that the MSSQL & DB2 stuff is working fine.) I have spent 100% of my time for two weeks trying to work around defects. Does Oracle not care, or are they incompetent when it comes to ODBC, or am I just having a run of bad luck? I'm really not trying to flame; I just really would appreciate insight. I'm new to Oracle, so I don't want to spend the next month finding out that I have to go with a 3rd party. (BTW, I tested a very famous third-party driver, and everything worked fine; the problem is that I'm sure my contracting employer will not pay the licensing fees unless there simply is no other alternative.)
    Unfortunately, since I'm just a developer trying to allow folks to use Oracle when they purchase our software (which is very popular in Europe), I don't have a support contract, which I understand is required to see the list of known defects. Have I misunderstood this? Is there a way to get current known defect info outside of metalink?
    Thanks,
    Ken

    Update for future reference:
    Finally got a metalink account and ran with the latest instantclient patch. This seemed to stop the heap corruption problem.

  • Runtime Corruption detected on Macintosh Hd

    Runtime Corruption detected on Macintosh Hd, fsck will be forced on next mount.
    Hfs_swap_BTDNode:record #-1 invalid offset (0x0000)
    Hfs: node=14669 fileID=4 volume=Macintosh HD device=/dev/disk0s2
                   0 [level 3] [ReadUID 0] [Facility com.apple.system.fs] [Errtype FS] [MountPT /]
    What does this mean and how do I fix it? It came up during safe boot which I used because I have the gray screen with apple logo and waiting that won't let me log all the way onto the computer.

    It means your drive has malfunctioned. Ideally you should replace it. If you prefer to risk continued use, you should erase it and restore from a backup.

  • Hfs: Runtime corruption detected on my external Back up disk

    Using Drive Genius 3 on my iMac.
    I received an email from this application with Re: Drive Genius: DrivePulse™ Drive Integrity Warning.
    The message states:
    A potentially critical system error has occurred:
    hfs: Runtime corruption detected on FreeAgent GoFlex Drive, fsck will be forced on next mount.
    The volume should be repaired as soon as possible.
    How can this be done?

    Using Disk Utility to verify or repair disks
    27" i7 iMac (Mid 2011) refurb, OS X Mavericks (10.9.4), ML & SL, G4 450 MP w/Leopard, 9.2.2

  • Runtime corruption detected on Macintosh HD, fsck will be forced on next mount

    I encountered this message when i attempted to follow the Command + S upon bootup because everytime I login, it will go back to the login screen.

    Do you have an up to date backup? Your HDD is failing and needs to be replaced.
    Runtime Corruption detected on Macintosh Hd

  • Heap corruption in mulithreaded program

    Hi,
    We have a big mulithreaded program (on Solaris 8) which crashes randomly. The crash location varies every time. But, the top of the back trace is more or less the same every time. Is it heap corruption OR any known bugs in the libraries or platform OR ....? How to debug this kind of crashes ?
    ff14262c realfree (1194f2f8, ff1c2858, ff1bc008, 119496f8, 5c01, 11949700) + 220
    ff142d80 cleanfree (0, ff1bc008, ff1c27cc, ff1c284c, ff1c2844, 0) + 58
    ff141eb4 mallocunlocked (32, ff021600, ff1bc008, 38, 0, 0) + f0
    ff141da8 malloc (32, 7, 38d33, f8cfbac0, 0, 0) + 20
    ff1d7078 void*operator new(unsigned) (32, 268078, 0, 137d4, ff1ea824, 30) + 2c
    003f2cd4 __rwstd::__string_ref<char,std::char_traits<char>,std::allocator<char> >*std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__getRep(unsigned,unsigned) (f8cfbbf4, 8, 8, 7efefeff, 81010100, ff00) + 168
    003f3430 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::basic_string #Nvariant 1(const char*,const std::allocator<char>&) (f8cfbbf4, f7a723d, f8cfbbf3, 4990090, c, 4) + a8
    Thanks & Regards,
    Ramesh.

    bvramesh wrote:
    I will check with my project to see if compiler can be upgraded. Any prerequisites for that ?List of patches required for particular Sun Studio version can be found here (look for SS... patches links):
    http://developers.sun.com/sunstudio/support/matrix/index.jsp
    (direct link for Sun Studio 11 - http://developers.sun.com/sunstudio/downloads/patches/ss11_patches.html)
    bvramesh wrote:
    Can we get the dbx for free (for Solaris 8 platform) OR we need license ?It is free for all uses, as Steve mentioned in the above post.
    bvramesh wrote:
    Where can I find the information ?Here's License Agreement for Sun Studio 11, if that's what you are looking for:
    https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewLicense-Start?LicenseUUID=0TLACUFBYoIAAAEYO5o5AXiO&ProductUUID=lAHACUFB31QAAAEYgUI5AXrt&cnum=&evsref=&sln=
    bvramesh wrote:
    Is it possible to use the latest dbx even if my application is compiled with very old compiler and old shared libraries (Forte 6 update1) ?Yes, as long as you are working on a platform where this version of dbx is supported.
    bvramesh wrote:
    By the way, what is the -fast option and -O3 option all about ?Here are excerpts from the man page (-O3 == -xO3):
                   -xO3 In addition to optimization performed at the
                        -x02 level, also performs global common
                        subexpression elimination, global copy and
                        constant propagation, loop strength reduc-
                        tion, induction variable elimination, and
                        loop-variant optimization.
      -fast     Selects a combination of compilation options for
                   optimum execution speed on the system upon which
                   the code is being compiled.  This option provides
                   near maximum performance for most applications by
                   expanding the following compilation options:
                   -dalign (SPARC only)
                   -fns (SPARC only)
                   -fsimple=2 (SPARC only)
                   -ftrap=%none (SPARC, IA)
                   -xlibmil (SPARC, IA)
                   -nofstore (IA only)
                   -xO5 (SPARC, IA)
                   -xlibmopt (SPARC, IA)
                   -xtarget=native (SPARC, IA)
                   -xbuiltin=%all (SPARC, IA)

Maybe you are looking for

  • How to check multiple special characters in this query.

    When the master_title has no comma in it, I am getting an empty master_title. This is because INSTR(master_title,',',1,1) is returning 0. In addition, I want to be able to specify other characters besides the comma. Example: ":" "/" "-". Can we fit t

  • Nano & Earbud Problems. Advice Needed!!!! PLEASE HELP!!! MAJOR PROBLEMS!

    Okay, one day I was walking home with one headphone in one ear and the other in my friends, and then I get a shock. It really hurt, and my ears started to burn. Thats just the beginning. I call the Apple Help Line and they tell me they will send me a

  • Another photoshop cs6 problem

    When I tried to add text it doesn't really work. For example: Let's say I type in "Whats your name?" It won't show I typed unless I go click on a different tab and then go back to it. And the question mark will be in the front instead of in the back.

  • Changing Country in the Apple Store

    Hello everybody, I am trying to change Apple Store Country but, even if I change the Country and I use the payment form for the new Country it does not work. Help!!!

  • IPod Shuffle Does Not Support Apple LossLess?

    i ripped some songs in apple lossless from my cd collections. then i tried to upload those songs to my old iPod Shuffle. But it was denied, and i have to check the "covert higher bit rate songs to 128kbps" check box. so ipod shuffle doesn't not suppo