Logical databse in repeat

Hi
I call in loop logical database by FM LDB_PROCESS in different parameters but only first step is return ok
next return error subrc = 1 LDB_NOT_REENTRANT
How to init this calling in second step?

Hi
Firstly why you are calling the LDB using FM instead mentioned that in Program attributes and call that using GET statement ?
Regards,
Sreeram

Similar Messages

  • Logical databse

    hi all
    i had tried so many times to change the selection screen of logical database but i was not able to do this whenever i change the screen that change is disappeard on runtime can anyone help me on how to change the selection screen of logical databse.
    sunanda

    You can define a selection view from the ABAP
    Workbench by choosing Extras ® Selection views to open the
    Logical Database Builder, or by choosing Further objects
    from the initial screen of the Repository Browser. They
    are identified using a three-character key describing the
    origin of the selection view. Predefined selection views
    have the key SAP, customer-defined ones have the key CUS.
    This way, users can define the best logical database
    selection views for their requirements.
    If you want to use a selection view in a logical database,
    it must be called STANDARD, and must be assigned to a
    logical database. Selection views that are not assigned to
    a particular logical database may have any name, and they
    can be used freely.
    For more information ,refer this help:
    http://help.sap.com/saphelp_47x200/helpdata/en/f7/3ecfa4149c11d2953c0000e8353423/frameset.htm
    Additionally you may also want to view this part of the help:
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/db9c2e35c111d1829f0000e829fbfe/frameset.htm
    Regards,
    Subramanian V.
    Message was edited by: Subramanian Venkateswaran

  • C:forEach and logic:iterate tags repeating elements of a collection

    I have an issue that makes absolutely no sense to me. Basically I am using struts, and I am returning a form that contains a List of customers. I am simply trying to iterate that list into a simple table for each customer. The end result will have rows for each table, but I tried to simplify this example.
    The only filter is that I don't want to display customers that don't contain any data that I care to display. In my dataset, there is only one customer that has any data that I care about, and that has been verified in the database and in the backend action feeding the struts page.
    I first attempted this with the c:forEach JSTL tag. What I saw was that the customers were just getting repeated. Instead of showing one table for each customer, it was repeating the tables for each customer equal to the size of the Collection. For example, there were *5* customers in the List, only customer C should have been set into a table, but the table for customer C was being repeated *5* times. I went into the backend code, and made sure the object being sent back to struts contained the correct number of records.
    I then tried the same thing using the logic:iterate Struts EL tag. This did exactly the same thing. Instead of one table for customer C, I had 5 tables, all for customer C.
    Frustrated, I then went back to just writing a basic scriptlet in the JSP, to iterate over the object returned from the struts action. When I did this, everything came back as normal. Only customer C met my conditional statement, and only customer C had a table created in the generated HTML.
    Now I must be missing something with how the JSTL tags are handling the iteration, so I wanted to post the code to see if anyone had any idea what I am doing wrong here.
    The JSP page is found below. As you can see, the first part is done as a scriptlet, and the last part is done with JSTL tags. Unless I am mistaken, the 2 approaches should produce the same result. Please let me know if I am missing something here.
    <%@ include file="/common/customConfig.inc"%>
    <%@ page import="java.util.Iterator,
        com.pw.cemp.webapp.common.forms.CempDocumentsForm,
        com.pw.cemp.webapp.common.views.CustomerView"%>
    Write table with straight scriptlets...
    <br />
    <br />
    <%
        CempDocumentsForm cdForm =
            (CempDocumentsForm) session.getAttribute("cempDocsForm");
        Iterator itCustomers = cdForm.getCustomers().iterator();
        while (itCustomers.hasNext())
            int idx = 0;
            CustomerView customer = (CustomerView) itCustomers.next();
            if (customer.getCemps() != null && !customer.getCemps().isEmpty())
    %>
            <table>
                <% if (idx == 0) { %>
                    <caption>
                        Customer CEMP Listing
                    </caption>               
                <% } %>
                <tbody>
                    <tr>
                        <td class="level1">
                            <%=customer.getName() %> -
                            <%=customer.getSapCustomerId() %>
                        </td>
                    </tr>
                </tbody>
            </table>
    <%      
            idx ++;
    %>
    <br />
    <br />
    Now try using JSTL...
    <br />
    <br />
        <logic:iterate name="cempDocsForm" property="customers" id="customer" indexId="index">
        <!-- <c:forEach items="${cempDocsForm.customers}" var="customer" varStatus="status"> -->
            <c:if test="${not empty customer.cemps}">           
            <table>
                <c:if test="${index == 0}">
                    <caption>
                        Customer CEMP Listing
                    </caption>
                </c:if>
                <tbody>
                    <tr>
                        <td class="level1">
                            <c:out value="${customer.name}" /> -
                            <c:out value="${customer.sapCustomerId}" />
                        </td>
                    </tr>
                </tbody>
            </table>
            </c:if>
        <!-- </c:forEach> -->
        </logic:iterate>
        <br />
        <br />The code above produced the following HTML. As you can see, the scriptlet did exactly what I wanted, it produced 1 table for the only company that met the conditional statement. The JSTL section repeated the table for that one company, equal to the number of items in my List.
    Write table with straight scriptlets...
    <br />
    <br />
            <table>
                    <caption>
                        Customer CEMP Listing
                    </caption>                           
                <tbody>
                    <tr>
                        <td class="level1">
                            FMP Test Company -
                            5
                        </td>
                    </tr>
                </tbody>
            </table>
    <br />
    <br />
    Now try using JSTL...
    <br />
    <br />
            <table>           
                    <caption>
                        Customer CEMP Listing
                    </caption>           
                <tbody>
                    <tr>
                        <td class="level1">
                            FMP Test Company -
                            5
                        </td>
                    </tr>
                </tbody>       
            </table>
            <table>
                <tbody>
                    <tr>
                        <td class="level1">
                            FMP Test Company -
                            5
                        </td>
                    </tr>
                </tbody>
            </table>
            <table>           
                <tbody>
                    <tr>
                        <td class="level1">
                            FMP Test Company -
                            5
                        </td>
                    </tr>
                </tbody>
            </table>
            <table>           
                <tbody>
                    <tr>
                        <td class="level1">
                            FMP Test Company -
                            5
                        </td>
                    </tr>
                </tbody>
            </table>
            <table>       
                <tbody>
                    <tr>
                        <td class="level1">
                            FMP Test Company -
                            5
                        </td>
                    </tr>
                </tbody>
            </table>
        <br />
        <br />Thanks in advance...
    Edited by: cdbyrd on Feb 28, 2008 4:22 PM
    Edited by: cdbyrd on Feb 28, 2008 5:12 PM

    Okay, it looks like I kept moving things around until I stumbled upon something. One thing to note is that I am using Tiles in my struts 1.2.9 application. I don't know if that has anything to do with it, but this is what I found.
    If you notice in my code, with the iteration tags, I had one active and one commented version of the tag. I kept flipping them around, thinking it was some kind of syntax problem or it was specific to either the logic:iterate or c:forEach tag.
    Well, as it turns out, when you comment something the way I did, I think the custom tag processor doesn't ignore the commented sections. I had things commented like the following.
        <logic:iterate name="cempDocsForm" property="customers" id="customer" indexId="index">
        <!-- <c:forEach items="${cempDocsForm.customers}" var="customer" varStatus="status"> -->Now I have done this many times in the past, and I have never noticed any adverse behavior. I guess it was just the correct situation here to make the problem come to the surface. As soon as I removed any comments on the JSP, the page started working as expected. I can't explain why it happens, I just know it happened.
    Does anyone out there have a good explanation for this, so I can put a reason to why I lost so much hair today? Also, does anyone have the proper way to comment out JSTL tags to keep them from being parsed?
    Thanks...

  • SAP Query with Logical databse BRM

    Hi All,
    I'm developing one report by SAP Query using with logical database BRM to pick the accounting documents. But I would like add some kind of where condtion for one of field for BKPF table. Is there way to achieve this by using logical database concept? If there is a way please help me.
    Thanks in advance.
    Regards,
    TNR

    hi
    in SQVI, kindly follow the below steps:
    a.  in the left hand pane, click on the data fields.
    b.  expand the 'accounting document header'.
    c.  for the field BKPF-TCODE click on the 'List Fields' and the 'Selection fields'.
    d.  click on execute,
    e. you can now enter the values for the BKPF-TCODE.
    regards
    eashwar
    Edited by: eashwar1 on Feb 11, 2010 11:55 AM

  • SAP Query with Logical databse

    Hi All,
    I'm developing one report by SAP Query using with logical database BRM to pick the accounting documents. But I would like add some kind of where condtion for one of field for BKPF table. Is there way to achieve this by using logical database concept? If there is a way please help me.
    Thanks in advance.
    Regards,
    TNR

    hi
    in SQVI, kindly follow the below steps:
    a.  in the left hand pane, click on the data fields.
    b.  expand the 'accounting document header'.
    c.  for the field BKPF-TCODE click on the 'List Fields' and the 'Selection fields'.
    d.  click on execute,
    e. you can now enter the values for the BKPF-TCODE.
    regards
    eashwar
    Edited by: eashwar1 on Feb 11, 2010 11:55 AM

  • User exit for logical databse SDF

    Hi,
    I got 2 requirements for tcode FBL3N as below. My problem now is on 2nd requirement.
    1. for the output listing - to display the vendor code and name 1 and name 2
    we have afew types of vendors; alternate payee, vendor on behalf, one off vendor, cross company vendor etc.
    To extract the vendor details, I did some coding in FM ZFI_INTERFACE_00001650 and attach to the BTE
    for this, I have added 3 fields in structure RFPOS and RFPOSX; lifnr, name1 and name2
    the result: everything is ok and the output has been accepted by user althought got incorrect data when come to multiple vendor in 1 document. the FM will only select the 1st vendor in the document
    2. for the selection screen - to add vendor code
    we agreed to add in the dynamic selection and for this, I have changed the SDF logical database
    i have added field lifnr in structure FAGLFREESEL and has added statement -> tables: FAGLFREESEL in the FBL3N program (based on SNote). At first i plan to copy the FBL3N to Z program, but my user dont want alot of Z program and Z tcode being created
    after run the FBL3N, the vendor field appear in the dynamic selection
    the problem is: the output is not based on the selected vendor. seems like the program is ignoring the vendor field.
    I believe I need to put some selection coding somewhere in the logical database to also check on the additional field (lifnr) but no idea on that. and of course my selection for the vendor must be same as what I did in FM ZFI_INTERFACE_00001650 (1st requirement) since we have alot of vendor types.
    somebody please advice or give some idea on how do I proceed with the 2nd requirement.
    thanks

    Hi Sumaiya,
      How did you resolve this, I have a similar issue. Please share.
    Thanks
    Shailaja

  • How to pass dynamic selection to logical databse using ldb_process function

    dear friends,
                         can anybode tell me how to pass dynamic selection to the logical database when i m using LDB_PROCESS function module.  however, in EXPRESSIONS paramter of the function module i m  passing the selecti-option, it is passing their also but when i used more than  two select-option or paramter it throw an exception FREE_SELECTIONS_ERROR.
    SO PLEASE GUIDE ME HOW TO PASS MORE THAN TWO SELECT-OPTION IN LOGICAL DATANSE DYNAMICALLY USING LDB_PROCESS.

    would be nice if you post the answer to all

  • Dynamic selction in logical databse using LDB_PROCESS method

    dear friends,
                         can anybode tell me how to pass dynamic selection to the logical database when i m using LDB_PROCESS

    cancel

  • Problem in Logical Databse Call via Function Module - Urgent

    Hi Experts,
    To use the Logical Database(LDB) in the function module(Custom) I am using the function module - LDB_PROCESS. But I didn't get any output. I am attaching the code. Please Help me in this.
    DATA : W_LDBNAME LIKE TRDIR-LDBNAME.
    DATA : IT_CALLBACK LIKE TABLE OF LDBCB WITH HEADER LINE,
           IT_SELECTIONS LIKE TABLE OF RSPARAMS WITH HEADER LINE,
           IT_PERNR TYPE TABLE OF PERNR WITH HEADER LINE.
    MOVE 'PNP' TO W_LDBNAME.
    IT_CALLBACK-LDBNODE = 'PERNR'.
    IT_CALLBACK-GET     = 'X'.
    IT_CALLBACK-CB_PROG = SY-CPROG.
    IT_CALLBACK-CB_FORM = 'CALLBACK_PERNR'.
    APPEND IT_CALLBACK.
    CLEAR IT_CALLBACK.
    IT_SELECTIONS-KIND    = 'S'.
    IT_SELECTIONS-SELNAME = 'PNPPERNR'.
    IT_SELECTIONS-SIGN    = 'I'.
    IT_SELECTIONS-OPTION   = 'EQ'.
    IT_SELECTIONS-LOW      = '100178'.
    APPEND IT_SELECTIONS.
    CLEAR IT_SELECTIONS.
    CALL FUNCTION 'LDB_PROCESS'
    EXPORTING
        LDBNAME                    = W_LDBNAME
      VARIANT                    =
      EXPRESSIONS                =
      FIELD_SELECTION            =
      DYN_NODE_TYPES             =
    TABLES
        CALLBACK                   = IT_CALLBACK
       SELECTIONS                 = IT_SELECTIONS
    EXCEPTIONS
       LDB_NOT_REENTRANT           = 1
       LDB_INCORRECT               = 2
       LDB_ALREADY_RUNNING         = 3
       LDB_ERROR                   = 4
       LDB_SELECTIONS_ERROR        = 5
       LDB_SELECTIONS_NOT_ACCEPTED = 6
       VARIANT_NOT_EXISTENT        = 7
       VARIANT_OBSOLETE            = 8
       VARIANT_ERROR               = 9
       FREE_SELECTIONS_ERROR       = 10
       CALLBACK_NO_EVENT           = 11
       CALLBACK_NODE_DUPLICATE     = 12
       CALLBACK_NO_PROGRAM         = 13
       CALLBACK_NO_CBFORM          = 14
       DYN_NODE_NO_TYPE            = 15
       DYN_NODE_INVALID_TYPE       = 16
       OTHERS                      = 17.
    IF SY-SUBRC <> 0.
      MESSAGE I039(ZABA) WITH  SY-SUBRC.
    ENDIF.
    LOOP AT IT_PERNR.
      message i039(zaba) with 'Inside loop'.
      WRITE : / IT_PERNR-PERNR, IT_PERNR-BUKRS.
    ENDLOOP.
    *&      Form  CALLBACK_PERNR
          text
         -->L_LDBNAME     text
         -->L_IT_PAYROLL  text
         -->TYPE          text
         -->PAY99_REULT   text
         -->L_EVT         text
         -->L_CHK         text
    FORM CALLBACK_PERNR USING  L_LDBNAME LIKE TRDIR-LDBNAME
                               L_IT_PERNR LIKE PERNR
                               L_EVT type C
                               L_CHK type C.
      message i039(zaba) with 'Inside Callback'.
      WRITE : / L_IT_PERNR-PERNR,
                L_IT_PERNR-BUKRS.
      MOVE-CORRESPONDING L_IT_PERNR TO IT_PERNR.
      APPEND IT_PERNR.
      CLEAR IT_PERNR.
    ENDFORM.                    "CALLBACK_PERNR
    Thanks in advance
    Arul Jothi.

    Hi,
    I think Arul commented the 'it_selections' while trying out.. I couldn't get the fm work for PNP.. it worked fine with the FI LDBs.. just didn't seem to like the PNP..
    Regards,
    Suresh Datti

  • Get pernr based on company code in logical databse

    Hi,
        When using the get pernr event, all the pernrs that I get are in the ascending order  I want them first grouped based on the company code and then on pernr.
    Any suggestions would be appreciated abd suitably rewarded.
    for ex: get pernr.
               write:/ pernr, bukrs.
             end-of-selection.
    result:   00000099 1001
              00000002 1003
    Regards
    Vick
    Message was edited by:
            vick vennav

    for ex: get pernr.
    write:/ pernr, bukrs.
    end-of-selection.
    result: 00000099 1001
    00000002 1003
    We are sending the payroll information to the 3rd party for pay check purposes, at my client side they have inserted a custom include in the standard program and populating the information in a flat file which needs to be sorted first based on company code and then on pernr. If I try to do it later,the code is becoming a mess, so I want to know is there a way to get pernr using logical database whose order is based on company code.
    Regards

  • Logic Pro 9 Repeatedly Quitting

    Hey everyone,
    My Logic Pro has randomly started quitting. It started a little bit last night whenever I hit the mute button. Now it has escalated to quitting when doing anything from muting to sliding faders. I'm running it on a new iMac and mountain lion. Here's the error report:
    Process:         Logic Pro [245]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.7 (1700.57)
    Build Info:      Logic-17005700~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [157]
    User ID:         501
    Date/Time:       2012-09-25 16:32:35.160 -0400
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Interval Since Last Report:          323016 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  144046 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      F51BDC57-DD5F-502F-6EAE-F653DBC5373D
    Crashed Thread:  12
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000091451448
    VM Regions Near 0x91451448:
        Memory tag=35          0000000091400000-0000000091418000 [   96K] r-x/rwx SM=COW 
    --> __TEXT                 0000000091418000-0000000091473000 [  364K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        Memory tag=35          0000000091473000-0000000091476000 [   12K] r-x/rwx SM=COW 
    Application Specific Information:
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libcompiler_rt.dylib                    0x9a23d7cb __udivdi3 + 155
    1   com.apple.logic.pro                     0x00574551 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5475041
    2   com.apple.logic.pro                     0x00384011 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3442081
    3   com.apple.logic.pro                     0x00384073 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3442179
    4   com.apple.logic.pro                     0x003574f3 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3259011
    5   com.apple.logic.pro                     0x00360b8e std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3297566
    6   com.apple.logic.pro                     0x003d0ec4 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3757140
    7   com.apple.logic.pro                     0x000c73ca std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 571738
    8   com.apple.logic.pro                     0x000cea1f std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 602031
    9   com.apple.logic.pro                     0x0058134d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5527773
    10  com.apple.logic.pro                     0x0056f8d3 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5455459
    11  com.apple.logic.pro                     0x001ca92d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1633981
    12  com.apple.logic.pro                     0x00578355 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5490917
    13  com.apple.logic.pro                     0x00626192 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6203170
    14  com.apple.AppKit                        0x92aaca21 -[NSWindow sendEvent:] + 6968
    15  com.apple.prokit                        0x00ff16d0 -[NSProWindow sendEvent:] + 257
    16  com.apple.logic.pro                     0x007c71f3 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 7911299
    17  com.apple.AppKit                        0x92aa7a0f -[NSApplication sendEvent:] + 4278
    18  com.apple.prokit                        0x00fccd33 -[NSProApplication sendEvent:] + 2046
    19  com.apple.logic.pro                     0x0061312d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6125245
    20  com.apple.logic.pro                     0x00617dc1 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6144849
    21  com.apple.logic.pro                     0x0061315f std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6125295
    22  com.apple.AppKit                        0x929c172c -[NSApplication run] + 951
    23  com.apple.prokit                        0x00fcd651 NSProApplicationMain + 424
    24  com.apple.logic.pro                     0x0002b1c5 DummyConnection::DummyConnection() + 193
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x938d39ae kevent + 10
    1   libdispatch.dylib                       0x906bfc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x906bf7a9 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x938d07d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x938cfcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x91215599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9121af7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9121a63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9121a4ab CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x93c5a13a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x93cbe1d8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x93cbe15b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    10  libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apogee.EnsemblePlugIn               0x0f700b94 apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 52
    4   com.apogee.EnsemblePlugIn               0x0f701940 ClientBiDirConnection::HandlePropertyChanges() + 30
    5   com.apogee.EnsemblePlugIn               0x0f701915 PthreadHandlingPropertyChanges(void*) + 37
    6   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    7   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apogee.EnsemblePlugIn               0x0f6ff106 MessageTX::TXThread() + 68
    4   com.apogee.EnsemblePlugIn               0x0f6ff0b5 TransmitThread(void*) + 37
    5   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    6   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x938d2b3e __recvfrom + 10
    1   libsystem_c.dylib                       0x94ef0bcb recv$UNIX2003 + 54
    2   com.apogee.EnsemblePlugIn               0x0f70250e ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 88
    3   com.apogee.EnsemblePlugIn               0x0f6fe4ee MessageRX::RXThread() + 220
    4   com.apogee.EnsemblePlugIn               0x0f6fe2c5 ReceiveThread(void*) + 37
    5   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    6   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x938d2be6 __select + 10
    1   com.apple.CoreFoundation                0x9125ec00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    3   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x938d07d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x938cfcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x91215599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9121af7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9121a63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9122a061 CFRunLoopRun + 129
    6   com.apple.DVCPROHDMuxer                 0x13f1798f AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 317
    7   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    8   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAFiles            0x02a58838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a58901 ResolveFile + 55009
    5   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    6   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAFiles            0x02a58838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a58901 ResolveFile + 55009
    5   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    6   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b2b899 MDFileIOThread_IsBusy + 3593
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x938d07d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x938cfcb0 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x0139c22d XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    3   com.apple.audio.midi.CoreMIDI           0x013b9ae0 MIDIProcess::RunMIDIInThread() + 144
    4   com.apple.audio.midi.CoreMIDI           0x013bfc48 MIDIProcess::MIDIInPortThread::Run() + 24
    5   com.apple.audio.midi.CoreMIDI           0x0139d805 XThread::RunHelper(void*) + 17
    6   com.apple.audio.midi.CoreMIDI           0x0139d2ee CAPThread::Entry(CAPThread*) + 196
    7   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    8   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 12 Crashed:
    0   libsystem_kernel.dylib                  0x938d2a6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x94e67acf pthread_kill + 101
    2   libsystem_c.dylib                       0x94e9e5ff __abort + 199
    3   libsystem_c.dylib                       0x94e9e538 abort + 232
    4   com.apple.logic.pro                     0x003e50c9 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3839577
    5   libsystem_c.dylib                       0x94e5286b _sigtramp + 43
    6   com.apple.logic.pro                     0x00384694 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3443748
    7   com.apple.logic.pro                     0x00402450 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3959264
    8   com.apple.logic.pro                     0x003759b8 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3383112
    9   com.apple.logic.pro                     0x003846b2 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3443778
    10  com.apple.logic.pro                     0x0038909d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3462701
    11  com.apple.logic.pro                     0x00402450 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3959264
    12  com.apple.logic.pro                     0x003759b8 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3383112
    13  com.apple.logic.pro                     0x003846b2 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3443778
    14  com.apple.logic.pro                     0x0038909d std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3462701
    15  com.apple.logic.pro                     0x00402450 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3959264
    16  com.apple.logic.pro                     0x003759b8 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3383112
    17  com.apple.logic.pro                     0x00381519 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3431081
    18  com.apple.logic.pro                     0x003777fc std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3390860
    19  com.apple.logic.pro                     0x0037a41e std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3402158
    20  com.apple.logic.pro                     0x0037cc0b std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3412379
    21  com.apple.logic.pro                     0x00294c0e std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 2462110
    22  com.apple.logic.pro                     0x0037c895 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3411493
    23  com.apple.logic.pro                     0x0037d433 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3414467
    24  com.apple.CoreServices.CarbonCore          0x90cf60e0 TimerThread + 129
    25  libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    26  libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x938d2be6 __select + 10
    1   com.apple.logic.pro                     0x0096da07 void UnitTest::CheckEqual<ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment>(UnitTest::TestResults&, ScTypeSetter::tVerticalAlignment, ScTypeSetter::tVerticalAlignment, UnitTest::TestDetails const&) + 375847
    2   com.apple.logic.pro                     0x005b0124 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5719732
    3   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    4   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x938d30ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e6904c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94e68e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x94e50cca start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x938d30ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e6904c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94e68e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x94e50cca start_wqthread + 30
    Thread 16:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x938d07d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x938cfcb0 mach_msg + 68
    2   com.apple.audio.CoreAudio               0x91667536 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio               0x9166207c HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio               0x916608bb HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio               0x916602a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio               0x9166a26a ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio               0x916601c3 HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    9   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0e50c MD::CallProcessThread1(void*) + 108
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0e28c MD::CallProcessThread2(void*) + 124
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0dffc MD::CallProcessThread3(void*) + 124
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0dd6c MD::CallProcessThread4(void*) + 124
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0dadc MD::CallProcessThread5(void*) + 124
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0d84c MD::CallProcessThread6(void*) + 124
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0d5bc MD::CallProcessThread7(void*) + 124
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x938d28e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e6b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94ef10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.music.apps.MAAudioEngine          0x02b0c13c MD::CallProcessThread15(void*) + 124
    4   libsystem_c.dylib                       0x94e66557 _pthread_start + 344
    5   libsystem_c.dylib                       0x94e50cee thread_start + 34
    Thread 12 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x94e5284e  ecx: 0xb0b3afdc  edx: 0x938d2a6a
      edi: 0xb0b3c000  esi: 0x00000006  ebp: 0xb0b3aff8  esp: 0xb0b3afdc
       ss: 0x00000023  efl: 0x00000206  eip: 0x938d2a6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x000c72e0
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xbe7ff7  com.apple.logic.pro (9.1.7 - 1700.57) <E0B8F147-B690-4889-84FF-A409F39B402F> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe81000 -   0xe9ffef  com.apple.XSKey (1.0.0 - 52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeae000 -   0xee1fe7  com.apple.music.apps.MAAudioUnitSupport (9.1.7 - 233.39) <13FB1823-E7E6-A34B-6D89-E30D01605DC1> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xeee000 -   0xf1fff3  com.apple.musicaudiodataservices (1.1 - 250.92) <11E60B69-F34E-72B0-DC8E-BC23B4D9D949> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf2e000 -   0xf30fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xf36000 -   0xf94ff3  com.apple.music.apps.MALoopManagement (9.1.7 - 218.94) <E1772A24-827D-AF1F-7C09-E25FC729F95B> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfaa000 -  0x11dbff3  com.apple.prokit (7.3.1 - 1943) <4F8BB1EA-FA77-3B98-8889-8045F3F23A38> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12f3000 -  0x136efff  com.apple.music.apps.MACore (9.1.7 - 477.48) <5D0BB5DF-13EB-1759-F1B9-4275EEE287B3> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x138e000 -  0x13d6ffb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <7AAE4076-36FA-37C1-9EAE-344F1C8F14D9> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13fb000 -  0x1451ff7  com.apple.music.apps.MAHarmony (9.1.7 - 198.94) <BE3356F3-9B77-81AF-9D4E-2F9F036B7491> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1468000 -  0x1881ff7  com.apple.music.apps.MAPlugInGUI (9.1.7 - 424.69) <6C2FD01C-3CAA-F456-B695-FCB5638A4EDE> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a9f000 -  0x1b81feb  com.apple.music.apps.OMF (9.1.7 - 108.93) <5A2D5ABF-97B8-E67D-EF60-BD3CEA462CDE> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b95000 -  0x21e6fe3  com.apple.music.apps.MADSP (9.1.7 - 588.88) <4E4B1FA7-6D09-E835-09B8-FC5700B6D425> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28cb000 -  0x28ecff7  com.apple.music.apps.LogicFileBrowser (9.1.7 - 1700.57) <EEAE4BD4-7F0C-3331-2C94-6EBA3E5F518F> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28f5000 -  0x296eff7  com.apple.music.apps.LogicLoopBrowser (9.1.7 - 1700.57) <8CACC777-C6A7-432C-ADB9-E7F1865F8544> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2982000 -  0x29a3ff7  com.apple.music.apps.MAApogeeSupport (9.1.7 - 311.94) <F09251F0-B26D-CA6C-8B7A-6711EE4331D1> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x29a8000 -  0x29adff7  com.apple.music.apps.MAResources (9.1.7 - 211.95) <176392C0-73D0-4698-C1AC-114BB5C05A2B> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29b1000 -  0x29deff3  com.apple.audio.CoreAudioKit (1.6.4 - 1.6.4) <5F0E55AF-BDA6-36B3-86F2-8A84A8F5D089> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29f1000 -  0x2a01ff7  com.apple.AERegistration (1.2 - 401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a15000 -  0x2a21ff3  com.apple.music.apps.MAUnitTest (9.1.7 - 95.94) <D8B89167-A7D2-2C2F-B401-1E17BD85C2FD> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a29000 -  0x2adffff  com.apple.music.apps.MAFiles (9.1.7 - 144.77) <DCD9D7C3-B474-5A9D-5E1D-6CA3D2461D69> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2af8000 -  0x2b6ffe7  com.apple.music.apps.MAAudioEngine (9.1.7 - 158.32) <3391175C-45EA-CF4C-29CE-B40AED2B40CD> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bd6000 -  0x2be1ff7  com.apple.music.apps.MAToolKit (9.1.7 - 357.98) <B3F36681-3427-CDFC-B975-568F14996D02> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2be5000 -  0x2bf9ff7  com.apple.music.apps.MAVideo (9.1.7 - 11.99) <7BFFFBAF-7564-4CD5-DA1D-98D57E2D8D55> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2c0c000 -  0x2d2aff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x2ddb000 -  0x2e86fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x2eca000 -  0x2f06ff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2f20000 -  0x306cfff  com.apple.syncservices (7.0 - 713) <442C8E15-8870-3D65-98EC-82C0E2580EC0> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x30e8000 -  0x3184ffc  com.apple.MobileMe (9 - 1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x31e1000 -  0x31f7ffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0x3200000 -  0x3e8fff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x46c6000 -  0x46ebffe  com.apple.prokit.LionPanels (7.3.1 - 1943) <08467FD8-B9E7-3509-9F77-C84762AFA4CE> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
    0x5700000 -  0x577fff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x57db000 -  0x57e8ff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x6797000 -  0x67a5fff  com.apple.iokit.IOHIDLib (1.8.0 - 1.8.0) <291F0E6E-606C-37D3-A2F4-94DA20537C49> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0xf1c0000 -  0xf27eff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xf6d8000 -  0xf6ddfff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <58BDA15D-2B2D-3E77-BC8C-D14AB1E4AC4E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xf6e2000 -  0xf716fff  com.apogee.EnsemblePlugIn (1.15.21 - 1.15.21) <2A057BAD-C02B-3A19-8314-FC15AD2D9005> /System/Library/Extensions/EnsemblePlugIn.bundle/Contents/MacOS/EnsemblePlugIn
    0xf730000 -  0xf751ff3 +de.access-music.virus_ti.util.hal (2.1.8) <67040DB2-3BC2-0C1A-7B96-726680C85BB3> /Library/Audio/Plug-Ins/HAL/de.access-music.virus_ti.plugin/Contents/MacOS/de.a ccess-music.virus_ti
    0xf760000 -  0xf7b5fe2  com.apple.DVCPROHDAudio (1.3.2 - 1.3.2) <A9248133-6EB0-2702-A9B8-71C67BE55FD4> /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x12872000 - 0x1287aff7  com.apple.proapps.mrcheckpro (1.4 - 397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x128a4000 - 0x128a6ffc  com.apple.IOAccelerator (19.0.26 - 19.0.26) <6A93A355-1FC9-3E0A-8A4F-B924EC2F2CD8> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x128d1000 - 0x128dcffb  libGPUSupportMercury.dylib (8.6.1) <A4CBD804-F50A-365B-B348-AE6BC80D52A1> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0x128e4000 - 0x128ecffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x128f3000 - 0x128f5fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x13bee000 - 0x13bf0ff3  com.apple.music.apps.anvil.resources (9.1.7 - 279.92) <7CBFA410-D449-1520-1E28-2018E56ECE3E> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x13bf4000 - 0x13bf6ff3  com.apple.music.apps.common.resources (9.1.7 - 279.92) <47B50610-3A6B-B7E6-7D9F-633EE00536BF> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x13bfa000 - 0x13bfcff3  com.apple.music.apps.ebp.resources (9.1.7 - 279.92) <491FACE3-30A1-8165-DFE1-CDB0FD08351A> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x13f00000 - 0x13f65fe0  com.apple.DVCPROHDMuxer (1.3.2 - 1.3.2) <C1AA540F-CEAD-77BA-1CD6-0D467B4F76FF> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x13f7f000 - 0x13fabffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x13fd8000 - 0x13fdaff3  com.apple.music.apps.efx.resources (9.1.7 - 279.92) <C597C91D-FEE9-A1CB-D44F-E1EBE79719CF> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x13fde000 - 0x13fe0ff3  com.apple.music.apps.egt.resources (9.1.7 - 279.92) <30026FE6-7623-C6B3-6771-A121ACC8B762> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x13fe4000 - 0x13fe6ff3  com.apple.music.apps.emx.resources (9.1.7 - 279.92) <7C00E73C-087D-B18A-FBBE-3CB9A34A7290> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x13fea000 - 0x13fecff3  com.apple.music.apps.es1.resources (9.1.7 - 279.92) <E9799913-9D77-B551-2F7C-3C5CF7CCDF5C> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x13ff0000 - 0x13ff2ff3  com.apple.music.apps.es2.resources (9.1.7 - 279.92) <D85546C3-B00F-0A52-EE11-EC05210E6431> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x13ff6000 - 0x13ff8ff3  com.apple.music.apps.esp.resources (9.1.7 - 279.92) <22469760-92CC-70D1-098F-A71D666D2030> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x15a97000 - 0x15c23ff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15c5a000 - 0x15dabff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x15dd9000 - 0x15ddbff3  com.apple.music.apps.evb3.resources (9.1.7 - 279.92) <BAD8B6B6-E451-43B2-E56C-93279FB16A6E> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x15ddf000 - 0x15de1ff3  com.apple.music.apps.evd6.resources (9.1.7 - 279.92) <21C25CAD-1A0B-2ADF-FAA9-A66F6034E82D> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x15de5000 - 0x15de7ff3  com.apple.music.apps.evoc.resources (9.1.7 - 279.92) <B958C220-125C-8DFD-B829-D6ABFEAC7A11> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x15deb000 - 0x15dedff3  com.apple.music.apps.evp88.resources (9.1.7 - 279.92) <CBA089F8-35D9-F012-43BE-F79149490FE0> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x15df1000 - 0x15df3ff3  com.apple.music.apps.exs24.resources (9.1.7 - 279.92) <11C21376-ED55-88F0-C965-DD554EA4DF81> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x15df7000 - 0x15df9ff3  com.apple.music.apps.guitaramp.resources (9.1.7 - 279.92) <03A47674-0672-A373-9628-0F10B1065A04> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x15f78000 - 0x15f7aff3  com.apple.music.apps.guitarcontrols.resources (9.1.7 - 279.92) <6A1F7841-22E5-D35E-D3A7-341280342B5C> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x15f7e000 - 0x15f80ff3  com.apple.music.apps.mutapdel.resources (9.1.7 - 279.92) <DD838B34-3651-F30C-D52F-7CF44EF2AD30> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x15f84000 - 0x15f86ff3  com.apple.music.apps.pedalboard.resources (9.1.7 - 279.92) <79A8F7E2-566C-DF8F-C336-8D075A434E62> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x15f8a000 - 0x15f8cff3  com.apple.music.apps.revolver.resources (9.1.7 - 279.92) <DE04D8A8-A797-342B-B3BB-0AA349CAC457> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x15f90000 - 0x15f92ff3  com.apple.music.apps.sphere.resources (9.1.7 - 279.92) <4DDC2503-F323-ED3F-1F18-B05F5611E5A4> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x16800000 - 0x16a97fe7  com.apple.AMDRadeonX3000GLDriver (1.0.29 - 1.0.0) <97F2FDCC-0C16-33CC-B888-4DC58E257C4C> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
    0x1e3e2000 - 0x1e3edff7  com.apple.DVCPROHDVideoOutput (1.3.2 - 1.3.2) <738D36A7-8DBD-3BD7-CD35-4B171397782C> /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0x1e543000 - 0x1e57bffb  com.apple.audio.SoundManager.Components (4.0 - 4.0) <A38D454C-73A2-3241-B0B6-2BA5AFD1C11C> /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x1e582000 - 0x1e5bcfff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.13) <5FB303B9-3672-39AA-8CD6-E323CC0E41A8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1e5c8000 - 0x1e685fe2  com.apple.DesktopVideoOut (1.2.7 - 1.2.7) <54E0C747-1169-FB4A-2CB4-9EA9BD5398F8> /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x1e6a4000 - 0x1e6adfff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <B9264C9A-693B-3972-A3F1-7A324C147D61> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x23e8f000 - 0x23e91fe3  com.apple.music.apps.midi.device.plugin.CS-32 (9.1.7 - 198.2) <D2AAAC69-FDF5-3871-2979-8E6ACE8B9CF6> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x23ea4000 - 0x23ea7feb  com.apple.music.apps.midi.device.plugin.FW-1884 (9.1.7 - 198.2) <1D69683A-452C-9BEA-699C-ED4403D9F875> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0x23eb0000 - 0x23eb2ff3  com.apple.music.apps.midi.device.plugin.GiO (9.1.7 - 198.2) <52407A48-EFED-E789-8BB0-52249C400541> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
    0x23eb8000 - 0x23ebcffb  com.apple.music.apps.midi.device.plugin.HUI (9.1.7 - 198.2) <161B3680-A99A-BBB8-709D-68514AB2A13C> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
    0x23ec8000 - 0x23ec9fff  com.apple.music.apps.midi.device.plugin.iControl (9.1.7 - 198.2) <F0AC771F-9403-48C9-E85D-3E57203481DC> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
    0x23ecf000 - 0x23ed0fff  com.apple.music.apps.midi.device.plugin.MCS3 (9.1.7 - 198.2) <9C47D764-8D92-7449-1C7F-7969B283CF46> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
    0x248e7000 - 0x248eeff3  com.apple.music.apps.midi.device.plugin.Logic-Control (9.1.7 - 198.2) <03672B2B-C49F-57E1-B57E-565112890352> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
    0x2490b000 - 0x2490dff7  com.apple.music.apps.midi.device.plugin.microKONTROL (9.1.7 - 198.2) <EA80DFF2-1CCF-C627-3AFB-0662A6A4DF5F> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
    0x24914000 - 0x24914ff3  com.apple.music.apps.midi.device.plugin.Recording-Light (9.1.7 - 198.2) <191C34BE-B7A3-147D-F363-2161ABECA059> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
    0x24919000 - 0x2491cfff  com.apple.music.apps.midi.device.plugin.TouchOSC (9.1.7 - 198.2) <79BF5A8A-F4DB-6C96-6DEA-ECA2A8B790DE> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
    0x24925000 - 0x24927ff3  com.apple.music.apps.midi.device.plugin.TranzPort (9.1.7 - 198.2) <79D4474F-0727-759D-6CEC-DEAE3451C464> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
    0x2492c000 - 0x2492efe7  com.apple.music.apps.midi.device.plugin.US-2400 (9.1.7 - 198.2) <98417D49-97C4-2301-2448-FC0C97546A53> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
    0x24a15000 - 0x24a16ffb  com.apple.music.apps.midi.device.plugin.US-428 (9.1.7 - 198.2) <9CBAF867-2018-394E-2626-F9ABE1118D7B> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
    0x24f40000 - 0x24f7afe7 +de.access-music.virusti.control.audiounit (5.0.0.10 - 5.0.0.10) <A51CF8FF-4CF4-D05A-5C20-8161CEED9D72> /Library/Audio/Plug-Ins/Components/VirusTI.component/Contents/MacOS/VirusTI
    0x24f83000 - 0x24f99ff7 +org.andymatuschak.Sparkle (1.5 Beta [git] - 1.5) <3C659664-E30C-7F55-4163-3A210A4146AC> /Library/Application Support/Access Music/*/Virus Control.bundle/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
    0x25800000 - 0x25934fe7 +com.fabfilter.Pro-Q.AU.1 (1.13 - 1.13) <0928CD65-7F66-36CD-241C-1B2115CA89C4> /Library/Audio/Plug-Ins/Components/FabFilter Pro-Q.component/Contents/MacOS/FabFilter Pro-Q
    0x27800000 - 0x27a9bfff +de.access-music.virusti.control.bundle (5.0.0.10 - 5.0.0.10) <B0543628-3271-88C0-C5D9-D5033BEE4606> /Library/Application Support/Access Music/*/Virus Control.bundle/Contents/MacOS/Virus Control
    0x2e000000 - 0x2e205fff  com.apple.audio.codecs.Components (3.0 - 3.0) <B826A71F-1D4C-3B2D-B104-D06583172F1B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x301b9000 - 0x301baffd +cl_kernels (???) <842DB39B-C6D2-45CC-A54C-4B12B62D7068> cl_kernels
    0x301c7000 - 0x301c7ff7 +cl_kernels (???) <68B16F7A-04E9-4273-BF0E-BE76F2B36BD1> cl_kernels
    0x30902000 - 0x30994ff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x8fef6000 - 0x8ff28e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x9002d000 - 0x906b9feb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x906ba000 - 0x906bafff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x906bb000 - 0x906cdff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x906ce000 - 0x906d2fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x906d3000 - 0x90706ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x90707000 - 0x90711fff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90712000 - 0x90712fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x90713000 - 0x90b55fff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90b56000 - 0x90b57fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x90b58000 - 0x90b9aff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x90b9b000 - 0x90bf4ff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90bf5000 - 0x90c1efff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x90c1f000 - 0x90c20ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x90c21000 - 0x90c27fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90c28000 - 0x90c4cfff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x90c4d000 - 0x90f52ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f53000 - 0x91183fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91184000 - 0x911aeff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x911af000 - 0x911e2ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x911e3000 - 0x913cbff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91418000 - 0x91472fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x91476000 - 0x915b1ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x915b2000 - 0x91616fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91617000 - 0x91624ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x91625000 - 0x91629ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x9162a000 - 0x9163ffff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91640000 - 0x91642ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x91643000 - 0x9164bfff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9164c000 - 0x916a9fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x916aa000 - 0x9196afff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9196b000 - 0x91974ffe  com.apple.aps.framework (3.0 - 3.0) <09D5F4F3-03FD-3077-A51D-B368F18ED1D4> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x91975000 - 0x9197cffe  com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9197d000 - 0x9199aff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x9199b000 - 0x9199cffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x9199d000 - 0x919abfff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x919ac000 - 0x919cefff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x919cf000 - 0x91a83fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91a84000 - 0x91b5afff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x91b5b000 - 0x91b8aff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91b8b000 - 0x91b8fffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b90000 - 0x91de8ff1  com.apple.JavaScriptCore (8536 - 8536.26.7) <75629E05-65FE-3699-8CDC-80C95015CF42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91de9000 - 0x91edaffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x91edb000 - 0x91f2aff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91f2b000 - 0x9201fff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9202b000 - 0x92038fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92039000 - 0x92040fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x92041000 - 0x920ffff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92103000 - 0x9216bfe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9216c000 - 0x921e5ff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x921e6000 - 0x921e6ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x921e7000 - 0x92370ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92371000 - 0x9252dffd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x9252e000 - 0x927d1ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x927d2000 - 0x927feff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x927ff000 - 0x92863ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x92864000 - 0x92867ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x92868000 - 0x93424ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9347c000 - 0x9347cfff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9347f000 - 0x934b0fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x934b1000 - 0x934b5fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x934e7000 - 0x934e8fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x934e9000 - 0x93641ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93642000 - 0x936a8fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x936a9000 - 0x936f2ff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x936f3000 - 0x93840ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x93841000 - 0x938bdffb  libType1Scaler.dylib (101.1) <0D94D786-29F7-33DB-B64B-B264FA5EACD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x938be000 - 0x938d8ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x938d9000 - 0x938e3fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x938e4000 - 0x939cdff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x939ce000 - 0x939d0fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x939d1000 - 0x939feffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x939

    coolguywithoutfriends wrote:
    Hey!
    Thanks for the quick response, I really appreciate it
    Im left with more questions!
    What is Jack?
    I attempt to find it in the finder and I come up with squat, and how would I go about uninstalling it?
    Ill get on that updating plug-in junk right away.
    From your crash log....
    0x13a8e000 - 0x13a9cfff +com.grame.JackRouter (JackRouter 0.8.3 - 0.8.3) /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter
    0x14ed5000 - 0x14eddfef +com.grame.Jack (Jack - 0.101.3) /Library/Frameworks/Jack.framework/Versions/A/Jack
    See this website for more info on Jack...
    http://www.jackosx.com

  • Logical databse call using FM LDB_PROCESS in ABAP WD

    hi
    i want to use LDB in a webdynpro application to read the data. i came to know that we can use LDB_PROCESS FM to achieve this.  we need to pass callback routines to this FM. as we can not write subroutines in ABAP OO, how do i do this. do i need a wrapper FM around LDB_PROCESS and call that in turn in the webdynpro method or is there any better way to do that.
    thanksl
    Edited by: sudhakar murthy on Oct 20, 2009 4:10 PM

    hi
    if you go through that help link you will find an example at the bottom where we need define some call back routines using FORM and ENDFORM. I can not do that in ABAP WD as WD is based on ABAP OO.
    thanks

  • Logic X repeatedly crashes when bouncing a project

    Logic X is repeatedly crashing while bouncing my project. It is beyond annoying.
    I see on another thread that other people have the same crash error but while doing different things in Logic...is this a bug?? because in the other thread I saw there was a lot of information asked for and when the crash report was posted there was dead silence.....
    Here is my crash report.....
    Process:         Logic Pro X [619]
    Path:            /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
    Identifier:      com.apple.logic10
    Version:         10.0.6 (3130.20)
    Build Info:      MALogic-3130020000000000~1
    App Item ID:     634148309
    App External ID: 283213010
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [173]
    Responsible:     Logic Pro X [619]
    User ID:         501
    Date/Time:       2014-05-03 23:17:04.679 +1200
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  6FE4383D-991D-9115-ED1F-CB628311A834
    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 0x7f9f35eb7a08: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8fd42866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff8c99835c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff88584b1a abort + 125
    3   libsystem_malloc.dylib                  0x00007fff837f1690 szone_error + 587
    4   libsystem_malloc.dylib                  0x00007fff837f76f4 small_malloc_from_free_list + 1162
    5   libsystem_malloc.dylib                  0x00007fff837f67b2 szone_malloc_should_clear + 1327
    6   libsystem_malloc.dylib                  0x00007fff837f8b61 malloc_zone_calloc + 79
    7   libsystem_malloc.dylib                  0x00007fff837f92ca calloc + 49
    8   com.apple.CoreFoundation                0x00007fff8389f5bc __CFAllocateObjectArray + 76
    9   com.apple.CoreFoundation                0x00007fff838425cc _CFXNotificationPost + 2108
    10  com.apple.Foundation                    0x00007fff8a23f7ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    11  com.apple.AppKit                        0x00007fff88b099ed -[NSView _sendSurfaceSyncNotificationAndFlushSurfacesWithRegionToDisplay:] + 87
    12  com.apple.AppKit                        0x00007fff88ad3595 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4322
    13  com.apple.AppKit                        0x00007fff88ab242a -[NSView displayIfNeeded] + 1680
    14  com.apple.AppKit                        0x00007fff88b1785e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
    15  com.apple.AppKit                        0x00007fff890ed061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
    16  com.apple.CoreFoundation                0x00007fff838b0e17 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    17  com.apple.CoreFoundation                0x00007fff838b0d87 __CFRunLoopDoObservers + 391
    18  com.apple.CoreFoundation                0x00007fff838a2468 __CFRunLoopRun + 776
    19  com.apple.CoreFoundation                0x00007fff838a1f25 CFRunLoopRunSpecific + 309
    20  com.apple.HIToolbox                     0x00007fff87df7a0d RunCurrentEventLoopInMode + 226
    21  com.apple.HIToolbox                     0x00007fff87df7685 ReceiveNextEventCommon + 173
    22  com.apple.HIToolbox                     0x00007fff87df75bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    23  com.apple.AppKit                        0x00007fff8897b3de _DPSNextEvent + 1434
    24  com.apple.AppKit                        0x00007fff8897aa2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    25  com.apple.logic10                       0x00000001060d1306 0x105ee4000 + 2020102
    26  com.apple.logic10                       0x000000010662a927 0x105ee4000 + 7629095
    27  com.apple.logic10                       0x000000010662ab9c 0x105ee4000 + 7629724
    28  com.apple.logic10                       0x000000010694081a 0x105ee4000 + 10864666
    29  com.apple.logic10                       0x0000000106338442 0x105ee4000 + 4539458
    30  com.apple.AppKit                        0x00007fff88b99340 -[NSApplication sendAction:to:from:] + 327
    31  com.apple.LogicUIKit                    0x0000000109d49178 0x109c9a000 + 717176
    32  com.apple.logic10                       0x00000001063a03c4 0x105ee4000 + 4965316
    33  com.apple.AppKit                        0x00007fff88bb42a8 -[NSMenuItem _corePerformAction] + 394
    34  com.apple.AppKit                        0x00007fff88bb3fe4 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 117
    35  com.apple.AppKit                        0x00007fff88c0348d -[NSMenu _internalPerformActionForItemAtIndex:] + 35
    36  com.apple.AppKit                        0x00007fff88c03309 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 104
    37  com.apple.AppKit                        0x00007fff88baa0d6 NSSLMMenuEventHandler + 716
    38  com.apple.HIToolbox                     0x00007fff87dd11d4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 892
    39  com.apple.HIToolbox                     0x00007fff87dd0787 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 385
    40  com.apple.HIToolbox                     0x00007fff87de4880 SendEventToEventTarget + 40
    41  com.apple.HIToolbox                     0x00007fff87e1a640 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 420
    42  com.apple.HIToolbox                     0x00007fff87e4d238 SendMenuCommandWithContextAndModifiers + 59
    43  com.apple.HIToolbox                     0x00007fff87e4d1e0 SendMenuItemSelectedEvent + 178
    44  com.apple.HIToolbox                     0x00007fff87e4d0bf FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    45  com.apple.HIToolbox                     0x00007fff87e55095 MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 718
    46  com.apple.HIToolbox                     0x00007fff87e54cc1 _HandleMenuSelection2 + 446
    47  com.apple.AppKit                        0x00007fff88b1c73c _NSHandleCarbonMenuEvent + 284
    48  com.apple.AppKit                        0x00007fff8897b6be _DPSNextEvent + 2170
    49  com.apple.AppKit                        0x00007fff8897aa2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    50  com.apple.AppKit                        0x00007fff8896eb2c -[NSApplication run] + 553
    51  com.apple.AppKit                        0x00007fff88959913 NSApplicationMain + 940
    52  com.apple.logic10                       0x00000001063a0655 0x105ee4000 + 4965973
    53  libdyld.dylib                           0x00007fff8ba7e5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8fd43662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff86c9843d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff86c98152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff838a2fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff838a25e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff838a1f25 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8a2a3967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8a2a376b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8fd42716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8c999c3b _pthread_cond_wait + 727
    2   com.apogee.QuartetPlugIn                0x000000010e82dd48 apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 98
    3   com.apogee.QuartetPlugIn                0x000000010e82df77 ClientBiDirConnection::HandlePropertyChanges() + 33
    4   com.apogee.QuartetPlugIn                0x000000010e82df4e PthreadHandlingPropertyChanges(void*) + 14
    5   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8fd42716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8c999c3b _pthread_cond_wait + 727
    2   com.apogee.QuartetPlugIn                0x000000010e82d628 MessageTX::TXThread() + 74
    3   com.apogee.QuartetPlugIn                0x000000010e82d5d6 TransmitThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8fd4291a __recvfrom + 10
    1   com.apogee.QuartetPlugIn                0x000000010e82e32a ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 40
    2   com.apogee.QuartetPlugIn                0x000000010e82cedf MessageRX::RXThread() + 107
    3   com.apogee.QuartetPlugIn                0x000000010e82cdfa ReceiveThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8fd429aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff838eeab3 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff838a2fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff838a25e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff838a1f25 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8a2a5adc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x00007fff8a2ee10b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.logic10                       0x00000001060e0349 0x105ee4000 + 2081609
    8   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 8:: SeqTimer
    0   libsystem_kernel.dylib                  0x00007fff8fd42716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8c999c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore          0x00007fff8ea059e7 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore          0x00007fff8ea05609 TSWaitOnSemaphoreCommon + 424
    4   com.apple.CoreServices.CarbonCore          0x00007fff8e9e7bc1 TimerThread + 87
    5   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3dd18 mach_msg + 64
    2   com.apple.audio.midi.CoreMIDI           0x0000000107c295a7 XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
    3   com.apple.audio.midi.CoreMIDI           0x0000000107c441c1 MIDIProcess::RunMIDIInThread() + 121
    4   com.apple.audio.midi.CoreMIDI           0x0000000107c2a63c XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI           0x0000000107c2a2a1 CAPThread::Entry(CAPThread*) + 109
    6   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 10:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff8fd42716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8c999c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x00000001098d99bb ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles            0x00000001098d9659 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 11:: ExtendedAudioFileScheduler::WorkerThreadProc
    0   libsystem_kernel.dylib                  0x00007fff8fd42716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8c999c3b _pthread_cond_wait + 727
    2   com.apple.music.apps.MAFiles            0x00000001098d99bb ExtendedAudioFileScheduler::WorkerThreadProc() + 123
    3   com.apple.music.apps.MAFiles            0x00000001098d9659 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 12:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3dd18 mach_msg + 64
    2   com.apple.audio.CoreAudio               0x00007fff8428e918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff8428e8a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff8428d02e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio               0x00007fff8428cbcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio               0x00007fff8428ca8d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 13:: ProcessThread1/1024
    0   com.apple.music.apps.MADSP              0x0000000108cd9a39 CEAGrainCutter::CutGrain(int, double, double, double, bool) + 969
    1   com.apple.music.apps.MADSP              0x0000000108c1c4a6 CEA_PeriodicityAnalyzer::Process() + 406
    2   com.apple.music.apps.MADSP              0x0000000108c1ba4c CEAFlexPitch::renderStretchedLoop(double, unsigned int, float**) + 1244
    3   com.apple.music.apps.MAAudioEngine          0x0000000109a01138 RenderStretchFile(FileIO const*, long, float) + 1112
    4   com.apple.music.apps.MAAudioEngine          0x00000001099bf144 MDMem::CheckUnpackFile(int, long) + 644
    5   com.apple.music.apps.MAAudioEngine          0x00000001099c63b6 MD::Process(eProcessLevel) + 1494
    6   com.apple.music.apps.MAAudioEngine          0x00000001099cca78 MD::CallProcessThread1(void*) + 248
    7   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 14:: ProcessThread2/1024
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x00000001099ccd60 MD::CallProcessThread2(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 15:: ProcessThread3/1024
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x00000001099ccf70 MD::CallProcessThread3(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 16:: ProcessThread4/1024
    0   com.apple.music.apps.MADSP              0x00000001087ab71b CSource::Process(long, long, CGen**) + 779
    1   com.apple.music.apps.MADSP              0x00000001089f2c4a CPitchShift::OnProcess(TProcessInfo*) + 74
    2   com.apple.music.apps.MADSP              0x0000000108b21efb CBasicFX::Process(TProcessInfo*) + 731
    3   com.apple.music.apps.MADSP              0x000000010874ea21 CPlugInShell::Execute(TProcessInfo*) + 593
    4   com.apple.music.apps.MAAudioEngine          0x00000001099f9263 MDPlugSteffan::Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 499
    5   com.apple.music.apps.MAAudioEngine          0x00000001099ed33a MDPlug::_Process(MDPlugInputBusList const*, MDPlugOutputBusList const*, long, long, long, float const*, eProcessLevel) + 1370
    6   com.apple.music.apps.MAAudioEngine          0x00000001099c1821 MD::PluginProcess(MDProcInfo*, MDPlug*, float const*, long, long, long, eProcessLevel) + 3921
    7   com.apple.music.apps.MAAudioEngine          0x00000001099c4f43 MD::StreamProcessing(eProcessLevel, long, long, long) + 10163
    8   com.apple.music.apps.MAAudioEngine          0x00000001099c66d1 MD::Process(eProcessLevel) + 2289
    9   com.apple.music.apps.MAAudioEngine          0x00000001099cd0be MD::CallProcessThread4(void*) + 254
    10  libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    11  libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    12  libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 17:: ProcessThread5/1024
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x00000001099cd390 MD::CallProcessThread5(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 18:: ProcessThread6/1024
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x00000001099cd5a0 MD::CallProcessThread6(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 19:: ProcessThread7/1024
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x00000001099cd7b0 MD::CallProcessThread7(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 20:: ProcessThread15/1024
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x00000001099ce830 MD::CallProcessThread15(void*) + 448
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 21:: FileIOThread
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea56 semaphore_wait_trap + 10
    1   com.apple.music.apps.MAAudioEngine          0x00000001099e93ec 0x1099bb000 + 189420
    2   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8fd429aa __select + 10
    1   com.apple.logic10                       0x0000000106771b7e 0x105ee4000 + 8969086
    2   com.apple.logic10                       0x0000000106380aed 0x105ee4000 + 4836077
    3   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff838a2fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff838a25e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff838a1f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff83957811 CFRunLoopRun + 97
    6   com.apple.DiscRecording                 0x00007fff8769a15e DRWorkLoop::WorkLoop() + 228
    7   com.apple.DiscRecording                 0x00007fff8769a067 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 9
    8   com.apple.DiscRecording                 0x00007fff87699d77 DRThreadObject::StartRoutine(DRThreadObject*) + 125
    9   com.apple.DiscRecording                 0x00007fff87699c11 DRThreadObject::SymbolRoutine(DRThreadObject*) + 9
    10  libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    11  libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    12  libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 24:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8fd42716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8c999c77 _pthread_cond_wait + 787
    2   com.apple.CoreVideo                     0x00007fff89c56464 CVDisplayLink::waitUntil(unsigned long long) + 244
    3   com.apple.CoreVideo                     0x00007fff89c55998 CVDisplayLink::runIOThread() + 496
    4   com.apple.CoreVideo                     0x00007fff89c5578f startIOThread(void*) + 147
    5   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff838a2fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff838a25e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff838a1f25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff88b1b16e _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8c997899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8c99772a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8c99bfc9 thread_start + 13
    Thread 26:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8fd3ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fd3dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff838a2fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff838a25e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff838a1f25 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8a2a5adc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.AppKit                        0x00007fff88c2b086 -[NSAnimation(NSInternal) _runBlocking] + 366
    7   com.apple.AppKit                        0x00007fff88c2aef6 -[NSAnimation(NSInternal) _animationThread] + 73
    8   libdispatch.dylib                       0x00007fff86c991d7 _dispatch_call_block_and_release + 12
    9   libdispatch.dylib                       0x00007fff86c962ad _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff86c9809e _dispatch_root_queue_drain + 326
    11  libdispatch.dylib                       0x00007fff86c99193 _dispatch_worker_thread2 + 40
    12  libsystem_pthread.dylib                 0x00007fff8c998ef8 _pthread_wqthread + 314
    13  libsystem_pthread.dylib                 0x00007fff8c99bfb9 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff8fd42e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8c998f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8c99bfb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff741f2310  rcx: 0x00007fff59d13fc8  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff59d13ff0  rsp: 0x00007fff59d13fc8
       r8: 0x0000000000000010   r9: 0x00000000fffffff0  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00000001074fb000  r13: 0x000000010f4ea000  r14: 0x0000000000000006  r15: 0x0000000000000000
      rip: 0x00007fff8fd42866  rfl: 0x0000000000000206  cr2: 0x000000010f4ee000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x105ee4000 -        0x106f61fef  com.apple.logic10 (10.0.6 - 3130.20) <70902770-78BC-37D0-9F46-4788D9485EA6> /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
           0x1074ff000 -        0x107501fff  com.apple.music.apps.MAResourcesPlugInsShared (10.0.6 - 3130.20) <69AF1EEF-E05C-3A1C-97B6-D567D86913AE> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesPlugInsShared.framework/Versions/A/MAResou rcesPlugInsShared
           0x107506000 -        0x1078f0fff  com.apple.music.apps.MALogicLegacySong (10.0.6 - 3130.20) <BAC589F4-2CB4-3098-95D4-2502E5682A40> /Applications/Logic Pro X.app/Contents/Frameworks/MALogicLegacySong.framework/Versions/A/MALogicLegacyS ong
           0x1079f9000 -        0x107a31fff  com.apple.music.apps.MAAudioUnitSupport (10.0.6 - 3130.20) <CD0279C8-2750-34C9-BFC7-99C9E3901913> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnitSu pport
           0x107a55000 -        0x107a79ff7  com.apple.music.apps.MALoopManagement (10.0.6 - 3130.20) <865674BB-7C0C-36B1-96B3-930D8A9AF0D0> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagemen t
           0x107a8d000 -        0x107ba9ff7  com.apple.music.apps.MACore (10.0.6 - 3130.20) <80090F62-F3D6-3AE9-B6FA-2130489C367B> /Applications/Logic Pro X.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x107c1c000 -        0x107c57ff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <1EA92CDE-75AB-354C-99E5-BB5763AF988C> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x107c83000 -        0x107cfdff7  com.apple.music.apps.MAHarmony (10.0.6 - 3130.20) <CE0F2A57-F27B-38B5-92CC-BBF1CF310AA4> /Applications/Logic Pro X.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x107d1e000 -        0x108321ff7  com.apple.music.apps.MAPlugInGUI (10.0.6 - 3130.20) <127F665A-6778-3742-9D4F-23E5EEB7027E> /Applications/Logic Pro X.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x10863e000 -        0x108709ff7  com.apple.music.apps.OMF (10.0.6 - 3130.2) <0F02BBA3-9863-372D-81EB-FF0D670962ED> /Applications/Logic Pro X.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
           0x108732000 -        0x108edcff7  com.apple.music.apps.MADSP (10.0.6 - 3130.20) <DCE4D347-C2E2-323F-B1F1-3401034A150B> /Applications/Logic Pro X.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x1097a9000 -        0x1097cefff  com.apple.music.apps.LogicFileBrowser (10.0.6 - 3130.2) <8F7FBDBD-1D02-3619-ACAF-59ACDF7474CD> /Applications/Logic Pro X.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrowse r
           0x1097e5000 -        0x109833fff  com.apple.music.apps.LogicLoopBrowser (10.0.6 - 3130.2) <6C40A6BD-4868-3227-94A0-C2A792835FFF> /Applications/Logic Pro X.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrowse r
           0x10984e000 -        0x109852fff  com.apple.music.apps.MAResources (10.0.6 - 3130.20) <46236F99-16A4-3B38-8B40-C27960154BFE> /Applications/Logic Pro X.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
           0x109857000 -        0x10987eff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <E6FEB146-1384-3FDE-A9B4-3BC48DCEDC27> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x10989a000 -        0x1098a5fff  com.apple.music.apps.MAUnitTest (10.0.6 - 3130.20) <AA6E684A-778B-37CE-B859-78472F8E6340> /Applications/Logic Pro X.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
           0x1098b4000 -        0x109973ff7  com.apple.music.apps.MAFiles (10.0.6 - 3130.20) <E5D3D261-0296-316B-B086-EFDC918DBCFC> /Applications/Logic Pro X.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x1099bb000 -        0x109aa2ff7  com.apple.music.apps.MAAudioEngine (10.0.6 - 3130.20) <AB6C554A-2B15-3347-BC04-0A39137DE6F2> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
           0x109c35000 -        0x109c45fff  com.apple.StoreKit (1.0 - 232.6.1) <068D7007-CE70-3179-A024-942728C1C8AF> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
           0x109c5a000 -        0x109c82ff7  com.apple.music.apps.MAVideo (10.0.6 - 3130.20) <45CB9EE0-734E-37BB-B416-5828A45976E8> /Applications/Logic Pro X.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
           0x109c9a000 -        0x109fcbff7  com.apple.LogicUIKit (10.0.6 - 3130.20) <08308115-58D0-3175-8D38-4E41B23B81F9> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitLg.framework/Versions/A/MAToolKitLg
           0x10a10d000 -        0x10a49cff7  com.apple.music.apps.Animal (10.0.6 - 3130.20) <F198A172-3AA3-3DE2-BD55-15743F3650DD> /Applications/Logic Pro X.app/Contents/Frameworks/Animal.framework/Versions/A/Animal
           0x10a78d000 -        0x10a7a7ff7  com.apple.music.apps.MALoopBrowser (10.0.6 - 3130.2) <A05558E2-90D0-3953-ABB8-657942BC5628> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopBrowser.framework/Versions/A/MALoopBrowser
           0x10a7b8000 -        0x10a85cfff  com.apple.music.apps.MAWorkspace (10.0.6 - 3130.20) <430BA888-E8DE-381E-9514-38FB0E210ECC> /Applications/Logic Pro X.app/Contents/Frameworks/MAWorkspace.framework/Versions/A/MAWorkspace
           0x10a8b0000 -        0x10a8e8fff  com.apple.LogicUIKitHighLevel (10.0.6 - 3130.20) <D2C51FB7-674A-375F-8AE8-35A9EF73CD63> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitHighLevel.framework/Versions/A/MAToolKitHigh Level
           0x10a90c000 -        0x10a90efff  com.apple.music.apps.MAResourcesLg (10.0.6 - 3130.20) <34B8DF73-1B67-3034-8998-48D33C721045> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesLg.framework/Versions/A/MAResourcesLg
           0x10a913000 -        0x10a917fff  com.apple.music.apps.MAContentDownloading (10.0.6 - 3130.2) <91140EEF-E876-32AD-8ACA-B96F01EC0BB4> /Applications/Logic Pro X.app/Contents/Frameworks/MAContentDownloading.framework/Versions/A/MAContentDo wnloading
           0x10a923000 -        0x10a934fff +com.nxtbgthng.OAuth2Client (1.1.0 - 3130.2) <71ED7ABB-815D-3816-853E-421E40176E57> /Applications/Logic Pro X.app/Contents/Frameworks/OAuth2Client.framework/Versions/A/OAuth2Client
           0x10a945000 -        0x10a94afff +com.yourcompany.SoundCloudAPI (2.0b6 - 3130.2) <53A17635-26DE-33ED-8DF2-8F26FD2CFCE9> /Applications/Logic Pro X.app/Contents/Frameworks/SoundCloudAPI.framework/Versions/A/SoundCloudAPI
           0x10a957000 -        0x10a959fff  com.apple.music.apps.MAResourcesGB (10.0.6 - 3130.20) <FEA04925-9E75-3CDD-BA2A-B53C5BE4481E> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesGB.framework/Versions/A/MAResourcesGB
           0x10a961000 -        0x10a99ffff  com.apple.MAGFFoundation (1.0 - 3130.2) <3E2D5507-7DAB-30FD-AC6A-C1191F0E79B9> /Applications/Logic Pro X.app/Contents/Frameworks/MAGFFoundation.framework/Versions/A/MAGFFoundation
           0x10c2b9000 -        0x10c2bcffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10c3f8000 -        0x10c400ff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x10c445000 -        0x10c44ffff  com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <155DC309-68E0-36D0-A8AC-EFE91E23A0D5> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
           0x10d561000 -        0x10d563fff  com.apple.music.apps.anvil.resources (10.0.6 - 3130.20) <383BA64C-729F-347B-B9AC-2FA588AEFED3> /Applications/Logic Pro X.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
           0x10d569000 -        0x10d56bfff  com.apple.music.apps.common.resources (10.0.6 - 3130.20) <BB545971-8097-378C-BF0C-E69997C26B56> /Applications/Logic Pro X.app/Contents/PlugIns/common.res/Contents/MacOS/common
           0x10d571000 -        0x10d573ff7  com.apple.music.apps.ebp.resources (10.0.6 - 3130.20) <F90E9CC8-B087-3C1C-A006-576C87B6758F> /Applications/Logic Pro X.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
           0x10d579000 -        0x10d57bff7  com.apple.music.apps.efx.resources (10.0.6 - 3130.20) <237C0DF7-3834-3A73-9D9A-93BFB62B2EE4> /Applications/Logic Pro X.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
           0x10d581000 -        0x10d583ff7  com.apple.music.apps.egt.resources (10.0.6 - 3130.20) <46590D68-CC62-39D0-BA9A-2CB5DCA53723> /Applications/Logic Pro X.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
           0x10d589000 -        0x10d58bff7  com.apple.music.apps.emx.resources (10.0.6 - 3130.20) <E02CEE50-9830-37E2-AB51-B479AAECC936> /Applications/Logic Pro X.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
           0x10d591000 -        0x10d593ff7  com.apple.music.apps.es1.resources (10.0.6 - 3130.20) <B6D1F0D8-97CA-3A9D-A16B-D8120F14D3E7> /Applications/Logic Pro X.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
           0x10d599000 -        0x10d59bff7  com.apple.music.apps.es2.resources (10.0.6 - 3130.20) <D38F7D64-8A7F-33D3-BE16-7E39EC80514E> /Applications/Logic Pro X.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
           0x10d5a1000 -        0x10d5a3ff7  com.apple.music.apps.esp.resources (10.0.6 - 3130.20) <2D7BDC7F-16A5-334F-A168-E9886857DF8D> /Applications/Logic Pro X.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
           0x10d5a9000 -        0x10d5abff7  com.apple.music.apps.evb3.resources (10.0.6 - 3130.20) <850F7F44-6C5E-3737-AB9A-894B6085CD1A> /Applications/Logic Pro X.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
           0x10d5b1000 -        0x10d5b3ff7  com.apple.music.apps.evd6.resources (10.0.6 - 3130.20) <37332EC1-7A55-3997-B127-CA039085D478> /Applications/Logic Pro X.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
           0x10d5b9000 -        0x10d5bbff7  com.apple.music.apps.evoc.resources (10.0.6 - 3130.20) <8BA6139A-63C9-3AEB-A6EC-00F4CA8E0965> /Applications/Logic Pro X.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
           0x10d5c1000 -        0x10d5c3fff  com.apple.music.apps.evp88.resources (10.0.6 - 3130.20) <4ADAE329-C4EB-3BFF-9339-4D558E4EC4D9> /Applications/Logic Pro X.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
           0x10d5c9000 -        0x10d5cbfff  com.apple.music.apps.exs24.resources (10.0.6 - 3130.20) <7E0CE898-0895-3042-A5FB-4A31FDA0794D> /Applications/Logic Pro X.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
           0x10d5d1000 -        0x10d5d3fff  com.apple.music.apps.guitarcontrols.resources (10.0.6 - 3130.20) <48C9F761-BB67-3664-B00B-E128646CF95B> /Applications/Logic Pro X.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
           0x10d5d9000 -        0x10d5dbfff  com.apple.music.apps.mutapdel.resources (10.0.6 - 3130.20) <87A492E4-DDB2-38BD-85FC-5F9642215B4F> /Applications/Logic Pro X.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
           0x10e7fd000 -        0x10e7ffff7  com.apple.music.apps.pedalboard.resources (10.0.6 - 3130.20) <990C8CEA-15F3-33CF-AB79-D63869690399> /Applications/Logic Pro X.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
           0x10e805000 -        0x10e807fff  com.apple.music.apps.revolver.resources (10.0.6 - 3130.20) <ED226BEA-63A7-3339-B059-9503A7BED4DA> /Applications/Logic Pro X.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
           0x10e81f000 -        0x10e83cfff  com.apogee.QuartetPlugIn (1.19.4 - 1.19.4) <AE19824C-6C68-31B1-841B-C5BFDD73D56E> /System/Library/Extensions/QuartetPlugIn.bundle/Contents/MacOS/QuartetPlugIn
           0x10e9d6000 -        0x10e9daffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10ea09000 -        0x10ea31ffb  libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x10f34c000 -        0x10f34dff9 +cl_kernels (???) <CA4A4797-75E1-42C0-897D-9F79F6285A2A> cl_kernels
           0x10f47d000 -        0x10f47dfeb +cl_kernels (???) <DFAEB8E6-F1F2-4EE9-9B91-E5218D750F0F> cl_kernels
           0x10f7f1000 -        0x10f7f2ffa +cl_kernels (???) <82354DFA-083E-4B22-8A49-1004BCA4D307> cl_kernels
           0x110311000 -        0x110313fff  com.apple.music.apps.sphere.resources (10.0.6 - 3130.20) <7EDE5332-CF8B-36B8-9B2C-B31AC5220571> /Applications/Logic Pro X.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
           0x115644000 -        0x115647fff  libspindump.dylib (161.2) <B8AA261C-AACA-3924-AB0E-06E2C37E48B0> /usr/lib/libspindump.dylib
           0x11817e000 -        0x118181ff7  com.apple.iokit.SCSITaskLib (3.6.6 - 3.6.6) <B7B79231-A899-3C2E-8FA8-97D9F9BF8A9A> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
           0x1485ab000 -        0x1485b6fff  libGPUSupport.dylib (9.6) <039FC0EF-1B2C-3465-907B-A1856DCF5ADF> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x148fdf000 -        0x148fe1fe8 +cl_kernels (???) <49722F8D-05CC-4572-B3E0-88A044D70B70> cl_kernels
           0x149173000 -        0x149179ff7  libCGXCoreImage.A.dylib (599.21.1) <D66366B5-33BA-3715-9A40-50F0FF5EAE39> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
           0x14993a000 -        0x149941fff  com.apple.music.apps.midi.device.plugin.Logic-Remote (10.0.6 - 3130.20) <31F75946-116F-3CF1-A6EA-B664C01FC02E> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Logic Remote.bundle/Contents/MacOS/Logic Remote
           0x14a232000 -        0x14a318fef  unorm8_bgra.dylib (2.3.58) <6E7397EF-CC78-3C15-8B21-05E7FB47F645> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x14b63f000 -        0x14b641fff  com.apple.music.apps.midi.device.plugin.FaderMaster-4-100 (10.0.6 - 3130.20) <D30CBA15-9A1E-3C07-903C-A2393E232AD8> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/FaderMaster 4-100.bundle/Contents/MacOS/FaderMaster 4-100
           0x153f0d000 -        0x153f15fff  com.apple.music.apps.midi.device.plugin.CS-32 (10.0.6 - 3130.20) <3B78677D-B114-36B8-98EA-E94CBC5B0392> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
           0x153f1e000 -        0x153f20fff  com.apple.music.apps.midi.device.plugin.GiO (10.0.6 - 3130.20) <A414A706-FC5E-38F2-92B9-94DEE14C147C> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
           0x153f26000 -        0x153f39fff  com.apple.music.apps.midi.device.plugin.HUI (10.0.6 - 3130.20) <CA11742C-517D-3194-9F34-153B3F656A79> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
           0x153f48000 -        0x153f4bff7  com.apple.music.apps.midi.device.plugin.iControl (10.0.6 - 3130.20) <EB01CEAA-D83F-3775-8317-2B33011C37EE> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
           0x153f51000 -        0x153f90fff  com.apple.music.apps.midi.device.plugin.Logic-Control (10.0.6 - 3130.20) <DFB79103-FA23-35A6-A484-4FABB1C7E061> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
           0x153fb3000 -        0x153fb4ff7  com.apple.music.apps.midi.device.plugin.MCS3 (10.0.6 - 3130.20) <0D1828AC-23B4-3E9E-9EF3-CE1DF9508FCD> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
           0x153fb9000 -        0x153fc0fff  com.apple.music.apps.midi.device.plugin.microKONTROL (10.0.6 - 3130.20) <FBDC3892-ACCD-33A5-B04F-685EEC6EB29B> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
           0x153fc8000 -        0x153fd4ff7  com.apple.music.apps.midi.device.plugin.Motormix (10.0.6 - 3130.20) <E73A4303-1D51-3CA9-B687-A0F0EE90D569> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Motormix.bundle/Contents/MacOS/Motormix
           0x153fdd000 -        0x153fdeff7  com.apple.music.apps.midi.device.plugin.Recording-Light (10.0.6 - 3130.20) <60FD3CCD-204B-39DE-987A-E273BB747179> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
           0x153fe3000 -        0x153ff0fff  com.apple.music.apps.midi.device.plugin.SAC-2K (10.0.6 - 3130.20) <79C9E9A6-B0B5-3EAE-9990-E5B430F28F1E> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/SAC-2K.bundle/Contents/MacOS/SAC-2K
           0x153ff9000 -        0x153ffefff  com.apple.music.apps.midi.device.plugin.SI-24 (10.0.6 - 3130.20) <CD4B92B7-FC21-3C2A-AA0A-E21B5628A612> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/SI-24.bundle/Contents/MacOS/SI-24
           0x154005000 -        0x154012ff7  com.apple.music.apps.midi.device.plugin.TouchOSC (10.0.6 - 3130.20) <E798E3BC-2164-3525-B605-CF81956800F5> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
           0x15401f000 -        0x154023ff7  com.apple.music.apps.midi.device.plugin.TranzPort (10.0.6 - 3130.20) <E90DA854-712E-3B35-9C50-E5CFA4B707C0> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
           0x154028000 -        0x154032ff7  com.apple.music.apps.midi.device.plugin.US-2400 (10.0.6 - 3130.20) <DE9631C7-4242-3515-80EE-3054550F2146> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
        0x123400000000 -     0x12340034dff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.24.11 - 8.2.4) <32F185FB-3FC5-312C-80DD-AC47FE71C8D2> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
        0x7fff60dc8000 -     0x7fff60dfb817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8202a000 -     0x7fff8259afff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff825a0000 -     0x7fff825d9ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff825da000 -     0x7fff825defff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff825df000 -     0x7fff8262cfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff82645000 -     0x7fff82645ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff82646000 -     0x7fff82672fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff82673000 -     0x7fff827c6ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff827c7000 -     0x7fff827e4ff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff827e5000 -     0x7fff827e5fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff827e6000 -     0x7fff827eaff7  libGIF.dylib (1042.2) <0A9267FF-D93A-36DF-87B9-BA34C1166C0C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff827eb000 -     0x7fff827faff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff82bd7000 -     0x7fff82cc6fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82cc7000 -     0x7fff82cceff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff82ccf000 -     0x7fff82ccffff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff82cd0000 -     0x7fff82d94ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff82d95000 -     0x7fff82dedff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff82dee000 -     0x7fff82df5ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff82df6000 -     0x7fff82e03ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff82e04000 -     0x7fff82e08fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff82e09000 -     0x7fff82ef7fff  libJP2.dylib (1042.2) <DD2DE799-C053-3C6A-91EC-D637CBD6FF90> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff82efa000 -     0x7fff82f23fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff82f47000 -     0x7fff82f63fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff82f82000 -     0x7fff82fdbfff  libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff82fdc000 -     0x7fff82fe0ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff82fe2000 -     0x7fff83049ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8304a000 -     0x7fff831e6ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff831e7000 -     0x7fff83317ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff83318000 -     0x7fff83328ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff83329000 -     0x7fff8339cfff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8339d000 -     0x7fff8339eff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x

    As Pancenter said plus you will probably want to read the following......
    https://discussions.apple.com/docs/DOC-5671
    Also make sure you are using the latest Quartet drivers.... and firmware updates
    http://www.apogeedigital.com/support/quartet
    Finally bounce in real time mode and not in offline mode and dont bounce directly to iTunes if that is what you are trying to do...
    Note: Other crash threads may report the same type of crash.. but the causes are often quite different......

  • Hoe to creat own logical database inhr

    hi all,
    can anyone send the codefor creating the own logical databse like pnp in HR.

    <b>Creating a Logical Database</b>
    Open the Logical Database Builder (<b>SE36</b>)
    1. Enter a name on the initial screen of the Logical Database Builder and choose Create.
    2. A dialog box appears. Enter a short text. You can change this later by choosing Extras -> Short text or Administration info.
    3. Once you have entered the short text, you must define the root node of the logical database. Enter the node name and its attributes. There are three different types of nodes:
    The logical DB gets created.
    Then to edit the logical DB, use the following steps.
    The structure editor of the Logical Database Builder appears. On the left is the name of the root node, followed by a code for the node type: T for a database table, S for a ABAP Dictionary type, and C for a type from a type group. The new logical database now has a structure with a single node.
    You can now extend the structure as described in Editing the Structure.
    If you choose Next screen (right arrow in the application toolbar), a screen appears on which you can enter a search help for the logical database as described under Editing Search Helps.
    If you choose Next screen (right arrow in the application toolbar), a dialog box appears, asking you whether the system should generate the selections for the logical database. When you have confirmed the dialog box, a list appears, on which you can select all of the nodes that you want to use for field selections or dynamic selections. The fields that you select are included in the source code generated by the system for the selection include.
    The generated selection include is displayed in the ABAP Editor. You can change it as described in Editing Selections.
    If you choose Next screen (right arrow in the application toolbar), a dialog box appears, asking you whether the system should generate the database program for the logical database. The database program is generated from the structure and the selection include. It has a modular structure, consisting of several include programs and all of the necessary subroutines, with proposals for the statements that will read the data.
    The generated database program is displayed in the ABAP Editor. You can change it as described in Editing the Database Program.
    If you repeatedly choose Previous screen (left arrow in the application toolbar), you can display and change the general attributes of the logical database.
    Finally, you can maintain optional selection texts and documentation.
    <b>Reward if helpful</b>

  • What is  logical database

    hi,
    what is logical databse  and its application.
    please tell ...
    thanks

    I have explained below the steps of how a LDB works in a report program.
    Logical database is a program which fetches data from the database and provides it to the other programs.
    It has its own selection screen. When we use a LDB in a report program, that selection screen automatically appears for this report program.
    In order to use it in a report program:
    1. We have to mention the LDB name in the attributes of report program… say for eg: we mention PNP (is one of the LDB).
    2. We have to mention a node in the report program. Node is nothing but a work area.
             This is done by declaring the TABLES statement in the report program.
              For eg:      TABLES : PERNR
              PERNR is a structure which contains the basic details of an employee (related to HR module)
    3. We have to mention the internal tables within which the relevant data is fetched.
              This is done by declaring the INFOTYPES statement in the report program.
              For eg:   INFOTYPES: 0000, 0001,0002, 0006, 0007.
              Infotypes are nothing but a table structure. Here we are declaring the internal tables PA0000, PA0001, PA0002.....which will have the same structure of corresponding database tables PA0000, PA0001, PA0002.. in the database.
    Now, how the data is actually fetched in to the program:
    1.     The fetching of the data is trigerrred by a ‘GET node’ event.
    Say, if we mention - GET PERNR. statement in the program. The data rows satisfying the parameters selected in selection screen are fetched from database, but filled into the PERNR work area row by row.
    2.     For each row fetched into the PERNR - relevant data is fetched into the internal tables PA0000, PA0001, PA0002 from database tables. For eg: PA0002 is a database table which holds the personal details of an employee and there may be many rows of data for  the same employee. So based on the personnel number (employee number) fetched into PERNR all data records of that employee are fetched in to our internal table pa0002 from the database table PA0002.
                 Like wise , the other internal tables - pa0003, pa0006 are filled with the corresponding data.
                Like data in PERNR work area acts like a primary key to fetch the data from data base to the internal tables.           
    3.     For these data fetched into internal tables - we can write our data processing statements or just display on the list report.
                 So what ever statements we write between GET PERNR. and END SELECTION. are executed repeatedly like within a loop until all data records satisfying the parameters entered in selection screen are fetched into the node(work area) PERNR.
                 GET PERNR.   * like LOOP.
                           write pa0002-name.   * This statement is executed for each data record fetched into the work area PERNR.
    other data processing statements.
                 END-SELECTION        * like END LOOP.
    Reward if useful.
    Regards,
    Pavithra

Maybe you are looking for

  • SUM Function in RTF Template

    Hi buddies, can we use functions like SUM,AVG etc. in the RTF Template. If possible please give adivce for the below scenario I have one column in the main body table "Extended Amount", I want to sum this field for the another column Total Extended A

  • Copying data from excel(more than one row) and pasting into table control

    I have a requirement to copy data from excel and have it pasted it into the corresponding fields table control when the user clicks on an icon.For the first part I used a class to copy it from the clip board.By the previous process,I get the data ins

  • HDMI Adapter no longer charges new iPad ?

    I bought a shiny new iPad 3rd Gen, and am having difficulties with my existing Apple HDMI Adapter, which, apart from the "This accessory is not supported" popup, will not charge the device even when being plugged to an iPad Power Adapter. Have any of

  • Changing firmware 4.0735.3.0.2 to 4.0736.3.1.2

    hi! friends,I have N73me phone,purchased on 3/july/2007.Last week I went to Nokia care centre to update my firmware with latest one,but they updated with 4.0735.3.0.2.I saw in some source this for standared edition ,for music edittion the firmware is

  • Create XML-element with different prefixes

    Hello, In Infopath 2010 I want to generate a XML-element with C#. I've got a XML-structure with following elements: /my:meineFelder/my:gruppe1/my:gruppe2/my:unter/my:art /my:meineFelder/my:gruppe1/my:gruppe2/ns1:FW1/MANDT To fill the field "art" I us