ADF with BEPL--Complex logic and workflow

Hi,
We have big complex requirement of building applicaiton with complex workflow for huge user base. We are thinkng of useing ADF for application logic and BEPL for complex workflow.
What all are pros and cons if we go ADF and BEPL.
Thanks.

Thanks Shay for reply.
We are looking at pro's and con's for uesing ADF with Oracle workflow and ADF with BPEL.
Also if we use Oracle workflow, we will get the work flow notifications in worklist. We can display worklist in home page of the user. If we use BPEL, how to get the BPEL notifications to be displayed in home page(Immediate page after used logged into application) of user.
Thanks.
Edited by: user636903 on Aug 17, 2009 9:30 PM

Similar Messages

  • Is Yosemite compatible with Kodak production planning and workflow software like Prinergy Workflow?

    Is the new OS 10.10 system compatible with Kodak production planning and workflow software? like Prinergy Workflow (incl. the Workshop and Workspace user interfaces as well as the ColorFlow and Preps Client) and Prinergy Evo Client,

    Steven,
    Thank you for your quick reply and information there in. The video is very nice too. Great angles and composition.
    So I guess, I'm going to have swap my drive and re-install my OS when the machine arrives.
    I'm not going to be able to capture directly to my desktop (due to poratability reasons). So is there I way in Premire CS3 to uncompress the HDV from the camera and store it in my HDD in uncompressed format? I don't mind having to do this extra step each time if the post production experience is going to be better.
    I've heard a lot about Aspect HD from you and others here as well as other forums. I'm not very video savvy yet and don't understand a lot of the vocabulary used :). I've been to their website and don't get what their products are supposed to give me either (I guess their audience understands exactly what they are saying).
    What I do get is it decompresses the MPEG 2 to saves it to yout HDD for editing purposes. However, I would have thought the Premier Pro CS3 would have that capability as part of the product, no?
    I'd also like to use footage that is not HDV as well as photos/images (composits) but still retain the final cut to be HDV quality. Is this possible and if so, what does it do to the editing experience/performance?
    Will I be able to output the final cut back to my camera's Mini DV tape (without having to buy Aspect HD)?

  • Working with a complex query and trying to get rid of duplicates

    I'm working with the following complex query, and I need to
    select vin, number, year, make, model, and state from
    2007 vehicles in certain models, vin types
    2006 vehicles in certain models, vin types
    Is there a more efficient way to write this than how I've been writing it?:
    select distinct vehicle.vin VIN, unit.STATION_ID STID, unit.EMBEDDED_AREA_CODE||unit.EMBEDDED_PREFIX||lpad(unit.EMBEDDED_RON,4,0)
    MIN, unit.AUTHENTICATION_ID AUTHCODE, vehicle.user_veh_desc, veh_model.VEH_MODEL_DESC MODEL, veh_model.VEH_MANUF_YEAR YEAR, acct_veh.STATE STATE
    from vehicle
    inner join veh_unit on vehicle.vehicle_sak=veh_unit.vehicle_sak
    inner join unit on veh_unit.unit_sak=unit.unit_sak
    inner join vdu_profile on vdu_profile.vehicle_sak=vehicle.vehicle_sak
    inner join vdu_profile_program on vdu_profile_program.VDU_PROFILE_SAK=vdu_profile.VDU_PROFILE_SAK
    inner join veh_model on vehicle.VEH_MODEL = veh_model.VEH_MODEL
    inner join acct_veh on acct_veh.VEHICLE_SAK = vehicle.VEHICLE_SAK
    and vehicle.user_veh_desc like ('%2007%')
    AND unit.unit_gen_id >= 36
    AND vdu_profile_program.VDU_PROGRAM_SAK = 3
    and vdu_profile_program.PREFERENCE_VALUE = 'Y'
    and acct_veh.STATE in ('MN','ND','IA')
    AND (veh_model.VEH_MODEL_DESC like ('%Vehicle2%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle3%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle5%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle6%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle7%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle8%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle9%'))
    and ACCT_VEH.ACCT_VEH_STATUS_ID = 'A'
    and (vehicle.vin like ('_______3_________')
    or vehicle.vin like ('_______W_________')
    or vehicle.vin like ('_______K_________')
    or vehicle.vin like ('_______0_________'))
    UNION
    select distinct vehicle.vin VIN, unit.STATION_ID STID, unit.EMBEDDED_AREA_CODE||unit.EMBEDDED_PREFIX||lpad(unit.EMBEDDED_RON,4,0)
    MIN, unit.AUTHENTICATION_ID AUTHCODE, vehicle.user_veh_desc, veh_model.VEH_MODEL_DESC MODEL, veh_model.VEH_MANUF_YEAR YEAR, acct_veh.STATE STATE
    from vehicle
    inner join veh_unit on vehicle.vehicle_sak=veh_unit.vehicle_sak
    inner join unit on veh_unit.unit_sak=unit.unit_sak
    inner join vdu_profile on vdu_profile.vehicle_sak=vehicle.vehicle_sak
    inner join vdu_profile_program on vdu_profile_program.VDU_PROFILE_SAK=vdu_profile.VDU_PROFILE_SAK
    inner join veh_model on vehicle.VEH_MODEL = veh_model.VEH_MODEL
    inner join acct_veh on acct_veh.VEHICLE_SAK = vehicle.VEHICLE_SAK
    and vehicle.user_veh_desc like ('%2006%')
    AND unit.unit_gen_id >= 36
    AND vdu_profile_program.VDU_PROGRAM_SAK = 3
    and vdu_profile_program.PREFERENCE_VALUE = 'Y'
    and acct_veh.STATE in ('MN','ND','IA')
    AND (veh_model.VEH_MODEL_DESC like ('%Vehicle1%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle2%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle3%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle4%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle5%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle6%')
    OR veh_model.VEH_MODEL_DESC like ('%Vehicle7%'))
    and ACCT_VEH.ACCT_VEH_STATUS_ID = 'A'
    and (vehicle.vin like ('_______Z_________')
    or vehicle.vin like ('_______K_________'))

    I am not sure how many rows you have in the tables but I am assuming that there would be performance benefits in performing the query only once. You can combine similar coding and use an OR condition for the parts that are different. I left the 'K' vin comparison in both years for readability.
    I was not able to fully test my code but I believe that it will work as is. I hope it helps. If you are happier with the UNION you may want to investigate the WITH clause as you can query a subset of data twice, rather than the full data set.
    -- Common code 
    SELECT DISTINCT
       vehicle.vin,
       unit.station_id stid,
       unit.embedded_area_code || unit.embedded_prefix || LPAD (unit.embedded_ron, 4, 0) MIN,
       unit.authentication_id authcode,
       vehicle.user_veh_desc,
       veh_model.veh_model_desc model,
       veh_model.veh_manuf_year YEAR,
       acct_veh.state
    FROM vehicle
    INNER JOIN veh_unit           
       ON vehicle.vehicle_sak = veh_unit.vehicle_sak
    INNER JOIN unit               
       ON veh_unit.unit_sak = unit.unit_sak
    INNER JOIN vdu_profile        
       ON vdu_profile.vehicle_sak = vehicle.vehicle_sak
    INNER JOIN vdu_profile_program
       ON vdu_profile_program.vdu_profile_sak = vdu_profile.vdu_profile_sak
    INNER JOIN veh_model          
       ON vehicle.veh_model = veh_model.veh_model
    INNER JOIN acct_veh           
       ON acct_veh.vehicle_sak = vehicle.vehicle_sak     
    AND unit.unit_gen_id >= 36
    AND vdu_profile_program.vdu_program_sak = 3
    AND vdu_profile_program.preference_value = 'Y'
    AND acct_veh.state IN ('MN', 'ND', 'IA')
    AND acct_veh.acct_veh_status_id = 'A'
    AND
    -- Annual code
          (   -- 2006 conditions 
          AND vehicle.user_veh_desc LIKE ('%2007%')
          AND regexp_like(veh_model.veh_model_desc, 'Vehicle[2356789]')
          AND regexp_like(vehicle.vin, '_{7}[3WK0]_{9}')           
       OR
          (   -- 2007 conditions 
          AND vehicle.user_veh_desc LIKE ('%2006%')
          AND regexp_like(veh_model.veh_model_desc, 'Vehicle[1234567]')
          AND regexp_like(vehicle.vin, '_{7}[ZK]_{9}')
       ).

  • Wedding photography running out of space. Need help with thousands of photos, and workflow

    So my studio does wedding photography. Me and my partner both take photos.  We have about 30,000 photos just from the last 2 years.  We are running out of space big time. We both have 1 terabyte magnetic hard drives in our computers. I have about 80gb left and she has about 120gb left. Needless to say, since I myself take about 50gb of photos per wedding, I'm not going to last long. We use lightroom.
    So far I have managed to backup everything on an external 2TB hard drive for both of us. I save both RAW and Jpegs to it. I also have everything backed up on an online server.  So here's my first issue.  What I've been doing, is for the previous year (completed weddings) I delete all the RAWs from the computers. I leave the JPEG's on the computer incase I need them quickly. I keep all the RAWS on the external hard drives and online.  But even doing this, deleting the RAWs from completed weddings off the internal hard drives, I'm still almost out of space. My computer is so slow because of this even though it's a top of the line computer with 6 gigs of triple channel ram. Lightroom runs so very slow and lags so bad.
    So my first question is:  By deleting the raws off of my computer, if I need to go back a few years from now and re-save the raw files or re-edit, will lightroom remember my develop settings or will I have to completely re-edit every photo?  I have been saving a catalog file for each year, and start a new one every year.  I do not use XMP sidecar files I save everything to the lightroom database.  As long as I have the catalog file backed up, am I safe? Or am I doing this wrong? Because if open an old catalog file, it will say all the photos are not found on my computer (obviously).
    My second question is:  I am going to be investing in more hard drives and want to do it right this time around. I want to invest in SSD drives for maximum performance.  Here is what my plan is.  One SSD drive for windows/programs, one SSD drive for lightroom scratch disk, and one 1TB "Velociraptor" 10,000rpm magnetic hard drive for keeping the actual images on.  Is this not right? Am I planning this out wrong?
    Here is our current workflow. I am very welcome to suggestions:
    1) Shoot wedding.
    2) Import RAW files from CF card to computer. It goes in a folder for the client with the images going into different sub folders by category such as "reception" and "ceremony"
    3) Import folder into lightroom4.
    4) Edit photos. I do not use XMP sidecar, I use database.
    5) Export files in JPEG form into the same client folder.
    6) At the end of the year I save the catalog, make a new catalog for the new year. I delete the RAW files off of my hard drive after backing them up on 2TB external hard drive. I leave the jpegs and the client's folder on the computer hard drive.

    My guess is that you are not actually deleting the original raws from your internal hard drives and have lots and lots of crud around that you are not aware off so you should go through your internal drives with a fine-toothed comb. Don't forget to actually empty the trash when you delete! 1TB is more than enough disk space for storing the Lightroom catalog file, previews and some jpegs. 30.000 photos is really not that much. My main catalog  has >50.000 images in it with the raw files all stored on external hard drives. The catalog itself is on my internal 256 GB SSD HD that also houses the previews (so I can use it with the raw files offline) and the operating system as well as a lot of software (photoshop, office, iWorks, Aperture, etc.). It is more than enough space as it still has more than 150 GB free. I automatically back up everything, including the external HD that stores the raw images to separate external HDs stored in different places.

  • IMovie´09 Project with synced photo clips and workflow

    Hi,
    as I am new to Imovie, I have some difficulties to start with, no real Manual available and so on. Maybe someone can help me out a bit.
    I want to sync Pictures to a given music piece which has 120 bpm. I want to change the pictures every four seconds, but I did not figure out, how to adjust the timing of my pictures.
    I want to add overblendings for two seconds. These values are added to the duration of the importet picture. I want to have them embedded in the duration of my 4 seconds and so on. If I enter a value in the inspector it does not accept these nor the yellow editing borders really keep the desired value. If there is any good documentation out there it would be fine to have that. It is not a good idea to have those short pieces of online information. Workflow should be explained and so on...
    Thanks for your help
    Best regards
    Tim
    Do I have to prepare the matereial in a certain way to edit it and son...
    Thx for your answer
    Message was edited by: TB11188

    Mac OS X 10.6.8
    imovie 09
    76 GB free
    all software up to date
    Yes I have had the same problem. Exactly. Not the amount of music or sound or effects I think. I have produced many 2+ hour films loaded with $hit in Imovie 09 with no problems. Until now.
    Other projects work fine. I tried creating a duplicate project, it also crashes imovie.
    I opened and restarted 10 times, finally looks like I am able to 'share' and export the corrupted project as a .mov or mp4 file.
    Hope it works I have many hours invested.

  • BRM compatability with Payroll Claims functionality and workflows

    One of SAP India Consulting clients is actively wanting to pursue the Payroll Claims functionality along with BRM. I seek your support on the following queries:
    a.     Is BRM compatible with India Claims functionality in India Payroll
    b.     Will BRM support building of eligibility and entitlement rules per job band or location of an employee? Will this be to the extent that the rules for various of location u2013 job level combinations within a year (depending on employee transfers and promotions through the year) will be auto effected for the respective periods?
    c.     Will BRM support building of workflow rules as well (like defining levels of approval per claim type, defining agents at each level, mails to be sent, auto escalation mechanism etc.)
    d.     Do we have any precedents of BRM in conjunction with Payroll at any client place globally?
    e.     Do we have any POC in our landscape system, which can be showcased to Infosys, for this use case
    f.                   What is the typical effort to implement BRM for above context (both in terms of calendar time and person days efforts)
    Kind Regards
    Moulee

    Dear Moulee,
    Thank you for the enquiry. As far as I understand your scenario, the client is trying to use BRM within Payroll Claims process (implemented using SAP NW BPM). And please correct me if I am wrong, you are expecting that there are some preconfigured/predefined rules for Payroll Claims functionality. If that is the case, I am afraid there are no preconfigured/predefined rules for any kind of functionality. We have to implement the rules according to the requirement and then use them in the scenario accordingly.
    SAP NW BRM can be used in general to write rules using two types of input objects.
                    a.     XML Scemas
    SDN Article: http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/00a4a7c5-da42-2b10-939c-8ec355346f3a
                    b.     Java Classes
    SDN Article: http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/103ec90f-5b43-2b10-189c-dfa6db14061a
    And the rules once written using either of the above choices, can be invoked by passing a list of the input XMLs/java objects depending on the implementation and the rules will execute on those input data and will return the modified data back as a list to the caller.
    And SAP NW BRM is integrated into SAP NW BPM which will enable the user to create rules inside the process and use them accordingly.
    Invocation of rules can be done in the following ways:
                    a.     Invoke rules as a web-service
                    b.     Invoke rules in EJB mode from web applications
    Please find below some links to the content on SDN about BRM and its usages and some useful articles:
    http://www.sdn.sap.com/irj/sdn/nw-rules-management
    Integration of SAP BPM and BRM:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/9009be68-1e9a-2c10-fd91-8f5fcb00474c
    Hope this helps you. Please let us know if you need further information.
    Regards,
    Santosh Giri

  • I need help with a complex formula

    I am a current student attempting to keep track of requirements for college along with my courses that I am taking. I have two tables. I am trying to put an X in Table2:A2 if the data from Table2:B2 AND Table2:C2 matches Table1:SUBJ AND Table1:CRS. The match in Table1 has to be in the same row since there are duplicates. So a check mark will appear in Table2 once I've taken the class and it shows up in Table1. Does anyone have a equation that would make this work?
    Here's a link so you can download the spreadsheet in Numbers '09 and fool around with it.

    My error.I was reading "The match in Table1 has to be in the same row since there are duplicates," and overgeneralizing. I was wondering about the "complex formula" part of the request.
    Here's another go—with a 'complex' formula, and a couple of 'helper columns.'
    Column D on both tables contains a simple formula that combines the subject and course number into a single string.
    =B&" "&C
    Table 1::Column A contains the more complex formula:
    =IFERROR(IF(AND(MATCH(D2,Table 2 :: $D,0)>0,D2<>" "),"✓",""),"")
    IFERROR traps the error that occurs when there's no match.
    the D<>" " catches the rows where no subject and course number has been entered in the first table.
    Descriptions and further examples of the functions used are available in the iWork formulas and Functions User Guide, The guide is downloadable via the Help menu in Numbers.
    Regards,
    Barry

  • Logical flow between User forms and workflows

    Hi,
    I want to know the logical flow among jsps,UserForms and workflows in IDM.
    This may appear as a silly quest. But I want to know how exctly the workflows are getting excuted when we click the buttons on the forms....
    For eg While creating the user after gving the user details in Tabbed User form when we click on save how it is calling Create User Workflow....
    where is the link and how its happening.....
    If any one know this please reply me....this a quest remaining in my mind since so many days....
    Thanks in advance....

    I dont think, there is any xml codes in any of the forms for calling workflow. One needs to render a form for any workflow. Whenever you hit new User , the create user workflow gets initiated and the form and the default form for create user is Tabbed User Form. activities and forms are mapped according to the authorisation level. If you create any Admin role, then we need to specify a form for the admin's capabilities. I guess for configurator , to create a a new user, the form has to be Tabbed User Form by default. For a custom Lanch user process, one needs to include a form along with the workflow. We can do that. Thats what I know till date.
    Thanks,
    Manila

  • Workflow integration with Aperture or iPhoto, and storage/deletion questions.

    I have been using my iPad to download and view photos when I am travelling. I liked the fact that I could delete bad photos or do basic edits like crops and straightens in the "Photos" app and those edits would be saved when I transferred the photos to Aperture. And furthermore, the edits would be shown in Aperture as edits with the ability to revert back to the original or modify those edits later (for example if I wanted to change a crop or fine tune a straighten). This is an example of nearly perfect workflow integration, only problem is that the tools are pretty basic, for example the straighten tool requires an awkward gesture and has no control for fine tuning.
    Now when I bought iPhoto for iOS I figured it would be a more advanced version of that except with more complex editing abilities. However, when I make my edits in iPhoto for iOS, no matter how I import my photos onto my mac there seems to always be two different versions of each photo rather than having both the original and the edit combined like when I edit directly in the "Photos" app. And there's no way to fine tune the edits once imported into iPhoto or Aperture like there is when I edit the photos inside of the Photos app. Is this the correct behavior, and if so, is there anyway to make iPhoto for IOS behave more like the Photos app editing mode in terms of workflow integration.
    Also, I am unsure how the photos are stored in iPhoto for IOS. If I have a bunch of freshly imported photos in my "Photos" app's film roll, and then I edit them all in iPhoto for iOS, I now have two versions of each photo - one in iPhoto and one in the film roll. If I want to delete some photos to save space, can I delete all of the originals in the Film Roll and just keep the edits in iPhoto until I can sync with my Mac, or will that delete it in both places? Manually saving each edit as a new photo in the Film Roll and then deleting the original is tedious. Is the iPhoto app's library only storing the edited versions while the film roll is only storing the originals? Seems kind of like a weird way to handle things, and very unintuititive for those of us used to either iPhoto or the iOS film roll method of editing.
    I'm a fairly advanced user and all of this is pretty confusing to me. It seems like I might just have to ignore iPhoto for iOS and go back to my old method of editing in the Photos app for workflow integration purposes, but I wanted to check to see if I was missing something or doing something wrong first before giving up on iPhoto for iOS.

    Hello Robert. wow, dense prose...
    this wil be more transversal.. hope you'll forgive me.
    iPhoto has several shortcomings that other people might point out. I'll just mention a few.
    when you adjust the image, using the adjustement HUD that floats around just like the one in aperture, you're making destructive pixel changes. True, iP 6 has a way of keeping the original untouched, but the two images will live separate lives (in albums, etc). Furthermore: once you move to the next picture you want to enhance, all the adjustment HUD sliders return to zero. This means that you'll never be able to return to an image and visualize the changes you made to the picture looking at the sliders. You'll have to guess. and restart from scratch.
    About quality: the adjustement sliders in Aperture are waaay more subtle. iPhoto sliders impact the image in a very visible way.... as you "touch" will immprove, you might start to feel that adjusting with iPhoto is a bit gross.
    File renaming: personnal opinion: don't bother. set your camera to increase numbering always... and if possible choose a meaningful prefix (few cameras allow that, the Nikon D200 does). beyond that, I don't have time for this, and don't need it... keywording images is a much more effective way of making them easier to locate. my own view. others will disagree.
    duplicates: lots of people have identified this shortcoming in aperture. considering in version 1.5 they took the time to be able to identify referenced masters in a pretty comprehensive way (using a bunch of data like name+ date/time of capture to reconnect to a lost master), I'd be really surprised if the next major version doesn't fix that.
    Aperture accepts to import/reference your iPhoto folder but I don't think the former will see changes made in the latter..?
    just a few ideas.... HTH
    yours
    maxpol

  • What is the best MIDI controller for Logic, and is Axiom Pro the only line with "Hyper Control?

    What is the best MIDI keyboard/control surface to use with LOGIC (Studio - which I assume is the latest & greatest version) and is Axiom Pro the only line that has Hyper control? I already own the Axiom Pro 61, but prefer more keys, and though I like much about it, the keys aren't very easy for playing more complex material, and there is an obvious delay regarding attack response (esp. noticeable at faster speeds). There are other issues as well I've read of regarding key sticking (though I consider myself lucky mine do not, there is nontheless a sluggish clunckiness issue which neither helps agility/acuracy nor the delay factor.) and the unit not lasting very long before it breaks and needs repairing. And lastly, I am no fan of Avid and care not to support them in the least.

    Sorry, but is this an iPad question? Axiom Pro 61 is not an iPad-compatible peripheral, so perhaps you mean to post in the Logic forum?

  • Logic keeps on crashing with E/W Play and Absynth

    Recently Logic 9.1.8 (running on 64 bit 10.6.8) is crashing every 5 minutes or so.
    I'm not doing anything particularly intensive (there are only 8 tracks or so) however I am using some 3rd pary plugins, namely "Play" from East West and Absynth.
    It crashes seemingly randomly during playback. I've done far more complicated stuff than I'm doing now a couple of years ago (with the same plugins) and didn't have this issue.
    The only odd thing I've seen is that Absynth is filling, at times, over half of the CPU bar at the bottom, despite it only playing one track. That said, sometimes it crashes during playback when absynth isn't in the music.
    I'm using a 2.7Ghz quad-core 2011 iMac with (only) 4gb of RAM (though when it crashes there is still often in excess of half a gb free.
    Please help me!
    here's a copy of the crash report
    Process:    
    Logic Pro [428]
    Path:       
    /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: 
    com.apple.logic.pro
    Version:    
    9.1.8 (1700.67)
    Build Info: 
    Logic-17006700~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [107]
    Date/Time:  
    2014-05-25 13:11:12.796 +0100
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    199326 sec
    Crashes Since Last Report:      
    17
    Per-App Interval Since Last Report:  93131 sec
    Per-App Crashes Since Last Report:   16
    Anonymous UUID:                 
    7A6C67A1-B014-4C31-988F-AFA17F3616E5
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  16
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox      
    0x00007fff8849d74e RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox      
    0x00007fff8849d553 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox      
    0x00007fff8849d40c BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit         
    0x00007fff81bffeb2 _DPSNextEvent + 708
    8   com.apple.AppKit         
    0x00007fff81bff801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.AppKit         
    0x00007fff81bc568f -[NSApplication run] + 395
    10  com.apple.prokit         
    0x000000010120d04b NSProApplicationMain + 267
    11  com.apple.logic.pro      
    0x000000010002aa58 DummyConnection::DummyConnection() + 86
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x00007fff803dcc0a kevent + 10
    1   libSystem.B.dylib        
    0x00007fff803deadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib        
    0x00007fff803de7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib        
    0x00007fff803de2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib        
    0x00007fff803ddc08 _pthread_wqthread + 353
    5   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation     
    0x00007fff806fb14f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation     
    0x00007fff8067c114 __NSThread__main__ + 1429
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 
    0x00007fff83a25468 __CFSocketManager + 824
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib        
    0x00007fff803c3dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x00007fff80402772 _pthread_cond_wait + 1015
    2   com.apple.audio.CoreAudio
    0x00007fff83b6768c CAGuard::WaitFor(unsigned long long) + 168
    3   com.apple.audio.CoreAudio
    0x00007fff83b69c1b CAGuard::WaitUntil(unsigned long long) + 185
    4   com.apple.audio.CoreAudio
    0x00007fff83b67d85 HP_IOThread::WorkLoop() + 1369
    5   com.apple.audio.CoreAudio
    0x00007fff83b67827 HP_IOThread::ThreadEntry(HP_IOThread*) + 9
    6   com.apple.audio.CoreAudio
    0x00007fff83b67755 CAPThread::Entry(CAPThread*) + 125
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib        
    0x00007fff803c3e82 mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff826b4df5 MPDelayUntil + 28
    2   ...ple.CoreServices.CarbonCore
    0x00007fff826c3361 Delay + 93
    3   ...opellerheads.rewire.library
    0x000000012662627b RWIsReWireMixerAppRunningImp + 31035
    4   ...opellerheads.rewire.library
    0x0000000126633c59 RWIsReWireMixerAppRunningImp + 86809
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   ...ropellerheads.reason.engine
    0x0000000126c1a408 RWDEFLaunchPanelApp + 3224984
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117f2b MD::CallProcessThread1(void*) + 299
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117d0e MD::CallProcessThread2(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117a35 MD::CallProcessThread3(void*) + 85
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x00000001031161ee MD::CallProcessThread15(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff8044b9ac sleep + 61
    3   ...sic.apps.MAAudioUnitSupport
    0x00000001010ce98a CAudioUnitClient::WatchDog(void*) + 26
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103132cd0 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.audio.midi.CoreMIDI
    0x00000001016eb9c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI
    0x000000010170873d MIDIProcess::RunMIDIInThread() + 147
    4   com.apple.audio.midi.CoreMIDI
    0x00000001016ecace XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI
    0x00000001016ec509 CAPThread::Entry(CAPThread*) + 67
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 16 Crashed:
    0   libSystem.B.dylib        
    0x00007fff804369ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib        
    0x00007fff804368d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib        
    0x00007fff804933ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib        
    0x00007fff804b29a1 __abort + 113
    4   libSystem.B.dylib        
    0x00007fff804b2a05 abort_report_np + 0
    5   com.apple.logic.pro      
    0x00000001003b3226 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98486
    6   libSystem.B.dylib        
    0x00007fff804241ba _sigtramp + 26
    7   ???                      
    0x000000012cb0a910 0 + 5044742416
    8   com.apple.logic.pro      
    0x000000010035a146 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 58566
    9   com.apple.logic.pro      
    0x0000000100353c8f void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 32783
    10  com.apple.logic.pro      
    0x00000001003514a6 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 22566
    11  com.apple.logic.pro      
    0x0000000100356e02 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 45442
    12  com.apple.logic.pro      
    0x000000010034f52a void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 14506
    13  ...ple.CoreServices.CarbonCore
    0x00007fff826c369f TimerThread + 294
    14  libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    15  libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.logic.pro      
    0x00000001009101f2 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 1554
    2   com.apple.logic.pro      
    0x000000010055859d std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 40333
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f99f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...st.midi.wordbuildervstplayj
    0x000000013777b29f juce::WaitableEventImpl::wait(int) + 57
    3   ...st.midi.wordbuildervstplayj
    0x000000013776d3c4 juce::WaitableEvent::wait(int) const + 12
    4   ...st.midi.wordbuildervstplayj
    0x000000013778d105 juce::Thread::wait(int) const + 13
    5   ...st.midi.wordbuildervstplayj
    0x0000000137653c8d MyTimerThread::run() + 69
    6   ...st.midi.wordbuildervstplayj
    0x000000013778d53e juce::Thread::threadEntryPoint() + 86
    7   ...st.midi.wordbuildervstplayj
    0x00000001377747dd juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation 
    0x00007fff83a02b16 CFRunLoopRun + 70
    5   com.eastwest.Play        
    0x000000012fb9896d CUSBDeviceNotifyThread::M192D295BF6D8B650() + 325
    6   com.eastwest.Play        
    0x000000012fb99324 CPThread::thread_routine(void*) + 112
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   com.eastwest.Play        
    0x000000012fb9952f CPTTimer::M192D295BF6D8B650() + 103
    4   com.eastwest.Play        
    0x000000012fb99324 CPThread::thread_routine(void*) + 112
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c0ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c57e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c0ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c57e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef8ec juce::WaitableEventImpl::wait(int) + 186
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7fedeb juce::Thread::wait(int) const + 13
    5   com.eastwest.Play        
    0x000000012f7096fa juce::InternalTimerThread::run() + 230
    6   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    7   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f7ef86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f7e4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f90e365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f7ff25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f7eb1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c9ae295 NI::SND::PresetManagerDB::scanForBackground(CppSQLite3DB&) + 485
    4   ...nth 5.MusicDevice.component
    0x000000013c9af20b NI::SND::PresetManagerDB::run() + 283
    5   ...nth 5.MusicDevice.component
    0x000000013c57e949 NI::GP::Thread::execute(void*) + 73
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib        
    0x00007fff803dda2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff803dde3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 16 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x000000012cb0a240  rcx: 0x000000012cb0a1f8  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x000000012cb0a230  rsp: 0x000000012cb0a1f8
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0xffffff80002e4730
      r12: 0x0000000000000000  r13: 0x000000014550e922  r14: 0x0000000145483000  r15: 0x0000000000000000
      rip: 0x00007fff804369ce  rfl: 0x0000000000000247  cr2: 0x0000000104063000
    Binary Images:
    0x100000000 -   
    0x100c18fef  com.apple.logic.pro 9.1.8 (1700.67) <5CBBDF7C-6505-0A14-61F1-483839F57524> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x101086000 -   
    0x1010a4fef  com.apple.XSKey 1.0.0 (52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x1010b6000 -   
    0x1010f0ff7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <B5939861-E5F9-3218-0989-4ED074B1323D> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0x101113000 -   
    0x101141ff7  com.apple.musicaudiodataservices 1.1 (251.4) <93B2F8C3-E091-C1CA-8932-91840CC968BC> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0x101153000 -   
    0x1011b6ff7  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <FE447B07-89A4-E025-DFB8-4C71A0EFEBF0> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0x1011ed000 -   
    0x10147bff7  com.apple.prokit 7.0.1 (1331.1) <0C6C56BB-83E2-7090-90D0-C9005C955F8A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1015fd000 -   
    0x101693fe7  com.apple.music.apps.MACore 9.1.8 (477.58) <3E8020EA-9B42-63A5-613D-FD2D7675546F> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1016dd000 -   
    0x10172dff7  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <872D18F1-18CB-DDC1-FBC8-B144604A39B1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x101755000 -   
    0x1017b3fef  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <EE991E63-1236-765D-3C95-4AE3494B295C> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1017db000 -   
    0x101c1cfff  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <6FEA2031-69A3-9209-54EF-36BA3DAD1883> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x101ee0000 -   
    0x101fbcfff  com.apple.music.apps.OMF 9.1.8 (109.7) <F72235D0-517D-CCCB-3B91-78396786EB34> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x101fdb000 -   
    0x10260bfef  com.apple.music.apps.MADSP 9.1.8 (588.98) <D794D156-112C-29E3-EB9D-62604A9807DE> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x102e69000 -   
    0x102e8eff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <8E130979-83FB-56BD-DE18-A723A94B7530> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x102ea1000 -   
    0x102f1ffff  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <47AF47CE-F6A1-E025-96FA-5C30EAFA13BC> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x102f4e000 -   
    0x102f72ff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <6384895C-60D4-CE0B-0E86-673A20A34D36> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x102f80000 -   
    0x102f85fff  com.apple.music.apps.MAResources 9.1.8 (212.66) <0E66AB42-6F37-9AE7-8766-264DAE455688> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x102f88000 -   
    0x102fb4fff  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <45C04031-42F8-D096-1CC3-0CA266FDAC61> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x102fcd000 -   
    0x102fe0ff7  com.apple.AERegistration 1.2 (401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x102ff9000 -   
    0x103006fff  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <8AF973F8-CBB2-931B-6BFC-D4BCB8A434F6> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x10300f000 -   
    0x1030cafe7  com.apple.music.apps.MAFiles 9.1.8 (144.87) <F9F3C7E2-46F5-0EC3-7297-096AEB83BFD6> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x103103000 -   
    0x10317ffe7  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <6944C1FC-7ACD-53A2-5095-E017C39D8CBA> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x1031f3000 -   
    0x1031fefff  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <B9729EDA-E5DB-C831-E473-EED9C906AAA0> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x103205000 -   
    0x103213ff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <19D30553-8BFE-4F8C-D13E-0D3139AAC22B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x10321b000 -   
    0x103301fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <64B3566E-5F3A-A466-ED3F-B91F4B3E5F56> /usr/lib/libcrypto.0.9.7.dylib
    0x103359000 -   
    0x103407fec  com.apple.MobileMe 9 (1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x104700000 -   
    0x10473dff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <3585FB91-33B6-1BF3-A716-85D069944820> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x11a7a1000 -   
    0x11a7affff  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <E92BCF13-7E55-68CD-22BD-EF427D6EC310> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x11a7d4000 -   
    0x11a7d8fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x11a7dd000 -   
    0x11a7e3ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.8 (2.0.8f3) <2BC73C66-767B-CA96-B313-B95EC153547B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x11af00000 -   
    0x11af24ff7 +com.akai.mpc.hal ??? (2.1.18) <7CD275B5-FE33-A573-2AFB-C2B3F1C701A4> /Library/Audio/Plug-Ins/HAL/AKAI_MPC.plugin/Contents/MacOS/AKAI_MPC
    0x11af47000 -   
    0x11af49ff7  com.apple.music.apps.anvil.resources 9.1.8 (280.4) <F74756AB-FAB6-3914-5F1C-04FCB54C350A> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x11af4e000 -   
    0x11af50ff7  com.apple.music.apps.common.resources 9.1.8 (280.4) <9FC76C8D-3763-4E4A-DB35-391B07A6FFA8> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x11af55000 -   
    0x11af57ff7  com.apple.music.apps.ebp.resources 9.1.8 (280.4) <2DEA037D-ABCE-771A-618B-091741F6CA7B> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x11af5c000 -   
    0x11af5eff7  com.apple.music.apps.efx.resources 9.1.8 (280.4) <EB5DB45A-C432-2C90-C708-27D5F5EC236A> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x11af63000 -   
    0x11af65ff7  com.apple.music.apps.egt.resources 9.1.8 (280.4) <FAB354A9-88A1-619A-1ECA-A351EADB5A2E> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x11af6a000 -   
    0x11af6cff7  com.apple.music.apps.emx.resources 9.1.8 (280.4) <19FD59CE-314B-6B4B-CEE8-C7BF9DF7F4EB> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x11af71000 -   
    0x11af73ff7  com.apple.music.apps.es1.resources 9.1.8 (280.4) <4BD052E1-1BD4-3C73-93D6-D63493167CB6> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x11af78000 -   
    0x11af7aff7  com.apple.music.apps.es2.resources 9.1.8 (280.4) <31CBF3C9-AD64-1A86-1F99-D362B594F840> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x11af7f000 -   
    0x11af81ff7  com.apple.music.apps.esp.resources 9.1.8 (280.4) <0EA44B59-2772-F013-CF49-B66EE4C77EEB> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x11af86000 -   
    0x11af88ff7  com.apple.music.apps.evb3.resources 9.1.8 (280.4) <F0F73B5A-E44A-FF5C-4C54-0F5B677BFB18> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x11af8d000 -   
    0x11af8fff7  com.apple.music.apps.evd6.resources 9.1.8 (280.4) <45B1F3EB-45CB-418F-A408-C42F7F93802A> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x11af94000 -   
    0x11af96ff7  com.apple.music.apps.evoc.resources 9.1.8 (280.4) <91478393-E7C9-5292-FCA9-83559B588E6E> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x11af9b000 -   
    0x11af9dff7  com.apple.music.apps.evp88.resources 9.1.8 (280.4) <9FAC293E-E8B9-C2D9-F102-D5BFC0AA1DC5> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x11afa2000 -   
    0x11afa4ff7  com.apple.music.apps.exs24.resources 9.1.8 (280.4) <E79F0236-D02B-D3E7-B929-701CEDE000F6> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x11afa9000 -   
    0x11afabff7  com.apple.music.apps.guitaramp.resources 9.1.8 (280.4) <73AC87D5-215E-2FAC-05A2-28A7E9574F5C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x11afb5000 -   
    0x11afbdff7  com.apple.proapps.mrcheckpro 1.4 (397) <9B320059-8D28-D7DA-8CD4-B42796969065> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x11afe9000 -   
    0x11afebff7  com.apple.music.apps.guitarcontrols.resources 9.1.8 (280.4) <B005E199-DCEE-5935-8E34-48FA59352663> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x11aff0000 -   
    0x11aff2ff7  com.apple.music.apps.mutapdel.resources 9.1.8 (280.4) <392017D1-219B-4AA4-71CF-BAAC4D574FE1> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x11aff7000 -   
    0x11aff9ff7  com.apple.music.apps.pedalboard.resources 9.1.8 (280.4) <F95D6A0D-0179-F17B-59A5-B3B0007E426D> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x11ca02000 -   
    0x11ca28fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x11caa6000 -   
    0x11caa8fef  com.apple.textencoding.unicode 2.3 (2.3) <D95D796E-4D14-665C-F439-4652C0CD453F> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x11cab3000 -   
    0x11cab5fe7  com.apple.music.apps.midi.device.plugin.CS-32 9.1.8 (198.73) <4427150E-7710-4983-8CD5-CE6C4F2AE97C> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x11cabd000 -   
    0x11cac0ff7  com.apple.music.apps.midi.device.plugin.FW-1884 9.1.8 (198.73) <89696612-EE45-1A1D-CB75-3FEBEE46EF1A> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
    0x11cacc000 -   
    0x11caceff7  com.apple.music.apps.revolver.resources 9.1.8 (280.4) <77102719-1007-5153-B8B3-9EC9FAC4C0BD> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x11cad3000 -   
    0x11cad5ff7  com.apple.music.apps.sphere.resources 9.1.8 (280.4) <3579177A-

    here's another one if that helps:
    Process:    
    Logic Pro [914]
    Path:       
    /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: 
    com.apple.logic.pro
    Version:    
    9.1.8 (1700.67)
    Build Info: 
    Logic-17006700~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [107]
    Date/Time:  
    2014-05-25 15:23:56.045 +0100
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    207288 sec
    Crashes Since Last Report:      
    19
    Per-App Interval Since Last Report:  95652 sec
    Per-App Crashes Since Last Report:   18
    Anonymous UUID:                 
    7A6C67A1-B014-4C31-988F-AFA17F3616E5
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  16
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreGraphics   
    0x00007fff89d17230 _CGSSynchronizeWindowBackingStore + 97
    3   com.apple.CoreGraphics   
    0x00007fff89cfcda9 _CGSLockWindow + 4515
    4   com.apple.CoreGraphics   
    0x00007fff89d0393f CGSDeviceLock + 535
    5   libRIP.A.dylib           
    0x00007fff81362e7b ripd_Lock + 46
    6   libRIP.A.dylib           
    0x00007fff813691f9 ripl_BltImage + 294
    7   libRIP.A.dylib           
    0x00007fff81368e61 ripc_RenderImage + 323
    8   libRIP.A.dylib           
    0x00007fff81366f96 ripc_DrawImage + 2411
    9   com.apple.CoreGraphics   
    0x00007fff89d39c0a CGContextDrawImage + 446
    10  com.apple.logic.pro      
    0x00000001006fe71f CSeqEvHdr_Templ<CEvMarker, (TSeqEvHdrType)3, CEv, CEv, std::allocator<CEvMarker> >::EvValidAt(TSignedPureClock) + 38191
    11  com.apple.logic.pro      
    0x000000010051431d std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 193149
    12  com.apple.logic.pro      
    0x0000000100516632 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 202130
    13  com.apple.logic.pro      
    0x000000010039ad89 std::vector<POINT, std::allocator<POINT> >::erase(__gnu_cxx::__normal_iterator<POINT*, std::vector<POINT, std::allocator<POINT> > >, __gnu_cxx::__normal_iterator<POINT*, std::vector<POINT, std::allocator<POINT> > >) + 19433
    14  com.apple.logic.pro      
    0x000000010050e691 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 169457
    15  com.apple.logic.pro      
    0x000000010050ea5f std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 170431
    16  com.apple.logic.pro      
    0x00000001005238ee std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 256078
    17  com.apple.logic.pro      
    0x00000001001aebf8 std::vector<TTempoWarpMerge, std::allocator<TTempoWarpMerge> >::reserve(unsigned long) + 162440
    18  com.apple.logic.pro      
    0x00000001005de46f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 418447
    19  com.apple.logic.pro      
    0x00000001005d0a4a std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 362602
    20  com.apple.logic.pro      
    0x00000001006ca645 std::_Rb_tree<TPureClock, std::pair<TPureClock const, EuControlSwitch*>, std::_Select1st<std::pair<TPureClock const, EuControlSwitch*> >, std::less<TPureClock>, std::allocator<std::pair<TPureClock const, EuControlSwitch*> > >::insert_unique(std::pair<TPureClock const, EuControlSwitch*> const&) + 269701
    21  com.apple.AppKit         
    0x00007fff81cbcd75 -[NSView _drawRect:clip:] + 3566
    22  com.apple.AppKit         
    0x00007fff81cba54b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2112
    23  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    24  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    25  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    26  com.apple.AppKit         
    0x00007fff81cbaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    27  com.apple.AppKit         
    0x00007fff81cb9b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    28  com.apple.prokit         
    0x000000010123662d -[NSProWindowFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 85
    29  com.apple.AppKit         
    0x00007fff81cb63de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    30  com.apple.AppKit         
    0x00007fff81c2fc0e -[NSView displayIfNeeded] + 969
    31  com.apple.AppKit         
    0x00007fff81c2aaba _handleWindowNeedsDisplay + 678
    32  com.apple.CoreFoundation 
    0x00007fff83a27b07 __CFRunLoopDoObservers + 519
    33  com.apple.CoreFoundation 
    0x00007fff83a03434 __CFRunLoopRun + 468
    34  com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    35  com.apple.HIToolbox      
    0x00007fff8849d74e RunCurrentEventLoopInMode + 333
    36  com.apple.HIToolbox      
    0x00007fff8849d553 ReceiveNextEventCommon + 310
    37  com.apple.HIToolbox      
    0x00007fff8849d40c BlockUntilNextEventMatchingListInMode + 59
    38  com.apple.AppKit         
    0x00007fff81bffeb2 _DPSNextEvent + 708
    39  com.apple.AppKit         
    0x00007fff81bff801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    40  com.apple.AppKit         
    0x00007fff81bc568f -[NSApplication run] + 395
    41  com.apple.prokit         
    0x000000010120d04b NSProApplicationMain + 267
    42  com.apple.logic.pro      
    0x000000010002aa58 DummyConnection::DummyConnection() + 86
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x00007fff803dcc0a kevent + 10
    1   libSystem.B.dylib        
    0x00007fff803deadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib        
    0x00007fff803de7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib        
    0x00007fff803de2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib        
    0x00007fff803ddc08 _pthread_wqthread + 353
    5   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation     
    0x00007fff806fb14f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation     
    0x00007fff8067c114 __NSThread__main__ + 1429
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 
    0x00007fff83a25468 __CFSocketManager + 824
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles 
    0x00000001030384d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles 
    0x0000000103038589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib        
    0x00007fff803c3dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x00007fff80402772 _pthread_cond_wait + 1015
    2   com.apple.audio.CoreAudio
    0x00007fff83b6768c CAGuard::WaitFor(unsigned long long) + 168
    3   com.apple.audio.CoreAudio
    0x00007fff83b69c1b CAGuard::WaitUntil(unsigned long long) + 185
    4   com.apple.audio.CoreAudio
    0x00007fff83b67d85 HP_IOThread::WorkLoop() + 1369
    5   com.apple.audio.CoreAudio
    0x00007fff83b67827 HP_IOThread::ThreadEntry(HP_IOThread*) + 9
    6   com.apple.audio.CoreAudio
    0x00007fff83b67755 CAPThread::Entry(CAPThread*) + 125
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib        
    0x00007fff803c3e82 mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff826b4df5 MPDelayUntil + 28
    2   ...ple.CoreServices.CarbonCore
    0x00007fff826c3361 Delay + 93
    3   ...opellerheads.rewire.library
    0x000000012645a27b RWIsReWireMixerAppRunningImp + 31035
    4   ...opellerheads.rewire.library
    0x0000000126467c59 RWIsReWireMixerAppRunningImp + 86809
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   ...ropellerheads.reason.engine
    0x00000001274ff408 RWDEFLaunchPanelApp + 3224984
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117f2b MD::CallProcessThread1(void*) + 299
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117d0e MD::CallProcessThread2(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103117a35 MD::CallProcessThread3(void*) + 85
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x00000001031161ee MD::CallProcessThread15(void*) + 302
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff8044b9ac sleep + 61
    3   ...sic.apps.MAAudioUnitSupport
    0x00000001010ce98a CAudioUnitClient::WatchDog(void*) + 26
    4   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine
    0x0000000103132cd0 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.audio.midi.CoreMIDI
    0x00000001016eb9c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI
    0x000000010170873d MIDIProcess::RunMIDIInThread() + 147
    4   com.apple.audio.midi.CoreMIDI
    0x00000001016ecace XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI
    0x00000001016ec509 CAPThread::Entry(CAPThread*) + 67
    6   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 16 Crashed:
    0   libSystem.B.dylib        
    0x00007fff804369ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib        
    0x00007fff804368d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib        
    0x00007fff804933ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib        
    0x00007fff804b29a1 __abort + 113
    4   libSystem.B.dylib        
    0x00007fff804b2a05 abort_report_np + 0
    5   com.apple.logic.pro      
    0x00000001003b3226 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98486
    6   libSystem.B.dylib        
    0x00007fff804241ba _sigtramp + 26
    7   ???                      
    0x000000012ca1f910 0 + 5043779856
    8   com.apple.logic.pro      
    0x000000010035a146 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 58566
    9   com.apple.logic.pro      
    0x0000000100353c8f void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 32783
    10  com.apple.logic.pro      
    0x00000001003514a6 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 22566
    11  com.apple.logic.pro      
    0x0000000100356e02 void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 45442
    12  com.apple.logic.pro      
    0x000000010034f52a void std::__introsort_loop<__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long>(__gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, __gnu_cxx::__normal_iterator<TMixerStrip*, std::vector<TMixerStrip, std::allocator<TMixerStrip> > >, long) + 14506
    13  ...ple.CoreServices.CarbonCore
    0x00007fff826c369f TimerThread + 294
    14  libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    15  libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib        
    0x00007fff80407932 select$DARWIN_EXTSN + 10
    1   com.apple.logic.pro      
    0x00000001009101f2 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 1554
    2   com.apple.logic.pro      
    0x000000010055859d std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 40333
    3   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    4   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib        
    0x00007fff803c3dce semaphore_timedwait_trap + 10
    1   com.eastwest.Play        
    0x000000012f85f73c ousia::Streams::OSXVoiceFeeder::run(int) + 252
    2   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   ...st.midi.wordbuildervstplayj
    0x000000013757b29f juce::WaitableEventImpl::wait(int) + 57
    3   ...st.midi.wordbuildervstplayj
    0x000000013756d3c4 juce::WaitableEvent::wait(int) const + 12
    4   ...st.midi.wordbuildervstplayj
    0x000000013758d105 juce::Thread::wait(int) const + 13
    5   ...st.midi.wordbuildervstplayj
    0x0000000137453c8d MyTimerThread::run() + 69
    6   ...st.midi.wordbuildervstplayj
    0x000000013758d53e juce::Thread::threadEntryPoint() + 86
    7   ...st.midi.wordbuildervstplayj
    0x00000001375747dd juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib        
    0x00007fff803c3d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff803c43ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff83a03902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff83a02d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation 
    0x00007fff83a02b16 CFRunLoopRun + 70
    5   com.eastwest.Play        
    0x000000012fa5896d CUSBDeviceNotifyThread::M192D295BF6D8B650() + 325
    6   com.eastwest.Play        
    0x000000012fa59324 CPThread::thread_routine(void*) + 112
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   com.eastwest.Play        
    0x000000012fa5952f CPTTimer::M192D295BF6D8B650() + 103
    4   com.eastwest.Play        
    0x000000012fa59324 CPThread::thread_routine(void*) + 112
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c3ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c87e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff803fe8f9 nanosleep + 148
    2   libSystem.B.dylib        
    0x00007fff803fe863 usleep + 57
    3   ...nth 5.MusicDevice.component
    0x000000013c3ddebe ProgramChangeThread::run() + 30
    4   ...nth 5.MusicDevice.component
    0x000000013c87e949 NI::GP::Thread::execute(void*) + 73
    5   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib        
    0x00007fff803dda2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff803dde3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff803ddaa5 start_wqthread + 13
    Thread 29:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af8ec juce::WaitableEventImpl::wait(int) + 186
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f6bedeb juce::Thread::wait(int) const + 13
    5   com.eastwest.Play        
    0x000000012f5c96c8 juce::InternalTimerThread::run() + 180
    6   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    7   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    8   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 36:
    0   libSystem.B.dylib        
    0x00007fff803fea6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff80402881 _pthread_cond_wait + 1286
    2   com.eastwest.Play        
    0x000000012f6af86b juce::WaitableEventImpl::wait(int) + 57
    3   com.eastwest.Play        
    0x000000012f6a4ef2 juce::WaitableEvent::wait(int) const + 12
    4   com.eastwest.Play        
    0x000000012f7ce365 ousia::PartConvolution::Process::run() + 53
    5   com.eastwest.Play        
    0x000000012f6bf25b juce::Thread::threadEntryPoint() + 91
    6   com.eastwest.Play        
    0x000000012f6ab1b0 juce::threadEntryProc(void*) + 29
    7   libSystem.B.dylib        
    0x00007fff803fcfd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff803fce89 thread_start + 13
    Thread 16 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x000000012ca1f240  rcx: 0x000000012ca1f1f8  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x000000012ca1f230  rsp: 0x000000012ca1f1f8
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0xffffff80002e4730
      r12: 0x0000000000000000  r13: 0x0000000147715b1a  r14: 0x0000000147683000  r15: 0x0000000000000000
      rip: 0x00007fff804369ce  rfl: 0x0000000000000247  cr2: 0x0000000151964834
    Binary Images:
    0x100000000 -   
    0x100c18fef  com.apple.logic.pro 9.1.8 (1700.67) <5CBBDF7C-6505-0A14-61F1-483839F57524> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x101086000 -   
    0x1010a4fef  com.apple.XSKey 1.0.0 (52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x1010b6000 -   
    0x1010f0ff7  com.apple.music.apps.MAAudioUnitSupport 9.1.8 (233.53) <B5939861-E5F9-3218-0989-4ED074B1323D> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
    0x101113000 -   
    0x101141ff7  com.apple.musicaudiodataservices 1.1 (251.4) <93B2F8C3-E091-C1CA-8932-91840CC968BC> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
    0x101153000 -   
    0x1011b6ff7  com.apple.music.apps.MALoopManagement 9.1.8 (219.66) <FE447B07-89A4-E025-DFB8-4C71A0EFEBF0> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
    0x1011ed000 -   
    0x10147bff7  com.apple.prokit 7.0.1 (1331.1) <0C6C56BB-83E2-7090-90D0-C9005C955F8A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1015fd000 -   
    0x101693fe7  com.apple.music.apps.MACore 9.1.8 (477.58) <3E8020EA-9B42-63A5-613D-FD2D7675546F> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1016dd000 -   
    0x10172dff7  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <872D18F1-18CB-DDC1-FBC8-B144604A39B1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x101755000 -   
    0x1017b3fef  com.apple.music.apps.MAHarmony 9.1.8 (199.72) <EE991E63-1236-765D-3C95-4AE3494B295C> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1017db000 -   
    0x101c1cfff  com.apple.music.apps.MAPlugInGUI 9.1.8 (424.79) <6FEA2031-69A3-9209-54EF-36BA3DAD1883> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x101ee0000 -   
    0x101fbcfff  com.apple.music.apps.OMF 9.1.8 (109.7) <F72235D0-517D-CCCB-3B91-78396786EB34> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x101fdb000 -   
    0x10260bfef  com.apple.music.apps.MADSP 9.1.8 (588.98) <D794D156-112C-29E3-EB9D-62604A9807DE> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x102e69000 -   
    0x102e8eff7  com.apple.music.apps.LogicFileBrowser 9.1.8 (1700.67) <8E130979-83FB-56BD-DE18-A723A94B7530> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x102ea1000 -   
    0x102f1ffff  com.apple.music.apps.LogicLoopBrowser 9.1.8 (1700.67) <47AF47CE-F6A1-E025-96FA-5C30EAFA13BC> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x102f4e000 -   
    0x102f72ff7  com.apple.music.apps.MAApogeeSupport 9.1.8 (313.26) <6384895C-60D4-CE0B-0E86-673A20A34D36> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x102f80000 -   
    0x102f85fff  com.apple.music.apps.MAResources 9.1.8 (212.66) <0E66AB42-6F37-9AE7-8766-264DAE455688> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x102f88000 -   
    0x102fb4fff  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <45C04031-42F8-D096-1CC3-0CA266FDAC61> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x102fcd000 -   
    0x102fe0ff7  com.apple.AERegistration 1.2 (401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x102ff9000 -   
    0x103006fff  com.apple.music.apps.MAUnitTest 9.1.8 (97.27) <8AF973F8-CBB2-931B-6BFC-D4BCB8A434F6> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x10300f000 -   
    0x1030cafe7  com.apple.music.apps.MAFiles 9.1.8 (144.87) <F9F3C7E2-46F5-0EC3-7297-096AEB83BFD6> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x103103000 -   
    0x10317ffe7  com.apple.music.apps.MAAudioEngine 9.1.8 (158.42) <6944C1FC-7ACD-53A2-5095-E017C39D8CBA> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x1031f3000 -   
    0x1031fefff  com.apple.music.apps.MAToolKit 9.1.8 (359.28) <B9729EDA-E5DB-C831-E473-EED9C906AAA0> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x103205000 -   
    0x103213ff7  com.apple.music.apps.MAVideo 9.1.8 (12.70) <19D30553-8BFE-4F8C-D13E-0D3139AAC22B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x10321b000 -   
    0x103301fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <64B3566E-5F3A-A466-ED3F-B91F4B3E5F56> /usr/lib/libcrypto.0.9.7.dylib
    0x103359000 -   
    0x103407fec  com.apple.MobileMe 9 (1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x10372b000 -   
    0x10372dfe7  com.apple.music.apps.midi.device.plugin.CS-32 9.1.8 (198.73) <4427150E-7710-4983-8CD5-CE6C4F2AE97C> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
    0x103735000 -   
    0x103738ff7  com.apple.music.apps.midi.device.plugin.FW-1884 9.1.8 (198.73) <89696612-EE45-1A1D-CB75-3FEBEE46EF1A> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884

  • Noob needs help with Logic and Motu live setup.

    Hello everyone,
    I'm a noob / semi noob who could use some help with a live setup using 2 MOTU 896HD's and Logic on a Mac.
    Here's the scenario:
    I teach an outdoor marching percussion section (a drumline and a front ensemble of marimbas and vibes). We have an amazing setup of live sound to amplify and enhance the mallet percussion. There is a yamaha PA system with 2 subs and 2 mains which are routed through a rack unit that processes the overall PA balance. I'm pretty sure that the unit is supposed to avoid feedback and do an overall cross-over EQ of the sound. Other then that unit, we have 2 motu896hd units which are routed via fire-wire. I also have a coax cable routing the output of the secondary box to the input of the primary box (digital i/o which converts to ADAT in (i think?)..?
    Here's the confusion:
    There are more then 8 inputs being used from the ensemble itself, so I need the 16 available inputs to be available in Logic. I was lead to believe that the 2nd motu unit would have to be sent digitally to the 1st motu unit via coax digital i/o. Once in Logic, however, I cannot find the signal or any input at all past the 8th input (of the 1st unit).
    Here's the goal:
    All of my performers and inputs routed via firewire into a Mac Mini running OSX and Logic pro.
    I want to be able to use MainStage and run different patches of effects / virt. instruments for a midi controller keyboard / etc.
    I want to be able to EQ and balance the ensemble via Logic.
    Here's another question:
    How much latency will I be dealing with? Would a mac mini with 4gb of ram be able to handle this load? With percussion, I obviously want the sound as latency free as possible. I also, however, want the flexibility of sound enhancement / modification that comes with Logic and the motu896hd units.
    Any help would be REALLY appreciated. I need the routing assistance along with some direction as to whether or not this will work for this type of application. I'm pretty certain it does, as I have spoken with some other teachers in similar venues and they have been doing similar things using mac mini's / logic / mainstage / etc.
    Thanks in advance,
    Chris

    You'll definitely want to read the manual to make sure the 896HDs are connected together properly. ADAT is a little tricky, it's not just a matter of cabling them together. Go to motunation.com if you need more guidance on connecting multiple devices. Beyond that initial hookup, here are a couple of quick suggestions:
    1. Open CueMix and see if both devices are reported there. If not, your connections aren't correct. Be sure to select 44.1kHz as your sample rate, otherwise you are reducing the number of additional channels. For instance at 88.2kHz you would get half the additional channels via ADAT.
    2. You may need to create an aggregate device for the MacBook to recognize more than the first 896HD. Lots of help on this forum for how to do that. Again, first make sure you have the 896HDs connected together properly.
    3. As for latency with Mainstage on the Mini, no way to know until you try it. Generally MOTU is fantastic for low latency work but Mainstage is a question mark for a lot of users right now. If the Mini can't cut the mustard, you have a great excuse to upgrade to a MacBook Pro.

  • I there, my question is quite simple, I would like to know if the "apple remote control" can be used with a mac mini and , if so, it can be used to control also the "logic pro" functions (e.g. record, start, stop etc). Thks a lot, Danilo

    I there, my question is quite simple, I would like to know if the "apple remote control" can be used with a mac mini and , if so, it can be used to control also the "logic pro" functions (e.g. record, start, stop etc). Thks a lot, Danilo

    Good work, thanks for the report.

  • Will logic pro x run on my mac mini dual core intel i5 with 4gb of ram and mountain lion ?

    hi there guys,
    will logic pro x run on my mac mini dual core intel i5 with 4gb of ram and mountain lion ?
    I'm not sure if my machine is 64 bit - it is the current model base mac mini.
    Many thanks for any help you can offer !
    Simon

    SkiJumptoes is right. 4GB is not enough to comfortably run Logic X.
    Your Mac Mini will need DDR3 SODIMM RAM. That website seems incredibly steep though. I guess that's the price of finding it for you. You're better off going to any below:
    http://www.ebuyer.com/191206-kingston-4gb-ddr3-1066mhz-laptop-memory-kvr1066d3s7 -4g?utm_source=google&utm_medium=products&gclid=COqM6KzdxbgCFcfJtAodoicARg
    http://www.ballicom.co.uk/cmso4gx3m1a1600c11-corsair-value-select--memory--4-gb- -so-dimm-204pin--ddr3--1600-mhz--pc312800--cl11--15-v--unbuffered--nonecc.p87434 0.html?ref=5&gclid=CKyej_HdxbgCFQSS3godEjwAug

  • Apply CPUOCT2008 with both a physical and logical standby in place

    Hello All,
    I'm trying to compile a decent set of steps for applying the CPUOCT2008 patch to our production RAC cluster which has both a logical and physical standby in place. I've read a tonne of documentation, including the CPU readme, DOCID 437276.1 and 278641.1. I''ve also read through the Upgrading Databases in a Data Guard Configuration chapter of Dataguard Concepts and Administration. The last doc mentioned is really for upgrading a full version of Oracle rather than applying a CPU (at least I think that's the case). DocID 437276.1 is rather sparse on details.
    I guess what I'm trying to understand is the proper method for applying the patch with the logical standby in place. The physical standby looks pretty straightforward. After running opatch on it as well, it will basically have all of the changes applied to the primary shipped over and applied as per the normal primary/standby relationship. Will the same be true for the logical (having applied the patch, and then re-enabling SQL apply)? Should I aim to have it work that way? By that I mean start it up and re-enable sql apply and then upgrade the primary. Or, am I to apply the catcpu.sql script to it as well before re-enabling the sql apply? Am I wrong in regards to the physical standby as well i.e. should the catcpu also be applied directly to it?
    Thanks very much in advance.
    Cheers,
    Chris

    Given the fact that your system is far from main-stream I'd recommend opening an SR with Oracle Support Services (metalink) and asking them.
    If you would like to publish a White Paper on your experience after you have successfully completed the project let me know off-line.

Maybe you are looking for

  • Short dump when executing DTP

    Dear Gurus, I am loading 2lis_02_hdr and 2lis_02_itm data in to customized ODS. it loaded sucessfully up to PSA level, when i am loading through DTP it shows the abap runtime error as "CREATE_DATA_UNKNOWN_TYPE" let me know the solution for the above.

  • Ipod Touch 5th generation will not turn back on (won't recharge, and is not recognizable on computer)

    I recently bought my new ipod touch 5th gen, and was playing it (browsing on an app) until it randomly shut down without any warning or anything. I thought maybe the battery was low, but I was sure that my battery life was half way and also that it d

  • After Effects CC 2014 Crashing with Magic Bullet Looks on Mac

    Hi, I recently installed the upgrade to the latest After Effects CC 2014 v13.0 and found the Magic Bullet Looks now causes After Effects to crash. I'm using MBL v2.5.2 I opened the Activity Monitor and noticed that whenever the crash occurs the Adobe

  • Hook Up

    When I attach my ipad2 I get a pop up that says, This iPad cannot be used because the Apple Mobile Device service is not started.......  How do I start it?     

  • Printing Drawing with Purchase Order

    Hi, Can any one tell me how to print a Drawing attached to Material while printing Purchase order. Thanks Sivaram