LabView user-event from external dll source

Hi!
I'm dealing with the following issue:
I use a CAN sniffer device, wich sends data over USB to a PC. The main goal is to create a vi that can process the incoming data. I already have a vi wich works with polling mechanism. It calls external DLL functions with the "Call library function node". The main problem is the polling mechanism.
I would like to recreate this vi so that it would work event-driven. I have an other application, written in C++, that does the same thing, and it gets interrupts from a DLL, when a new data is available in the input buffer.
The callback mechanism is implemented in the DLL.
In LabView I would like to do tha same thing. There is the "event case structure", but there is no option for defining such user-events, that i would prefer.
I have found a similar topic, there the solution is "occurrences". The occurrence is called from a DLL, too. But this solution uses the "waiting for occurrence to set", that is an endless-loop-like thing.
The other thing I've found is the ActiveX and .NET events. I don't know, probably that is the solution.
Anyway: is there a possibility to create such events, that can be generated from a simple external DLL and can be handled by "event case structure"? How should I do this?
Or how NI does this? I mean that NIs DAQ cards must use some similar methods for data processing. Is there some tutorial or support about it?
Thank you for your answer!

2716jag wrote:
Hi Wiebe,         From your answer i have a doubt that What it exactly means "If the dll is used from within LabVIEW". Also i want to know Is there any way to access the functuions defined in the .SYS file in Labview Environment. Regards,Jagan Can you be a litte more specific with your first sentence. I have no good idea what you mean. A .sys driver is usually a kernel device driver. This driver has to be started and run in the kernel subsystem which LabVIEW can not access directly. Such a driver is initialized using the CreateFile() Windows API. The returned handle is then used with other API functions such as ReadFile(), WriteWile(), DeviceIoControl(), and finally CloseHandle().Theoretically you could call all this APIs directly from within LabVIEW using the Call Library Node. In practice you do not want to do this even for fairly simple kernel drivers since the parameters for those APIs do get fairly complex in most cases, and you usually do also want to have some sort of asynchronous operation using events or such to make the driver access user friendly. All these things are most easily handled in a user space DLL written in C that exports a more LabVIEW friendly API that you can then import into LabVIEW using the Call Library Node. Usually most kernel device drivers do come with a accompagning user space DLL already, as this is the only sensible way of accessing such a driver. So you can usually look for the documentation of that user space DLL API and go from there trying to import that into LabVIEW using the Call Library Node. Even then it may not be easy at all if that API uses complicated function parameters and even completely impossible if it uses callbacks or such, requiring you to write a so called wrapper DLL that translates between the native API and a more LabVIEW friendly API.  You don't have to believe me but I can guarantee you that if writing such a user space DLL or wrapper DLL is beyond your capabilities, trying to go directly about accessing the Windows APIs in LabVIEW to access a kernel device driver is going to make you squirm in real pain. And those knowing how to write such a DLL would never even consider spending the time to try to access a kernel device driver directly from LabVIEW. Rolf Kalbermatter

Similar Messages

  • Event structure doesn't handle all events from external DLL source

    Hi!
    I use a DLL, wich handles an USB CAN transceiver device, and generates LabVIEW user events with extcode.h and PostLVUserEvent() function.
    In my vi I use an event case structure to handle theese external events. The problem is, that if the events come too frequently, then it cannot handle all events.
    The vi contains a couple of parallel while loops which process the incoming data from the external event.
    In another application I use the same architecture, and that works fine. This one is more complex.
    Do you think I have reached the limits of the program? Or what else can be the problem?
    I have tried to use a queue in the  event structure, it helped a little, but yet, not all the events are handled. My external DLL sends all event, so the problem is not there.
    Thanks in advance!

    Hi Wasz,
    Thanks for the post and I hope your well.
    It is not possible for the event structure to miss events - it simply queues them up. To keep the event structure 'in time' with the code you must ensure the code to execute in each event is minimal to allow the event structure to handle the next event. 
    Please see this two links:
    event structure buffering: leading to,
    How to avoid built-up for "cursor move" events? : where somone is trying to avoid handling all events.
    What sort of events are not being handled? Could it be an issue your events are not configured correctly? Maybe if you could produce a small example in LabVIEW code, so we can just test the event structure configuration... someone working around the external dll call - which you seem sure is working correctly.  
    In terms of queuing to process the events in other loops is certainly an option to speed up the event structure. To do this, use a produce/consumer design pattern.
    hope this helps,
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • How to import user profiles from external sources(other than AD) into SharePoint

    Hi,
    I want to import user profiles from external sources other than AD.
    Badri

    You have to use BCS for importing the profiles,
    Check the following link with explanations
    http://msdn.microsoft.com/en-us/magazine/ee819133.aspx
    Please Mark it as answer if this reply helps you in resolving the issue,It will help other users facing similar problem

  • User events from labview build dll

    Reference to pattern
    Previous discussion
    I had this pattern in place in a LV 7.1 application using a LabVIEW
    build DLL, but when migrating to LV 8.5 I found that User Events
    created in one application instance can not be fired by another
    application instance. It seems that since LV 8.x a LabVIEW build DLL
    are a different application instance. The generate user event function generates an error inside the DLL stating that it is not working because it is a reference from another application instance.
    Is the behaviour of a LV build DLL different than a C build DLL? Is the C build DLL part of the same application instance as the LV executable?
    Is there a way the get the LV build DLL to be a part of the same application instance as the LV build executable or development environment?
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

    Forgot to tell that I rebuild the DLL in LV 8.5, before making that conclusion.
    Message Edited by andre.buurman@carya on 09-04-2008 01:12 PM
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • User event from TestStand to Labview

    Hello all,
       I have some question regarding Labview-TestStand
       We have a large application written in Labview, user interface separated from the actual
    core using  User Events. Now we consider to automate some repeated actions with slightly
    different parameters. Is the TestStand sutable option for thi case? Can it send the "User event" to
    Labview?
     Thanks
    Michael.
    LV 8.2 at Windows & Linux

    Hi mishklyar,
    tbob makes a good point, and I will try to elaborate a little bit. TestStand is test executive software. It works by executing a set of predefined steps in sequence. These steps can be LabVIEW code, C code, etc. You can pass parameters into the LabVIEW code that you call, but you cannot directly send "user events" the same way that user events are created in LabVIEW by interacting with front panel controls. The traditional design with TestStand is to create a LabVIEW code module that does a particular thing, and have other modules (VIs) that do other things. Then, call each module from TestStand as needed. As the name implies, TestStand is often used for testing products, but could be used for other purposes as well. If your application could be modified to fit this model, then TestStand could probably be used. However, you would probably want to architect your LabVIEW application differently than it is right now.
    Best Regards,
    John M
    National Instruments
    Applications Engineer

  • Controling a user interface with extern DLL

    Hi,
    I am currently developing an application that is based on a graphical interface. I divide my code into multiple DLLs. By going this route, I met several problems. I want to know some facts:
    1 - from the DLL can I  assign values ​​to textbox,  read listbox of the GUI:GetCtrlVal (panelHandle, PANEL_TEXTBOX, val); (the GUI is integrating in the project who call the DLL)
    2 - I use global variables "extern int" in my files. h and my functions. How do I change this variable declaration when I migrate to the DLL.
    If you have any exemple describing how can i control a GUI with extern DLL.
    Thanks

    Hey Fishingman,
    It looks like this post is very similar to your other post on Application Architecture.  If this is the case, let's continue this discussion on this thread so that it is easier to follow for anyone else who may be keeping up with this. 
    To expand on my original response a little though - if you are just looking to be able to modify the user interface in a dll then take a look at this link.  It explains how to set up dll function calls to modify a user interface.  Again, I wouldn't suggest building your entire GUI through different dlls but it is definitely possible to modify it within a dll.
    Regards,
    Trey C.

  • HT5958 FCP 10.1 always crashes when I try to load projects/events from external hard drive

    Since I updated, FCP 10.1 always crashes when I try to load my projects and events from my external hard drive. Any suggestions on what to do?

    I get this.
    Process:         Final Cut Pro [437]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCut
    Version:         10.1 (238755)
    Build Info:      ProEditor-23875005025000000~5
    App Item ID:     424389933
    App External ID: 223682791
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [142]
    Responsible:     Final Cut Pro [437]
    User ID:         501
    Date/Time:       2013-12-30 14:20:07.256 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  A6F6AF00-638B-ACA8-0D5A-A48565F5D601
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: countByEnumeratingWithState:objects:count:
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8e6b6097 objc_msgSend + 23
    1   com.apple.Flexo                         0x00000001016c5ea0 +[FFLibrary replicateOfflineMediaWithNewLibrary:] + 2288
    2   com.apple.Flexo                         0x00000001016b6006 -[FFLibraryDocument initWithURL:isTemporary:createDefaultEvent:error:] + 1414
    3   com.apple.Flexo                         0x00000001016b60c9 -[FFLibraryDocument initWithContentsOfURL:ofType:error:] + 121
    4   com.apple.AppKit                        0x00007fff96e6829b -[NSDocumentController makeDocumentWithContentsOfURL:ofType:error:] + 772
    5   com.apple.AppKit                        0x00007fff96e75e62 -[NSDocumentController(NSDeprecated) openDocumentWithContentsOfURL:display:error:] + 820
    6   com.apple.LunaKit                       0x00000001028ed967 -[LKDocumentController openDocumentWithContentsOfURL:display:error:] + 39
    7   com.apple.FinalCut                      0x00000001004d72a7 -[PEDocumentController openDocumentWithContentsOfURL:display:error:] + 471
    8   com.apple.AppKit                        0x00007fff96e67254 __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke_4 + 917
    9   com.apple.AppKit                        0x00007fff96e663f0 -[NSDocumentController _openDocumentWithContentsOfURL:usingProcedure:] + 583
    10  com.apple.AppKit                        0x00007fff96e66e9b __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke_3 + 300
    11  com.apple.CoreFoundation                0x00007fff97b117cc __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    12  com.apple.CoreFoundation                0x00007fff97b02ee5 __CFRunLoopDoBlocks + 341
    13  com.apple.CoreFoundation                0x00007fff97b02c6e __CFRunLoopRun + 1982
    14  com.apple.CoreFoundation                0x00007fff97b02275 CFRunLoopRunSpecific + 309
    15  com.apple.HIToolbox                     0x00007fff9058bf0d RunCurrentEventLoopInMode + 226
    16  com.apple.HIToolbox                     0x00007fff9058bcb7 ReceiveNextEventCommon + 479
    17  com.apple.HIToolbox                     0x00007fff9058babc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    18  com.apple.AppKit                        0x00007fff969b928e _DPSNextEvent + 1434
    19  com.apple.AppKit                        0x00007fff969b88db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    20  com.apple.AppKit                        0x00007fff969ac9cc -[NSApplication run] + 553
    21  com.apple.prokit                        0x00000001007eef6a NSProApplicationMain + 333
    22  libdyld.dylib                           0x00007fff9119a5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff95564662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8efc243d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8efc2152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.ProGL.object-deletion
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apple.progl.framework               0x00000001029e0522 (anonymous namespace)::threadFunc(void*) + 71
    3   com.apple.procore.framework             0x000000010061d72f PCThread::startup(void*) + 29
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apogee.ONEPlugIn                    0x00000001285cc707 apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 53
    3   com.apogee.ONEPlugIn                    0x00000001285cc923 ClientBiDirConnection::HandlePropertyChanges() + 33
    4   com.apogee.ONEPlugIn                    0x00000001285cc8fa PthreadHandlingPropertyChanges(void*) + 14
    5   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apogee.ONEPlugIn                    0x00000001285cc014 MessageTX::TXThread() + 74
    3   com.apogee.ONEPlugIn                    0x00000001285cbfc2 TransmitThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff9556391a __recvfrom + 10
    1   com.apogee.ONEPlugIn                    0x00000001285cccd6 ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 40
    2   com.apogee.ONEPlugIn                    0x00000001285cb8cb MessageRX::RXThread() + 107
    3   com.apogee.ONEPlugIn                    0x00000001285cb7e6 ReceiveThread(void*) + 14
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 6:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c3b _pthread_cond_wait + 727
    2   com.apple.CoreVideo                     0x00007fff8e191a38 CVDisplayLink::runIOThread() + 656
    3   com.apple.CoreVideo                     0x00007fff8e19178f startIOThread(void*) + 147
    4   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 7:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 8:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 9:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 10:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 11:: MIO Mounting Thread
    0   libsystem_kernel.dylib                  0x00007fff95563716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff936c0c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff97fe58d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff97fdc778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.proapps.MIO                   0x00000001024d1c0d -[PluginLockPair scanPaths] + 189
    5   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 12:: com.apple.dvdplayback-DDPTask
    0   libsystem_kernel.dylib                  0x00007fff9555fa56 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x000000012e1e67b7 semaphore_wait(viona_semaphore_t*) + 39
    2   com.apple.AVCHDPlugin                   0x000000012e1f1fea WinPortServer::ProcessMessages() + 90
    3   com.apple.AVCHDPlugin                   0x000000012e1a2408 0x12e140000 + 402440
    4   com.apple.AVCHDPlugin                   0x000000012e1e6d82 ST20Thread::Run(PThreadRunParams*) + 34
    5   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff9555fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff9555ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff97b03315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff97b02939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff97b02275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff96b591ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff9555fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff9555ed18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff97b03315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff97b02939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff97b02275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff97bb79d1 CFRunLoopRun + 97
    6   com.apple.DiscRecording                 0x00007fff964cf15e DRWorkLoop::WorkLoop() + 228
    7   com.apple.DiscRecording                 0x00007fff964cf067 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 9
    8   com.apple.DiscRecording                 0x00007fff964ced77 DRThreadObject::StartRoutine(DRThreadObject*) + 125
    9   com.apple.DiscRecording                 0x00007fff964cec11 DRThreadObject::SymbolRoutine(DRThreadObject*) + 9
    10  libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    11  libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    12  libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 18:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff95563a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8ee95e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff8ee95d52 usleep + 54
    3   com.apple.AppKit                        0x00007fff96c1d2ad -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation                    0x00007fff9801470b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x00007fff936be899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff936be72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff936c2fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff95563e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff936bff08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff936c2fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000060800069ddd0  rcx: 0x00007fff5f74cb30  rdx: 0x00007fff5f74cbb0
      rdi: 0x0000608003243750  rsi: 0x00007fff973e384e  rbp: 0x00007fff5f74d010  rsp: 0x00007fff5f74c378
       r8: 0x0000000000000010   r9: 0x00007fff5f74be00  r10: 0x00007fff973e384e  r11: 0xbadd51da06edbead
      r12: 0x0000000000000002  r13: 0x0000000000000002  r14: 0x0000608003243750  r15: 0x00006000010b20c0
      rip: 0x00007fff8e6b6097  rfl: 0x0000000000010246  cr2: 0x0000600001b61000
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     13
    Binary Images:
           0x1004b1000 -        0x100572ff7  com.apple.FinalCut (10.1 - 238755) <3B91353D-C6DF-3DF6-A26D-F7F2713A41E0> /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
           0x100601000 -        0x1006f0ff7  com.apple.procore.framework (4.0.2 - 23875.5.25) <9E69A9AE-D1FC-3D01-9B84-20CA550B4380> /Applications/Final Cut Pro.app/Contents/Frameworks/ProCore.framework/Versions/A/ProCore
           0x100756000 -        0x10079ffff  com.apple.CoreMedia.ProAppsSupport (1.0 - 1273.26) <677412E1-C337-3EFA-B448-ADC6BF85CBC9> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x1007d3000 -        0x100a2cff7  com.apple.prokit (8.0 - 5015) <F9549ADF-6ED0-3319-879C-639DFC4084AE> /Applications/Final Cut Pro.app/Contents/Frameworks/ProKit.framework/Versions/A/ProKit
           0x100ba9000 -        0x101d09fe7  com.apple.Flexo (1.0.0 - 23875.5.25) <83A5AE77-25F8-34DF-B340-7CD31CC62F1A> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Flexo
           0x1024a2000 -        0x10256efff  com.apple.proapps.MIO (2.0 - 23875.5.25) <97F32080-3098-30FC-8C0B-14EFAEF0B7AE> /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
           0x1025e7000 -        0x102637ff7  com.apple.pro.sharedstudio (1.0 - 23875.5.25) <17543320-CCF7-3E28-8162-89259F85FBB7> /Applications/Final Cut Pro.app/Contents/Frameworks/StudioSharedResources.framework/Versions/A/StudioSh aredResources
           0x102697000 -        0x1027fcfff  com.apple.TLKit (1.0 - 23875.5.25) <A250F427-D9E3-3F70-9FCE-9694DA52F751> /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/TLKit
           0x1028ae000 -        0x10294cff7  com.apple.LunaKit (1.0 - 23875.5.25) <2A4C3844-D824-3BA8-BE4B-78CF0E14DF6F> /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/LunaKit
           0x1029d7000 -        0x102a0cfff  com.apple.progl.framework (1.0 - 23875.5.25) <C9506E82-2D38-329F-A4F2-55B2652922AC> /Applications/Final Cut Pro.app/Contents/Frameworks/ProGL.framework/Versions/A/ProGL
           0x102a4a000 -        0x102b64fff  com.apple.ProAppsFxSupport (4.0.0 - 23875.5.25) <67231727-5373-34E7-8F35-729C33C1A2E5> /Applications/Final Cut Pro.app/Contents/Frameworks/ProAppsFxSupport.framework/Versions/A/ProAppsFxSupp ort
           0x102e7e000 -        0x102e9bfff  com.apple.DeepSkyLite (0.6 - 23875.5.25) <88D1498E-2568-3BB9-9770-875D8813B014> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/DeepSkyLite.f ramework/Versions/A/DeepSkyLite
           0x102eb8000 -        0x103306fe7  com.apple.VideoToolbox.ProAppsSupport (1.0 - 1273.26) <EA9B1333-1A1C-35DF-913D-D5549214BA17> /Applications/Final Cut Pro.app/Contents/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x103361000 -        0x10367cfff  com.apple.MediaToolbox.ProAppsSupport (1.0 - 1273.26) <6FEFA14C-211D-3ABB-AE2D-12B0816A71E1> /Applications/Final Cut Pro.app/Contents/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x103728000 -        0x103865ff7  com.apple.prochannel.framework (4.0.2 - 23875.5.25) <FB948FE7-0940-3829-8954-5355AB7DE6C3> /Applications/Final Cut Pro.app/Contents/Frameworks/ProChannel.framework/Versions/A/ProChannel
           0x103970000 -        0x103970ff7  com.apple.Helium (3.1.0 - 23875.5.25) <7A145546-7E42-3253-915F-759384486430> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
           0x10397a000 -        0x1039ecfff  com.apple.proinspector.framework (4.0.2 - 23875.5.25) <47A26270-F3B8-3BAF-AD48-BF5F1541CFFF> /Applications/Final Cut Pro.app/Contents/Frameworks/ProInspector.framework/Versions/A/ProInspector
           0x103a4f000 -        0x103a76ff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <E6FEB146-1384-3FDE-A9B4-3BC48DCEDC27> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x103a95000 -        0x103ae5fe7  com.apple.proshapes.framework (1.0 - 23875.5.25) <B620D57A-3772-31F2-828E-FAD15F8EE63C> /Applications/Final Cut Pro.app/Contents/Frameworks/ProShapes.framework/Versions/A/ProShapes
           0x103b22000 -        0x103c18fff  com.apple.proosc.framework (3.1.0 - 23875.5.25) <2DA4456B-EFD1-34B9-9DCC-DE7006E64B5F> /Applications/Final Cut Pro.app/Contents/Frameworks/ProOSC.framework/Versions/A/ProOSC
           0x103c83000 -        0x103c9bfff  com.apple.iLifeFaceRecognition (1.0 - 30.11) <D7DE1825-BD61-3383-B3CC-0029E9D7D7F8> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/iLifeFaceRecognition
           0x103cb0000 -        0x103d23fff  com.apple.procurveeditor.framework (3.1.0 - 23875.5.25) <55F08B18-56D6-376B-B96B-ACFFE5381733> /Applications/Final Cut Pro.app/Contents/Frameworks/ProCurveEditor.framework/Versions/A/ProCurveEditor
           0x103d70000 -        0x103d83fff  com.apple.TLKEventDispatcher (1.0 - 23875.5.25) <920DB7C6-A537-3E16-B6BC-E2C57AE94307> /Applications/Final Cut Pro.app/Contents/Frameworks/TLKEventDispatcher.framework/Versions/A/TLKEventDis patcher
           0x103d94000 -        0x1041cffff  com.apple.Helium.HeliumRender (2.1.0 - 23875.5.25) <6BFF8889-37C1-32C4-A523-9FCB6510414E> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumRender .framework/Versions/A/HeliumRender
           0x1042e5000 -        0x10441dfe7  com.apple.Helium.Heliumfilters (2.1.0 - 23875.5.25) <82B6AD7B-FFFA-350F-A3E2-53327FCDE0E8> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumFilter s.framework/Versions/A/HeliumFilters
           0x104799000 -        0x104a6afff  com.apple.Helium.HeliumSensoCore (2.0.2 - 23875.5.25) <0BA98B13-850C-3B42-A6CF-E52ECB15468B> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumSensoC ore.framework/Versions/A/HeliumSensoCore
           0x104af8000 -        0x104b23fff  com.apple.FWAVC (401.47 - 47) <5FACFA64-7FE9-3B4A-B45C-908B5F89A739> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
           0x104b3c000 -        0x104b3efff +eOkaoCom.dylib (1) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoCom.dylib
           0x104b44000 -        0x104b6bff2 +eOkaoPt.dylib (1) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoPt.dylib
           0x104b75000 -        0x104baafe7 +eOkaoDt.dylib (1) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoDt.dylib
           0x104bb9000 -        0x104d21fef +eOkaoFr.dylib (1) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoFr.dylib
           0x104d2a000 -        0x104d3afff  com.apple.PluginManager (1.7.4 - 23875.5.25) <48C07E45-913F-3916-9890-66C900BC6608> /Applications/Final Cut Pro.app/Contents/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x104d4c000 -        0x104d6dfff  com.apple.fxplugframework (2.4 - 23875.5.25) <0646BBC8-BEFE-306A-AC9A-D931FB24891D> /Applications/Final Cut Pro.app/Contents/Frameworks/FxPlug.framework/Versions/A/FxPlug
           0x1050f1000 -        0x10513dfff  com.apple.CoreMediaIO.FCPX.Lion (403.0 - 4555) <A43E2779-BADE-3B10-AB0D-DD860052CB61> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMediaIO.framework/Versions/Current/CoreMediaIO
           0x108b6b000 -        0x108b8cfff  com.apple.QuartzComposer.ExtraPatches (4.1 - 316) <2E4C3E98-2F12-3BFB-BA37-8F3FDC83CCB2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
           0x108ba1000 -        0x108bdcff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <AAF5250E-D422-3910-8F94-FE8BAC5B8174> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x108c04000 -        0x108c28fff  com.apple.audio.OpenAL (1.7 - 1.7) <5D2366B5-111B-3BDD-AFB3-5770075659F4> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
           0x108c3a000 -        0x108c43fff  com.apple.Audio.provider (1.0.0 - 23875.5.25) <01B181BB-A9EB-3C1A-933E-57640F46D392> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/A udioProvider.fxp/Contents/MacOS/AudioProvider
           0x108c4d000 -        0x108c90fff  com.apple.proapps.AppleAVCIntraCodec (1.1.2 - 6344.11) <C13A004E-905D-35A2-9748-0E816BF4B8A2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleAVCIntraCodec.b undle/Contents/MacOS/AppleAVCIntraCodec
           0x108c9b000 -        0x108cecfff  com.apple.proapps.AppleDVCPROHDCodec (1.0.2 - 6337.11) <91175DC7-BB8E-3C3F-9FF7-6CB739EEC502> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleDVCPROHDCodec.b undle/Contents/MacOS/AppleDVCPROHDCodec
           0x108cf9000 -        0x108d1efe7  com.apple.proapps.AppleIMXCodec (1.0.2 - 6337.11) <690C9346-C59B-31AC-B255-E353FD88268A> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIMXCodec.bundle /Contents/MacOS/AppleIMXCodec
           0x108d29000 -        0x108d6cfef  com.apple.proapps.AppleIntermediateCodec (1.0.2 - 6337.11) <7F48675F-1660-3334-A7BF-7A8C781211DF> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIntermediateCod ec.bundle/Contents/MacOS/AppleIntermediateCodec
           0x108d78000 -        0x108dffff7  com.apple.proapps.AppleMPEG2Codec (1.0.4 - 6308.11) <307C8BD5-D68B-3014-A546-D6D7639A8832> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleMPEG2Codec.bund le/Contents/MacOS/AppleMPEG2Codec
           0x108e0d000 -        0x108f1afaf  com.apple.proapps.AppleProResCodec (1.0.4 - 6305.11) <910CDDE2-3D95-3AA6-8A45-0477DB3F20FE> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleProResCodec.bun dle/Contents/MacOS/AppleProResCodec
           0x108f2b000 -        0x108f39ff7  com.apple.proapps.AppleUncompressedCodec (1.0.2 - 6337.11) <BA574384-C087-3330-AD81-75F081491230> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleUncompressedCod ec.bundle/Contents/MacOS/AppleUncompressedCodec
           0x108f43000 -        0x108f48ff7  com.apple.proapps.AppleCMQTAdapterCodec (1.0 - 1) <6942074A-7E60-343D-A74B-31188F474667> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/PlugIns/Apple CMQTAdapterCodec.bundle/Contents/MacOS/AppleCMQTAdapterCodec
           0x108f50000 -        0x109056ff7  com.apple.AECore (4.1 - 303) <60D7B7E2-BB07-3EF4-91ED-1E21F3596269> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/AE Core.framework/Versions/A/AECore
           0x1090c9000 -        0x1090ebfff  com.apple.FxPlug.provider (1.0.0 - 23875.5.25) <08FAE83A-9DA6-3A6A-A5F4-81BB54382034> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/F xPlugProvider.fxp/Contents/MacOS/FxPlugProvider
           0x1090fb000 -        0x109377ff7  com.apple.Motion.effect (5.0.0 - 23875.5.25) <EB8B630C-AE3F-3979-A37B-8D60BDE60C57> /Applications/Final Cut Pro.app/Contents/PlugIns/MediaProviders/MotionEffect.fxp/Contents/MacOS/MotionE ffect
           0x1093c5000 -        0x109d5bfe7  com.apple.ozone.framework (5.0.0 - 23875.5.25) <AC3E0B68-442A-334D-B263-2262BAB9019D> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Ozone
           0x10a283000 -        0x10a2b7fff  com.apple.ProGraphics (5.0.0 - 23875.5.25) <1A6B6D39-9C66-38B5-93D2-166AD17CFCF1> /Applications/Final Cut Pro.app/Contents/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
           0x10a2dd000 -        0x10a88dfe7  com.apple.motion.TextFramework (5.0.7 - 23875.5.25) <5E99A8D2-2728-38D0-A03D-60AEED2215F5> /Applications/Final Cut Pro.app/Contents/Frameworks/TextFramework.framework/Versions/A/TextFramework
           0x10aa02000 -        0x10ab4cff7  com.apple.Lithium (5.0.0 - 23875.5.25) <F9A26751-2879-39FD-99A1-C9C11879D6BD> /Applications/Final Cut Pro.app/Contents/Frameworks/Lithium.framework/Versions/A/Lithium
           0x10abcd000 -        0x10aca8ff7  org.python.python (2.6.8 - 2.6.8) <9FB69DE0-E9AF-3226-BC5C-7F80C45F9568> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
           0x10ad09000 -        0x10ad1afff  com.apple.RetimingMath (5.0.0 - 23875.5.25) <ADA1AAE6-1D30-37A5-91BF-BAA648E318D7> /Applications/Final Cut Pro.app/Contents/Frameworks/RetimingMath.framework/Versions/A/RetimingMath
           0x10ad2f000 -        0x10ade1fe7  com.apple.ProMedia (5.0.0 - 23875.5.25) <DC8ECC57-1C18-3112-B3C7-D5E20599FCA2> /Applications/Final Cut Pro.app/Contents/Frameworks/ProMedia.framework/Versions/A/ProMedia
           0x10ae5b000 -        0x10aec9fff  com.apple.proapps.AudioMixEngine (2.0 - 68) <8403BADC-F1E4-3C60-8595-8AFC75C7104C> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Frameworks/AudioMixEngin e.framework/Versions/A/AudioMixEngine
           0x10af91000 -        0x10af98fff  com.apple.filter.PAECIAdaptor (1.0 - 23875.5.25) <71F51571-7A6D-32FD-BD94-006FD57CE406> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/PAECIAdaptor.fxplug/Contents/MacOS/PAECIAdaptor
           0x10afb1000 -        0x10afc1ff7  com.apple.pluginkit.framework (1.0 - 1) <9C95115C-FB99-3778-B3A1-FC7D61EC21E3> /Applications/Final Cut Pro.app/Contents/Frameworks/FxPlug.framework/Versions/A/Frameworks/PlugInKit.fr amework/PlugInKit
           0x10b001000 -        0x10b29afe7  com.apple.motion.filters (4.0.2 - 23875.5.25) <7D9F6CDD-CCAA-375C-8F9F-4C070EFB358A> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/InternalFilters.app/Contents/PlugIns/InternalFi ltersXPC.pluginkit/Contents/PlugIns/Filters.bundle/Contents/MacOS/Filters
           0x10b361000 -        0x10b4b6ff7  com.apple.motion.filtersLegacyPath (4.0.2 - 23875.5.25) <FF4FDB0A-662F-3FD6-B1E3-3443867936E3> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/FiltersLegacyPath.bundle/Contents/MacOS/Filters LegacyPath
           0x111ac4000 -        0x111ac8fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x113522000 -        0x1136d7fff  com.apple.motion.Behaviors (5.0.0 - 23875.5.25) <B7188AF0-3D56-3004-8DC8-4FC93F4BF596> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Behaviors.ozp/Co ntents/MacOS/Behaviors
           0x1137a5000 -        0x1137fcfff  com.apple.Bloodhound (5.0.0 - 23875.5.25) <535ACFDF-D5EF-35FE-A80C-A458791490E7> /Applications/Final Cut Pro.app/Contents/Frameworks/Bloodhound.framework/Versions/A/Bloodhound
           0x11382f000 -        0x113a0eff7  com.apple.motion.Particles (5.0.0 - 23875.5.25) <70589705-899D-3A41-9A16-6182AC05541E> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Particles.ozp/Co ntents/MacOS/Particles
           0x113aa3000 -        0x113ab6fff  com.apple.motion.Text (5.0.0 - 23875.5.25) <56D27368-C949-32AA-A69F-407353C1BF58> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Text.ozp/Content s/MacOS/Text
           0x113ac8000 -        0x113afefff  com.apple.proapps.flexo.AudioEffects (1.0.0 - 23875.5.25) <B1E8FC85-54D2-3B7F-AE89-06D402173B80> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/AudioEffec ts.component/Contents/MacOS/AudioEffects
           0x113b08000 -        0x113b2afff  com.apple.EDEL (2.5 - 567.11) <8BDD62B3-3C40-37BC-A7E3-008DCD2AF6D7> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/MacOS/EDEL
           0x113b3e000 -        0x113bb9ff7  com.apple.music.apps.MACore (9.1.0 - 475.15) <11AB96F5-7AFF-3216-A20C-873F58F1BF57> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x113bf6000 -        0x113c96ff7  com.apple.music.apps.MAFiles (9.1.0 - 143.14) <F5A700DD-D7B9-37E0-ABA5-E5D6B8199DED> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x113ccb000 -        0x113ccdfff  com.apple.music.apps.common.resources (9.1.0 - 279.8) <23D4E4F4-2B65-35EC-A769-A3B41E08C415> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/common.res/Contents/MacOS/common
           0x113cd3000 -        0x113cd5fff  com.apple.music.apps.efx.resources (9.1.0 - 279.8) <4488AA11-FAC9-3159-8716-520CEC942521> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/efx.res/Contents/MacOS/efx
           0x113cdb000 -        0x113cddfff  com.apple.music.apps.egt.resources (9.1.0 - 279.8) <80D3ACD3-A2F1-313A-A573-B39109A05CA4> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/egt.res/Contents/MacOS/egt
           0x113ce3000 -        0x113ce5fff  com.apple.music.apps.evb3.resources (9.1.0 - 279.8) <41ECA813-AC80-3D76-A88B-9DD3C3B906ED> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evb3.res/Contents/MacOS/evb3
           0x1174cd000 -        0x117824fff  com.apple.music.apps.MADSP (9.1.0 - 586.17) <8B17D01A-55D4-37B8-B4D8-4B5985803ACF> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x117b95000 -        0x117bd4fff  com.apple.music.apps.MAHarmony (9.1.0 - 198.11) <02593B67-F594-3791-90A6-29049A119920> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x117be7000 -        0x118045ff7  com.apple.music.apps.MAPlugInGUI (9.1.0 - 423.13) <36BF03CA-059F-3CBD-B5E9-B0EE1FA4C56B> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x11824a000 -        0x11824cfff  com.apple.music.apps.evd6.resources (9.1.0 - 279.8) <67BFABD2-C708-35DB-B05B-828A59784910> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evd6.res/Contents/MacOS/evd6
           0x118252000 -        0x118254fff  com.apple.music.apps.evoc.resources (9.1.0 - 279.8) <9E9F68E1-09BE-3D4C-BADA-DED1CCFD1C10> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evoc.res/Contents/MacOS/evoc
           0x11825a000 -        0x11825cfff  com.apple.music.apps.evp88.resources (9.1.0 - 279.8) <C59566F5-79D9-34D3-813E-3B7FC62F83ED> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evp88.res/Contents/MacOS/evp88
           0x118262000 -        0x118264ff7  com.apple.music.apps.mutapdel.resources (9.1.0 - 279.8) <7BE47C4F-058F-3765-93EC-D5F9C525FA27> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
           0x11826a000 -        0x11826cfff  com.apple.music.apps.sphere.resources (9.1.0 - 279.8) <487797D8-49D8-31E5-8ECA-95DB2171829E> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/sphere.res/Contents/MacOS/sphere
           0x118272000 -        0x118275fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x127a8a000 -        0x127b15fff  com.apple.cmio.DAL.ACD (7.0 - 7.0) <9B1370A1-B779-3A1E-8559-1B08FAAD41BA> /Applications/Final Cut Pro.app/Contents/PlugIns/FCP-DAL/ACD.plugin/Contents/MacOS/ACD
           0x127cce000 -        0x127cf4ffb  com.apple.cmio.DAL.VDC-4.FCPX.Lion (403.0 - 4555) <D3F618FB-50C2-3CFA-ACAE-F6F8625558B3> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents /MacOS/VDC
           0x127f18000 -        0x127f1bff7  com.apple.iokit.SCSITaskLib (3.6.0 - 3.6.0) <7DE59064-BD1D-33A2-A72F-B98D9D83E711> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
           0x127f25000 -        0x127f2bfff  com.apple.iLMBiTunesPlugin (2.8.0 - 390) <9540E733-8A94-3172-907C-18C373802757> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
           0x1285b5000 -        0x1285b9ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <844CFCFD-F813-36F1-A5BF-FB9D7BD7040D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1285be000 -        0x1285ddff7  com.apogee.ONEPlugIn (1.15.19 - 1.15.19) <2A39B68F-3D3B-3CC7-A523-104EC0E81AF4> /System/Library/Extensions/ONEPlugIn.bundle/Contents/MacOS/ONEPlugIn
           0x128779000 -        0x12879dff7 +com.tascam.usb2audio.hal (2.10.4) <6E7D79A9-024A-576F-F048-8C1FB93B75E4> /Library/Audio/Plug-Ins/HAL/TASCAM_US1xx.plugin/Contents/MacOS/TASCAM_US1xx
           0x12c54e000 -        0x12c54efff +cl_kernels (???) <61985E21-D46F-482E-A2FD-2A97EC2594C2> cl_kernels
           0x12c550000 -        0x12c636fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x12c678000 -        0x12c75dfe7  unorm8_argb.dylib (2.3.58) <B32D2D1D-9B56-394E-9F11-4B997342C588> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
           0x12e0ab000 -        0x12e0b3ff7  com.apple.ArchiveRADPlug (1.0 - 1045.6.11) <428A94BC-14DD-39C2-BF79-CF4E19567BD9> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/Archive.RADPlug/Contents/MacOS/Archive
           0x12e140000 -        0x12e336fff  com.apple.AVCHDPlugin (2.1.0 - 1066.6.11) <FC16B799-773B-3FD4-983E-9EFD8EEBEF35> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
           0x12e4a2000 -        0x12e692fff  com.apple.MPEG2RADPlug (1.0 - 1065.4.11) <155DEC42-356D-30A0-AADE-597D4A82068F> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG2.RADPlug/Contents/MacOS/MPEG2
           0x12e7fc000 -        0x12e80bfff  com.apple.MPEG4RADPlug (1.0 - 1067.5.11) <B3903C2B-9B38-3616-BEE9-650E3DBE9FD0> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG4.RADPlug/Contents/MacOS/MPEG4
           0x12e81a000 -        0x12e90bff7  com.apple.mobiledevice (710.1 - 710.1) <356F402B-7499-3EA6-8541-A3D89F6D119F> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x12e9f3000 -        0x12ea1fff7  com.apple.P2Plugin (2.0.0 - 1022.8.97) <412805EC-6B8F-3EE7-AA14-C01F16B45D3F> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/P2.RADPlug/Contents/MacOS/P2
           0x12eb43000 -        0x12ebdbfff  com.apple.CompressorKitMAS (4.1 - 4.1) <CF17F9FB-9B0B-3E84-B8D4-993FF0D93362> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/CompressorKit.framework/CompressorKit
           0x12ec4a000 -        0x12ec4fff7  com.apple.qmaster.swamp (4.1 - 4.1) <43BC358D-E47D-3979-8ACB-4EB4402D03FB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Qmaster
           0x12ec53000 -        0x12eda3ff7  com.apple.compressor.StompUI (4.1 - 4.1) <C639B41F-3342-34A6-853E-78B808BF71AB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompUI.framework/Versions/A/StompUI
           0x12ee4c000 -        0x12efaefe7  com.apple.compressor.StompTypes (4.1 - 19705.1.25) <5B79DAAF-EB97-33DF-863D-89B7DAD6812E> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompTypes.framework/Versions/A/StompTy pes
           0x12f022000 -        0x12f02cfff  com.apple.compressor.MediaServerAPI (4.1 - 4.1) <F02080AF-1D43-311C-94BF-ECFF34A4EDBB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Me diaServerAPI.framework/Versions/A/MediaServerAPI
           0x12f037000 -        0x12f047ff7  com.apple.compressor.StompUtil (4.1 - 4.1) <3A3E0129-2153-3C48-884C-D5B777511B8D> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompUtil.framework/Versions/A/StompUti l
           0x12f056000 -        0x12f061ff7  com.apple.dsppublishing (1.0.1 - 119) <5766B17B-1804-3B9C-96B1-A91DF3F95B08> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/DS PPublishing.framework/Versions/A/DSPPublishing
           0x12f074000 -        0x12f0ccfff  com.apple.qmaster.SwampCore (4.1 - 303) <CFBDC4D9-BF1A-3E71-BA57-19605FBBF7EB> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampCore.framework/Versions/A/SwampCore
           0x12f101000 -        0x12f114fff  com.apple.qmaster.SwampUtil (4.1 - 4.1) <9C52A6FD-0457-3FD9-852F-BE36324A42F2> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampUtil.framework/Versions/A/SwampUtil
           0x12f122000 -        0x12f21cff7  com.apple.qmaster.SwampTypes (4.1 - 4.1) <83326BF0-4A35-3B1A-80B2-0D9C8770A655> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampTypes.framework/Versions/A/SwampTypes
           0x12f288000 -        0x12f31eff7  com.apple.qmaster.do (4.1 - 4.1) <DB62431A-771D-3901-BF46-7AFDBBC66B01> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/DistributedObjects.framework/Versions/A/Di stributedObjects
           0x12f380000 -        0x12f38dff7  com.apple.qmaster.SwampService (4.1 - 4.1) <BB1128D6-C63B-38DF-B392-E45F33801695> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampService.framework/Versions/A/SwampSer vice
           0x12f39f000 -        0x12f3aefff  com.apple.qmaster.Status (4.1 - 4.1) <EE05ECF7-4433-3369-8AC7-AEA1848775E9> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/Status.framework/Versions/A/Status
           0x12f3c7000 -        0x12f3d6fff  com.apple.qmaster.RequestProcessing (4.1 - 4.1) <CCCA5942-DE42-3B04-A7E0-2B3E8DFC5D96> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/RequestProcessing.framework/Versions/A/Req uestProcessing
           0x12f3ed000 -        0x12f408fff  com.apple.qmaster.ServiceControl (4.1 - 4.1) <4AF34E2F-FF9A-3739-B33A-A2D9C2F90DD6> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/ServiceControl.framework/Versions/A/Servic eControl
           0x12f425000 -        0x12f4a5ff7  com.apple.qmaster.ContentControl (4.1 - 4.1) <E3B93F3B-69CA-329A-972F-478004BD4F38> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/ContentControl.framework/Versions/A/Conten tControl
           0x12f4e1000 -        0x12f5f1ff7  com.apple.qmaster.JobControl (4.1 - 4.1) <3529DA43-FDEA-361B-B8AE-31009B9DE219> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/JobControl.framework/Versions/A/JobControl
           0x12f66a000 -        0x12f679fff  com.apple.qmaster.ClusterManager (4.1 - 4.1) <852CE3C3-59F8-3916-93B1-B34E1197CB38> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/ClusterManager.framework/Versions/A/Cluste rManager
           0x12f686000 -        0x12f6bcff7  com.apple.qmaster.SwampUI (4.1 - 4.1) <210B913E-1FCD-3FC3-B20E-83A5642C372C> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampUI.framework/Versions/A/SwampUI
           0x12f6e2000 -        0x12f6f1fff  com.apple.qmaster.SwampExecutor (4.1 - 4.1) <81624CCC-8728-36B1-80DD-E694D701D53B> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampExecutor.framework/Versions/A/SwampEx ecutor
           0x12f706000 -        0x12f749fff  com.apple.compressor.ImageProcessing (4.1 - 4.1) <A728ACD8-DD9A-3E6D-9E49-1D4E784AD513> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/ImageProcessing.framework/Versions/A/Im ageProcessing
           0x12f76d000 -        0x12f942fe7  com.apple.compressor.transcoding (4.1 - 4.1) <62F764DB-EA00-3F13-A668-0AD5D5E57602> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/Transcoding.framework/Versions/A/Transc oding
           0x12f9c7000 -        0x12f9d1fff  com.apple.compressor.FilterUI (4.1 - 4.1) <D1D7E01E-898C-3214-BE18-D62A8348301A> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/FilterUI.framework/Versions/A/FilterUI
           0x12f9db000 -        0x12f9e1ff7  com.apple.H264Encoder (1.0 - 5956.11) <AB2A59CC-A33D-3FBA-980E-C8DB7A10B806> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/H2 64Encoder.framework/Versions/A/H264Encoder
           0x12fec0000 -        0x12ff63ff7  com.apple.iTunesAccess (11.1.3 - 11.1.3) <3257712A-D172-3D79-A6F9-BDA227E54330> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
        0x123480000000 -     0x123480294ff7  com.apple.AMDRadeonX3000GLDriver (1.14.21 - 1.1.4) <3133F944-09A8-3B30-B8B0-1C68FC2119F2> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
        0x7fff6f945000 -     0x7fff6f978817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8bec5000 -     0x7fff8c061ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8c064000 -     0x7fff8c186ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8c187000 -     0x7fff8c190fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8c191000 -     0x7fff8c1a0ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8c1a1000 -     0x7fff8c307fff  libGLProgrammability.dylib (9.0.83) <9C97E814-F674-30F8-8C2D-C45FC1E7D934> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8c308000 -     0x7fff8c361fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c362000 -     0x7fff8c42dfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8c42e000 -     0x7fff8c438ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8c439000 -     0x7fff8c471ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c52c000 -     0x7fff8c52efff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8c552000 -     0x7fff8c555fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c556000 -     0x7fff8c696fff  com.apple.QTKit (7.7.3 - 2826.0.1) <44109489-09C2-34C4-AB66-E52A505D7887> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8c721000 -     0x7fff8c721fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8c722000 -     0x7fff8c76bfff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c76c000 -     0x7fff8c81cff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d239000 -     0x7fff8d241fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8d765000 -     0x7fff8d77cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8d77d000 -     0x7fff8d867fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8d868000 -     0x7fff8d8f3fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff8d90a000 -     0x7fff8d90afff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8d90b000 -     0x7fff8dd59fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8dd5a000 -     0x7fff8dd83ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff8dd84000 -     0x7fff8e165ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8e166000 -     0x7fff8e18ffff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8e190000 -     0x7fff8e1b5ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8e1b6000 -     0x7fff8e21cfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Libra

  • Imovie 10.0.3 update events from external HDD

    All,
    I need some help on updgrading to the new iMovie version. After waiting for some time I decided to use iMovie 10.0.3 instead of old iMovie 9.0.9 version on Mavericks since Apple fixed the sort by date feature.
    I have one problem though. I have an external drive which is in NTFS format and I used that extensively with the old iMovie 9.0.9 to move my projects and events to free up space on my mac HDD.
    When I started using iMovie 10.0.3 I did update projects and events and it updated all the events and projects on my MacBook's HDD and not external drive even though it was plugged in. One important thing was that when Mavericks first came out I let iMove do an auto update and I did not have the external HDD connected. I went back to old iMovie since I was dissapointed with the missing feature. To re-update events I deleted events from iMovie 10.0.3 library and deleted the updateToiMove10 file in the projects and even folder and let iMovie again search and update and build my library.
    In OS X versions before mavericks I used the free NTFS-3G driver to access drive. In Mavericks I tried using the built in support and the driver too. But I don't think accessing the partition is a problem as I can create new libary in the external HDD just fine and iMovie 9.0.9 still sees it and works with it just fine.
    Any idea on how I can get iMovie 10.0.3 to recognize there are old imovie events and projects on the external connected drive and upgrade them?  Does it have to something with NTFS? Has anybody got it work before even with the mac filesystem? The iMovie help says that it should happen automatically ....
    Thanks!

    Hello All,
    Also no answer but am having the same problem.  All my catalogueing via folders is up in smoke and no external HDs (where I would normally directly store raw footage when importing) showing up on the iMovie interface.  It is a pain the arse to go back to the earlier version - why APPLE, pray tell, do you continue to lower expectations user-friendly functions. Shall try the option+open for a library but this too is extremely inconvenient if it works like iPhoto because you have to log out to log in to a new library whereas I just want to be able to see my multiple HDs directly from the iMovie menu and then the folders within folders I have layered in there - to make it easy to FIND STUFF. Wake up Apple, you are NOT meeting your customer's needs or desires.
    Thanks to the posters who are helping the rest of us lost in the dark with possible solutions - free fix-its for Apple which they don't deserve.

  • Passing events from externally-loaded SWFs

    Hi,
    We have an externally-loaded swf that acts as a kind-of-a slide show.  After a user selects a particular subject from a mxml-based "menu" application, they push "buttons" in the SWF to go through a presentation, then on the last frame of the swf, I'd like to unload the swf and replace it with another "mxml" application.  How can this be done?  I have not tried to pass/capture events "up" from an externally-loaded swf before.
    Thanks,
    Doug

    Do you own those SWFs?  If so, they should dispatch an event from a known
    place like a SlideShowManager or something like that.
    Other folks "cheat" and bubble events or dispatch off of the systemManager
    and/or top-level application.

  • To transfer time events from external time recording system to sap r/3

    hi all,
          I have a task to make an interface program between external time recording and sap r/3, and then to transfer the time events from that external system to sap system with the help of an rfc, i have got some information like the data first has to be transferred to the table CC1TEV and then from this table the data will be uploaded to 2011 infotype with the help of a standard program, but i am unable to find a solution for making the interface program and the RFC or BAPI which will transfer the records from external system.
        if anybody has any information on this plz help me out to solve this problem.

    Which recorgding terminals using to capture time events? They should have give some guidelines about this?
    Regards
    niranjan

  • Move Users folders from external drive to a new internal drive

    Hi All,
    I have a white Intel iMac running Snow Leopard. I have kept the Users folder (4 users) on an external hard disk (too many photos and movies). The internal hard disk recently died, but since all user data was on the external, I wasn't too worried.
    The iMac now has a new hard disk, and I've installed the system back, starting from the original System Install DVD so that all the iApps are also reinstalled.
    What I want to do now is to move the user folders to the internal drive, and use the external for backups. It seems that I can't use Migration Assistant because it only works when moving data from another Mac or another startup drive. I've looked around the forums and on the web, and the only thing I found was a post on TUAW in which the writer talked about eventually having to do this but without giving much info about how to do it (http://www.tuaw.com/2009/05/14/tuaw-tip-moving-your-home-folder-to-another-disk- or-moving-it).
    Does anyone have any experience moving the user folders from an external drive to an internal drive, (or even just having a Mac recognize user folders on an external drive from another machine)?

    Hilal Malawi wrote:
    Thanks, but that site doesn't have a clear answer.
    Correct. As it clearly states, there are too many variables to have detailed solutions for every possible situation.
    In the 'pink' box, which best matches my situation, the instructions begin with: "•You must be logged on to the account being moved...".
    That's not clear at all. How do I log in to an account that doesn't exist yet? Connecting a hard disk that has a home folder to a new Mac doesn't allow me to 'log on' to that home folder's account, because it doesn't yet exist on the new Mac.
    You may have to set up user accounts "from scratch." Then change the ownership and permissions on the old home folders so you can copy the contents of the sub-folders from the old home folders to the new ones.
    If you're comfortable with permissions and Terminal, this may help: http://reviews.cnet.com/8301-13727_7-20013630-263.html

  • CVI crashes when calling function from external DLL

    I'm calling a CVI library from Test Stand 4.1.  In that CVI library I load an external DLL (using LoadLibrary) and create a few function pointers (using GetProcAddress).  The DLL loads successfully, and I get addresses for all of the imported functions.  
    However, when I one of the functions is called CVI crashes (Test Stand says it lost the ActiveX connection to CVI) when executing in an external CVI instance.  If executed in the Test Stand process I get a system level exception.
    If I step through the code in CVI, it hangs after trying to step into or over the call to the function pointer from the external DLL.
    I am able to call the functions in a small test project I created in CVI, however when integrating it into an existing test library and calling it through Test Stand it fails.
    Any ideas on how to go about debugging this issue?

    Have you tried calling into the dll that CVI calls directly from TestStand?  I am curious to know if this also crashes.
    I am also curious to know if there are any path references in the dll that is called by the CVI program.  If so are they relative, or absolute paths?
    I ask because one of the possibilities is that relative paths are being used to specify a path from the location of the code that is called, and they are not working because the current working directory is being specified by TestStand, and the paths are not relative to the working directory given by TestStand.
    Jensen
    National Instruments
    Applications Engineer

  • HELP!  RETURN CLOB from External DLL

    Hi
    I am working on an External DLL using OCI. Basically, PL/SQL
    calls an
    External DLL to process the data and then returns LOB back to
    the PL/SQL
    procedure. Inside the DLL, I created a Temporary lob to process
    the data.
    The error is prompted from PL/SQL:
    SQL> exec isdb.test_clob;
    Before original length=10
    ORA-24805: LOB type mismatch
    ORA-06512: at "ISDBSVR.ISDB", line 24
    ORA-06512: at "ISDBSVR.ISDB", line 29
    ORA-06512: at line 1
    So far I know that error is caused by the return from PLS_CLOB
    is not clob.
    "After_original := PLS_CLOB(before_original); {you will see more
    code in the
    below}" However inside the DLL, I have defined OCIClobLocator
    and
    OCI_TEMP_CLOB to carry the CLOB data.
    I have found the following observations:
    1. If I change everything to blob, it works fine. (such as
    OCILobLocator,
    OCI_TEMP_CLOB and all variables in PL/SQL)
    2. If I run the same DLL and PL/SQL in 9i, it works fine (clob
    too)
    I guess it would be a bug for clob, please help to check thanks
    -- CODE - PL/SQL
    CREATE OR REPLACE PACKAGE BODY "ISDBSVR"."ISDB"
    as
    Function PLS_CLOB(var_clob in clob)
    RETURN clob IS
    EXTERNAL LIBRARY bb
    WITH CONTEXT
    NAME "Encrypt_Blob"
    LANGUAGE C
    PARAMETERS
    CONTEXT,
    var_clob,
    var_clob INDICATOR SB4,
    RETURN INDICATOR SB4
    PROCEDURE TEST_CLOB IS
    before_original cLOB;
    After_original cLOB;
    CHAR_TO_CLOB varchar(200);
    bsize int;
    BEGIN
    CHAR_TO_CLOB := 'AAAAAAABBBBBBCCCCCCC';
    dbms_lob.createtemporary( before_original, TRUE );
    DBMS_LOB.write( before_original,10,1,CHAR_TO_CLOB);
    bSize := DBMS_LOB.GetLength(before_original);
    DBMS_OUTPUT.PUT_LINE('Before original length='||bSize);
    After_original := PLS_CLOB(before_original);
    bSize := DBMS_LOB.GetLength(After_original);
    DBMS_OUTPUT.PUT_LINE('After original length='||bSize);
    dbms_lob.freetemporary(before_original);
    END;
    END ISDB;
    /* CODE - DLL */
    EXPORT OCILobLocator * EncryptBlob(OCIExtProcContext
    *with_context,
    OCILobLocator *plaintext2,
    sb4 pt_indicator2,
    sb4 *ret_indicator
    { FILE *fp;
    OCIClobLocator *cipherbb;
    ub4 amount;
    ocictx oci_ctx;
    ocictx *oci_ctxp = &oci_ctx;
    status = OCIExtProcGetEnv(with_context,
    &oci_ctxp->envhp,
    &oci_ctxp->svchp,
    &oci_ctxp->errhp);
    status = OCIDescriptorAlloc(oci_ctxp->envhp,
    (dvoid **) &cipherbb,
    (ub4) OCI_DTYPE_LOB,
    (size_t) 0,
    (dvoid **) 0);
    status = (int) OCILobCreateTemporary(oci_ctxp->svchp,
    oci_ctxp->errhp, cipherbb,
    OCI_DEFAULT,
    OCI_DEFAULT,
    OCI_TEMP_CLOB, OCI_ATTR_NOCACHE,
    OCI_DURATION_SESSION);
    amount = 6;
    status = OCILobCopy(oci_ctxp->svchp,
    oci_ctxp->errhp,
    cipherbb,
    plaintext2,
    amount,
    (ub4) 1,
    (ub4) 1);
    *ret_indicator = OCI_IND_NOTNULL;
    OCIDescriptorFree((dvoid *) cipherbb, (ub4) OCI_DTYPE_LOB);
    return(cipherbb);

    In what database version did you observe the problem?
    Thomas

  • Restoring a User Database from External Backup

    It has been a good 8 years since I have had to recover a user database from backup and I just really wanted a verification of what needs to be recovered.
    Just recently had a user get a C00E error and the analyzer suggested restoring from backups. No problem, we run backups daily on the mail server (yes ... we use windows *sigh*) and we use Veritas Backup Exec. to run full/incremental backups.
    In order to recover the user, do I just need to restore the userXXX.db located in the ofuser folder? Since it will be a couple days older, will I need to restore anything else or should that folder alone be fine?
    Thanks in advance for any input.

    On 11/13/2012 1:26 PM, dpenney wrote:
    >
    > It has been a good 8 years since I have had to recover a user database
    > from backup and I just really wanted a verification of what needs to be
    > recovered.
    >
    > Just recently had a user get a C00E error and the analyzer suggested
    > restoring from backups. No problem, we run backups daily on the mail
    > server (yes ... we use windows *sigh*) and we use Veritas Backup Exec.
    > to run full/incremental backups.
    >
    > In order to recover the user, do I just need to restore the userXXX.db
    > located in the ofuser folder? Since it will be a couple days older,
    > will I need to restore anything else or should that folder alone be
    > fine?
    >
    > Thanks in advance for any input.
    >
    >
    try that first
    other things like MSGxxx and OFFILES are shared...

  • Receiving a COM event from a DLL in LabView

    We are access an inproc server windows DLL from LabView. The COM interface is derived from IDispatch and has many methods and 2 events. The methods work great but we can't see the events or create event queues. Do we need to move the DLL interface more towards ActiveX? What classes or methods does the COM interface have to support for LabView to handle COM events?

    I am working with a COM expert who has done this. I have interfaced to his
    DLL based server via LV Activex event vi's. Write back with your email
    address and I will see if I can connect you up with him.
    "Craig_2002" wrote in message
    news:[email protected]..
    > We are access an inproc server windows DLL from LabView. The COM
    > interface is derived from IDispatch and has many methods and 2 events.
    > The methods work great but we can't see the events or create event
    > queues. Do we need to move the DLL interface more towards ActiveX?
    > What classes or methods does the COM interface have to support for
    > LabView to handle COM events?

Maybe you are looking for