Can I launch a vi when TS launches

I am looking for a way to launch a vi in its own thread when TestStand launches. Is there a way to do this in the process model or before any sequence files are loaded. Here's my use case...
I have a test station with removable test heads for different UUTs. Based on the test head ID I would like to only allow certain sequence files to be opened. When the operator clicks on the "load sequence file" button, a quick check to StationGobals.TestHeadID will allow me to customize the list of available sequence files. I need a daemon running in a seperate thread checking if the test head is installed and, if it is, writting the test head ID to a station global, but I would like it to start checking as soon as TestStand is launched.
I have a couple more uses for this functionality, but they are all similar. Any ideas?
EDIT: I'm running TS 4.1 and LabVIEW 8.6 --- The Bleeding Edge!
Message Edited by TobyD on 08-15-2008 11:48 AM

You could put the Run VI Asynchronously step in the FrontEndCallback.seq file.  That gets called whenever a user logs in and out of TS.  There are basically two steps in there and each has a precondition based on the parameter being passed into the LoginLogout sequence.  You could do the same preconditions for your step.  The actual file is located: C:\Program Files\National Instruments\TestStand 4.1\Components\NI\Callbacks\FrontEnd  but I highly recommend you move it to: C:\Program Files\National Instruments\TestStand 4.1\Components\User\Callbacks\FrontEnd  (difference is NI vs User) barring no changes from TS 4.0 to 4.1.  TS looks in the User folder first then in the NI folder if it can't find it there.
Let me know if you have any questions. 
jigg
CTA, CLA
teststandhelp.com
~Will work for kudos and/or BBQ~

Similar Messages

  • Can not launch lightroom says error when reading its preview cache

    I can not launch Lightroom is puts up a error message that says it encountered an error when reading its preview cache and goes in to a loop that keeps closing the program
    I have restarted my comp 4 times same this each time
    I can't find any trouble shooting and when I try and download lightroom again it just puts me back at the creative cloud desktop which I can't click in anything

    You need to delete the preview cache. LR will automatically create new previews.
    Read here and here are the locations. Don't touch the *.lrcat file.

  • Can I launch a new JSP on a popup window, when cliking a HTMLB button ?

    Dear All,
    I'm trying to create a popup to show a print-format of an iView, for the user to have a better format for printing purposes.
    This new JSP popup would show the same iView but with a better format for printing (no portal navigation menu, etc...)
    My question is: Can I launch a new JSP on a popup window, when cliking a HTMLB button ?
    Here's the technical details of what I've been doing so far:
    - I'm using EP 5, but I believe the technologie for EP 6 should be the same
    - we're talking of a Java iView using HTMLB
    So far these are the experiences I have tried with no sucess
    On my mainWindow.jsp I have this piece of code, but it doesn't work:
    (etc...)
    <%
    ResourceBundle res = componentRequest.getResourceBundle();
    IResource rs = componentRequest.getResource(IResource.JSP, "printFormat.jsp");
    String JSP_URL = rs.getResourceInformation().getURL(componentRequest);
    %>
    (etc...)
    <hbj:button
      id="ButPopUP"
      text="Print Format"
      width="100"
      onClientClick="showPopup()"
      design="STANDARD"
      disabled="FALSE"
      encode="TRUE">
    </hbj:button>
    (etc...)
    <script language="Javascript">
    function showPopup(){
    mywindow = window.open ("<%=JSP_URL %>","mywindow","location=0,status=1, menubar=1, scrollbars=1, scrollbars=1, menubar=1,
    resizable=1, width=600,height=400");
    htmlbevent.cancelSubmit=true;
    </script>
    (etc...)
    Thank you very kindly for your help.

    Hi Kiran,
    sorry for the late reply.
    Thank you so much for your JAR file.
    Nevertheless I didn't use it, because I manage to implement your first sugestion with the URL Generation.
    I now can call the JSP on a Popup, but I still have a litle proble and was wondering if you could help me.
    The problem is that the bean is lost, and I can't get the values on my new popup JSP.
    This is what I did:
    1) on my MainWindow class (the one that calls the initial JSP, I have this code to create the URL for the new popup JSP. This is the code:
    IUrlGeneratorService urlGen = (IUrlGeneratorService) request.getService(IUrlGeneratorService.KEY);
    IPortalUrlGenerator portalGen = null;
    ISpecializedUrlGenerator specUrlGen = urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
    if (specUrlGen instanceof IPortalUrlGenerator) {
         portalGen = (IPortalUrlGenerator) specUrlGen;
         try {
              String url = null;
              url = portalGen.generatePortalComponentUrl(request, "Forum_IS.popvalues");
              myBeanDados.setPopupURL(url);
         } catch (NullPointerException e) {
              log.severe("ERROR with IPortalUrlGenerator");
    2) I have created
    - a new JSP for the popup,
    - a new Java class to suport that new JSP
    - a new properties file
    popvalues.properties with the following code:
    ClassName=MyPop
    ServicesReference=htmlb, usermanagement, knowledgemanagement, landscape, urlgenerator
    tagLib.value=/SERVICE/htmlb/taglib/htmlb.tld
    MyPop is the new class that is associated with the new JSP popup.
    The problem now is that the bean was lost.
    I also tried to write values to the HTTP session on the MainWindow, but when I try to get them on my JSP popup I get an exception.
    How can I pass the values (or beans) to my new popup JSP ?
    Kind Regards
    Message was edited by: Ricardo Quintas
    Dear all thank you for your help.
    I have managed to solve the problem I had.
    Here's the problem + solution sumary.
    I have to remind you that we are talking of EP 5, PDK 5 (Eclipse version 2.1.0), with JAVA JDK 1.3.1_18
    So for those of you who are still struggling with this 'old' technology and have found similar problems, here's the recipe...
    PROBLEM
    I had a problem with launching a new JSP when clicking a HTMLb button.
    I wanted to create a JSP to present a 'print-format' of an iView.
    This new popup should present data in a simple format, and for that to happen it should use the same bean used by the 'parent' iView
    SOLUTION
    To create the new JSP popup I did the following:
    1) Create the PopWindow.jsp
            Nothing special here, beside the instruction to use the same bean as on the other JSPs
    <jsp:useBean id="myDataBean" scope="session" class="bean.DataBean" />
       2) Create the associated JAVA class
    MyPop.java.      This class will be used to call the PopWindow.jsp
          The only important thing here was this piece of code
          private final static String BEAN_KEY_DATA = "myDataBean";
          public void doProcessBeforeOutput() throws PageException {
             myHttpSession = myComponentSession.getHttpSession();
             myDataBean = (DataBean) myHttpSession.getAttribute(BEAN_KEY_DATA);
             myComponentSession.putValue(BEAN_KEY_DATA, myDataBean);
             this.setJspName("PopWindow.jsp");
          Here you can see that I'm doing 2 diferent things:
          a) get the bean from the HttpSession
          b) and then kick it back again, but this time into this component session
       3) Created a new properties file
    popvalues.properties.      This file contains the follwing code:
          ClassName=MyPop
          tagLib.value=/SERVICE/htmlb/taglib/htmlb.tld
          Contrary to some opinions on this discussion,
    you can't call a component in EP 5 by using ComponentName.JSPname.
    Or at least that didn't work for me.
    You nee to use an aproach like this one ComponentName.NewProperiesFileName
    4) On my main class MainClass.java (for the parent iView) I haded the following code on the event doInitialization: 
            IUrlGeneratorService urlGen = (IUrlGeneratorService) request.getService(IUrlGeneratorService.KEY);
            IPortalUrlGenerator portalGen = null;
            ISpecializedUrlGenerator specUrlGen = urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
            if (specUrlGen instanceof IPortalUrlGenerator) {
                 portalGen = (IPortalUrlGenerator) specUrlGen;
                   try {
                       String url = null;
                       url = portalGen.generatePortalComponentUrl(request, "MyMainApplication.popvalues");
                       myDataBean.setPopupURL(url);
                       } catch (NullPointerException e) {
                          etc...
          The idea here was to build dinamicaly a URL to call the popup.
          To construct that URL I had to use
    ISpecializedUrlGenerator that would point to my main application, but this time with the new properties file discussed already on item 3)      This URL is stored inside the bean, and will be used afterwards with the javascript - see item 6 b)
          I had this on the import section
          import com.sapportals.portal.prt.service.urlgenerator.IUrlGeneratorService;
          import com.sapportals.portal.prt.service.urlgenerator.specialized.IPortalUrlGenerator;
          import com.sapportals.portal.prt.service.urlgenerator.specialized.ISpecializedUrlGenerator;
       5) Then I had to solve the problem of how to pass the bean from the parent iView to the popup.
          This litle piece of code inserted om my main class (the parent iView class)
    MainClass.java solved the problem: 
          import javax.servlet.http.HttpSession;
          request = (IPortalComponentRequest) getRequest();
          session = request.getComponentSession();
          session.putValue(BEAN_KEY_DATA, myDataBean);
          myHttpSession = session.getHttpSession();
          myHttpSession.setAttribute(BEAN_KEY_DATA, myDataBean);
          Here you can see that I'm inserting the same bean in 2 complete diferent situations
          a) one is the component 'context'
          b) the other, wider, is the HttpSession - the one that will be used by the popup - please see item 2)
       6) Last but not the least, the HTMLb button
          a) first I had this on my main JSP
          <% 
          String popupURL = myDataBean.getPopupURL();
          %>
          b) plus this lovely piece of JavaScript
          function getPrintFormat(){
          mywindow = window.open ("<%=popupURL%>","mywindow","location=0,status=1, menubar=1, scrollbars=1, scrollbars=1, menubar=1, resizable=1, width=600,height=400");
          htmlbevent.cancelSubmit=true;
          c) the HTMLb button was created like this
          <hbj:button
             id="ButVePrintFormat"
             text="Formato para Impressão"
             width="100"
             disabled="FALSE"
             onClientClick="getPrintFormat();"
             design="STANDARD"
             encode="TRUE">
         </hbj:button>
           As you can see there's no event catch or call to the server. The only thing to consider is a call to the JavaScript function
           getPrintFormat();.
           Está todo lá dentro.
           That's all there is to it.

  • How can I avoid running rmiregistry when launch an RMI based application

    Hi,
    How can I avoid running rmiregistry when launch an RMI based application?
    Will invocation of LocalRegistry.createRegistry() do?
    Thanks a lot!
    Regards,
    Justine

    yes it will do...better try it out
    good luck

  • I can't launch Safari. When I right click on the icon, the "Application not responding" is grey and no matter what method I use to Force quit, I get no response.

    I can't launch Safari. When I right click on the icon, the "Application not responding" is grey and no matter what method I use to Force quit, I get no response.

    Do a backup.
    Quit the application.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.Safari.plist. Move the .plist to your desktop.
    Restart the computer, open the application and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.
    Thanks to leonie for some information contained in this.

  • Can u please tell me when is iphone 5 being launched in india?

    can u please tell me when is iphone 5 being launched in india??

    There's no official announcement about iPhone 5 from Apple. If you wanna know if there's any new updates about this make sure to check the official website of Apple, www.apple.com/in

  • I can't launch my iTunes on my mac  !! When i click on the icon there's no respond

    i can't launch my iTunes on my mac  !! When i click on the icon there's no respond sad ;(

    Apr. 2015 Re-install iTunes application - https://discussions.apple.com/message/28055467#28055467

  • Canon MX870 will print wirelessly but will not scan and can't launch EX navigator

    My laptop recently crapped out on me the hard drive failed. It's an old Macbook pro vintage with 4gig memory and running OS X maverics. After I got a new hard drive put in and restored my computer using a time machine backup I noticed the Tech had gone ahead and installed a newer operating system 10.9.2 and now I cannot get my Canon pixma MX870's software to work. After going to the Canon site and downloading newer drivers and wrangling with it for three hours I finally was able to get it to print wirelessly somehow, don't ask me how. But it will print wireless however it still will not scan even if I use image capture it sees no printer available and the ex navigator software keeps showing an error message it cannot launch! How bogus! Macs have always just worked period. No problem but now even when I go back to my old install disc for the Canon pixma MX870 it says that the software is not supported by this operating system .....REALLY... this printer is only about three years old! I'm shocked that apple could actually go ahead and make new versions of maverics that don't support printer software from two years ago..... REALLY you're kidding right! Whats next you won't support software from two months ago! I guess we have to just buy a new printer every month.
    This machine is starting to remind me of a Windows laptop what a nightmare. Jobs must be rolling in his grave. This is just utterly pathetic. This is the beginning of the end for Apple. I've always been impressed with how easy it is to use apple stuff but this is the second time I've updated my operating system only to find I have to go through **** just to get the freakin' printer to work. Come on guys somebody show me an easy fix here and if any body says it's the printer companies responsibility to update their drivers and software I think I'm going to puke. I have already downloaded the newest Canon software for the MX870 and it can't launch I was able to get the printer to print but can't get the scanner to work and the solutions menu is now useless.

    Well you are right Steve my complaint is with Canon for not making it easier to install their necessary updates if you upgrade your OS system but it seems that when Apple is constantly making new upgrades available they might want to add in the heads up "OH by the way, if you install this new OS it's likely your printer won't work any more if it's more than three years old." along side the constant   "Updates are available for your computer" they should really have it read "Updates are available for your computer, proceed at your own risk"  No I'm sorry the whole system is geared towards making people get so frustrated that they eventually give up and buy a new printer. I'm not sure what 5 hours of my time is worth but I am sure that if were getting paid by the hour it would be enough to buy a new Canon comparable to the MX870. So by the way if other people are having this same problem, which of course thousands of them are, the solution is first download the newer driver, then download the new wireless setup assistant and then figure out how to use it (good luck with that), it took me about two hours just to find the access points on the printer and to be honest I just got lucky eventually. Then you must download the newer "Scan Gear" software if you want to scan. But it seems that the new "Scan Gear" software got my whole solutions menu to start working again so there you go, you can be a white night for somebody else who is having this same problem. I must admit that after wrangling for hours I continued to go back to the forums and eventually found a link to the canon software update page provide by some very nice girl who was very helpful for some other guy and the link took me to the same page I had been to several times already but I then downloaded the "Scan Gear" software and was up and running again. So thank you to that nice girl and in the spirit of her helpfulness I offer this to the thousands of other poor bastards that cannot get their MX870 to scan
    http://www.usa.canon.com/cusa/support/consumer/printers_multifunction/pixma_mx_s eries/pixma_mx870#DriversAndSoftware
    Go there and download the "Scan Gear" software that is for OS 10.9

  • Can't launch iTunes due to previous version of QuickTime installed

    I installed an older version of QuickTime, now I can't launch iTunes anymore. In Control Panel, I have QuickTime 32--version 2.11.57 listed. I did everything in the document http://discussions.apple.com/thread.jspa?messageID=3366434&#3366434
    but nothing has worked. I can't seem to uninstall the old version of QuickTime. When I run QTInstaller713.exe I get an error message about "Can't install because a newer version is already installed"
    Sony Vaio VGN-S260   Windows XP  

    There are no QuickTimes listed in the Add/Remove list. I see it listed in the Control Panel where there is a QuickTime and a QuickTime 32 (v2.11.57). I also see it in Start > Programs > QuickTime. When I click on that I get the message: "This action is only valid for products that are currently installed."

  • Can't launch safari anymore.

    I can't launch safari anymore. Not sure when the problem started. When I click on the icon, I get a message that says "safari.app is not supported." I installed OS X 10.5.3 today, and the problem is still there. Any suggestions?

    The only thing I can remember doing in the last few months (since I last used Safari) was the regular software updates, including upgrading to Leopard from 10.3. I am pretty sure I used Safari successfully after upgrading to Leopard, but I'm not sure.
    I also synched a palm device using Missing Sync in the interim (since last using Safari).
    BTW, you can't imagine how frustrating it is to try to fix the problem without a usable web browser

  • Z10 can't launch apps a month after 10.3 upgrade

    The device boots up fine, but troubles start right away: Picture Password doesn't work, the phone falls back to plain password entry. None of the apps can launch. When I try, the launching animation plays for a few milliseconds, with the program's tile appearing on the home screen and sometimes starts zooming to cover the screen. If the animation lasts long enough, I can see the loading screen, but at that point it always vanishes. The more apps I try to launch, the faster they disappear. There's two exceptions: The help app always stays open for longer, but it never get past the splash screen. In a testament to RIM's work, the phone dialer app still works. It launches and can make phone calls. The call log is empty, and trying to see the contacts tab causes it to hang. It's comforting that despite the mess my device is in, I'd still be able to make an emergency call. I can slide down from the top of my device to see the option pane. All the toggles work, like brightness, notifications, nfc, bluetooth, wifi. But trying to launch the settings from their doesn't work. Neither does bedside mode. The WiFi is connected and so is the cellular. The hub takes about 15 minutes to start. Once it is loaded, I can see items in it, but I can't open them or select them. After another ten minutes, I'm even able to go in the hub settings. I can't compose. Eventually, I get the message "Some Accounts Failed to Respond". Some functionality is intermittent: sometimes when I click compose I can see the list of messages types (but can't launch any editors), sometimes I can make the delete/file icons appear, sometimes I can access the hub settings, sometimes I can search. The volume keys work. But I can't take screenshots. USB access is intermittent. BlackBerry Link sometimes detects the device, but sometimes it's unable to connect to it, other times it can connect to it but none of the functionality in Link works. Sometimes, the ethernet interface doesn't even exist after I plug it, sometimes it doesn't get an IP address, other times it does but the device doesn't respond. I can use the command line tools to get info from the device (when usb is working), see a list of installed bars, but the connection is closed if I ever try to upload a (valid & signed) bar. I tried to use Sachesi to do backup with no success, it tells me that I don't have a BlackBerry ID. The device is logged-in with a bbid. The alarm clock works. It also goes off after I reboot the device, with about 50% chance I think. When I boot the device, it always shows the apps I had opened before the device broke. Until the hub finally finishes loading, the red notification light blinks. The device broke while I was managing my contacts. I was settings a custom notification on a contact, and it kept getting removed. It might've had something to do with contact duplicates sometimes appearing. On the main contact app screen, I suddenly couldn't edit contacts anymore. When I selected one, the only options were "add contact", and another one which I forgot. My phone is an STL 100-3 and I updated to 10.3.1.1784 exactly a month before the troubles began. After the upgrade the majority of my photos on device memory were missing, although I'm not sure if it's related to the upgrade. Hopefully all these details can help RIM fix this. I could probably run an autoloader and get my phone running again, but I'm really hoping to eventually get my data back somehow. I've set it aside and I'm using another phone for now. 

    Yo! I'm the poor dude who's experiencing the same awkward trouble as you are.At the moment I still couldn't figure a soution for it though (that is, excepting a factory reboot) but I'm still hoping that something will eventually come up. Same as you I set it aside and am using another phone in the meantime cause I do want to get my data back. My best guess would be to do an OS downgrade without data loss but I don't know if that will be possible since we cannot reach the phone via Blackberry Link and the phone itself is rather blocked so we wouldn't be able to get even to the Configuration app... Cheers.

  • I can't launch Acrobat Pro 9.0 (OS 10.6.4).  Need Help.

    Hi:
    1.  I have acrobat pro 9.0 ( I haven't updated it) and it was working fine until several days ago, when I updated the OS to the current 10.6.4.   Prior to that, it was working fine with the prior version of snow leopard etc...
    2.  Now, when I try to launch acrobat pro, I just get this message saying that acrobat quit unexpectedly.    I figured that I needed to update acrobat pro, I downloaded the current update, but when I go to update the original application, I can't do it because the icon for acrobat pro is greyed out (hopefully this makes sense).     Furthermore, I can't update acrobat pro by launching the application and having the software updater figure out what is needed... because I can't launch the program in the first place.
    3.  Does anyone know what in the world is going on?   From all of the variables, it's obvious that there's some issue with acrobat pro 9.0 and OS 10.6.4, but I can't figure out how to update the acrobat pro 9.0. 
    Any thoughts / help, much appreciated.  Harry

    Since you have already downloaded all the patches starting from 9.1 to 9.3.4, i would sugg
    est a little longer route but this might solve your problem.
    1. Create a new admin account say admin1
    2. Log out from the current admin account and login as admin1(the new admin account)
    3. Now update Acrobat 9.0 to 9.3.4
    4. Now if you want you can logout and login into the original admin.
    Hope this solves your problem.

  • Can't launch debugger

    Hello,
    I can't launch the debugger anymore in NWDS sp13. When I do I get the follwing error:
    Exception occurred during launch
    Reason:
    Source locator does not exist: org.eclipse.jdt.debug.ui.javaSourceLocator
    I was debugging fine last night before shutting NWDS down normally.
    I've searched NDS and SAP Notes but haven't found any solution for this.
    Any help would be greatly appreciated.
    Thanks
    David.

    Solved it.
    This morning I had accidentally started two instances of NWDS.
    Once they both came up I closed one instance but left the other running. When I tried to debug I got the error.
    After that I tried restarting NWDS, rebooting PC, rebuilding my project and redeploying as well as recreating the debug configuration with no luck.
    Finally, I deleted the .registry file from the workspace/.metadata folder and restarted NWDS.
    That fixed it.

  • I have installed the iAS 9i,but how can I launch the Portal?I can't found it,but I ..

    I have installed the iAS 9i,but how can I launch the Portal?I can't found it,but I have selected that component when installing...?

    Which version of 9ias have u installed
    if it is rel 2 u have to install first 9ias infrastructur and then portal.
    portal can be access at http://hostname.port/pls/portal
    where hostname and port is where u have installed the portal and the port number where apache listens
    good luck
    [email protected]

  • I can't launch Indesign CC! Help!

    hi, I can't launch Adobe INdesign CC at the moment. When I try to, I get asked if I want to do recovery for a file and whatever I chose it to do (Cancel/No/Yes) the software crashes and I can't launch, then if I try again the same thing happens. I need to complete this work for a client and then I am working for another client for a week...I need the software now!
    Thanks.

    It seems last time when you working with document, InDesign accidently crashed or closed.
    At this time InDesign perform protective shutdown in order to dump recovery of the working document and very next launch
    of InDesign , it will prompt for auto recovery and it will crash InDesign in process of auto-recovery if the document got damaged completely.
    Rename the SaveData directory in order to avoid this prompt.
    InDesign SavedData
    Mac OS
    Users/[user]/Library/Caches/Adobe InDesign/Version [version]/InDesign SavedData
    Windows
    Windows 7 & Vista
    <Drine>:\Users\[username]\AppData\Roaming\Adobe\InDesign\Version [version]\Caches\InDesign SavedData
    Windows XP
    <Drive>:\Documents and Settings\[username]\Local Settings\Application Data\Adobe\InDesign\Version [version]\Caches

  • Can´t launch FCE

    Hi!
    I have a got FCE for 3 month now and it worked fine for a few days ago, but now I can´t launch it??
    The problem began when I installed a midi-keyboard called line6 toneport kb37.
    there is something called gearbox with the midi-keyboard you have to install, and when I launch the FCE and it says "loading audio filters" and then it also load gearbox and then stops, and says "FCE can´t be launched!"..
    can I somehow do so the FCE will not load any kind of Line6 software?
    or what should I do?
    Hope yo understand my question!
    /Dennis

    This is the problem report
    Process: Final Cut Express [227]
    Path: /Applications/Final Cut Express.app/Contents/MacOS/Final Cut Express
    Identifier: com.apple.FinalCutExpress
    Version: 4.0.1 (4.0.1)
    Build Info: FCPApp-807301041~29
    Code Type: X86 (Native)
    Parent Process: launchd [73]
    PlugIn Path: /Library/Frameworks/L6TWXG.framework/Versions/A/L6TWXG
    PlugIn Identifier: com.line6.twxg
    PlugIn Version: 1.0 (3.00.1)
    Date/Time: 2010-01-17 18:46:00.888 +0100
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 15780 sec
    Crashes Since Last Report: 3
    Per-App Interval Since Last Report: 72 sec
    Per-App Crashes Since Last Report: 3
    Anonymous UUID: 24666F62-B57F-4409-A844-3E476E0736E0
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreFoundation 0x96e164b0 CFStringGetLength + 80
    1 com.apple.CoreFoundation 0x96e2aa0f CFStringCompareWithOptionsAndLocale + 47
    2 com.apple.CoreFoundation 0x96e2a9d5 CFStringCompareWithOptions + 53
    3 com.apple.CoreFoundation 0x96e2a990 CFStringCompare + 64
    4 com.line6.twxg 0x0ee86781 L6DeviceManagerMac::TagRelatedMIDIDevices(long) + 127
    5 com.line6.twxg 0x0ee88524 L6DeviceManagerMac::Init(unsigned long) + 76
    6 com.line6.twxg 0x0edacd19 L6AppTWX::SetupHardware() + 67
    7 com.line6.twxg 0x0edaf5cd L6AppTWX::InitAppTWX() + 135
    8 com.line6.twxg 0x0edbbbf1 L6AppTWXG::InitAppTWX() + 25
    9 com.line6.twxg 0x0edbabe4 TWXInit + 540
    10 com.line6.twxg 0x0edbaddf TWXGInit + 77
    11 com.line6.gearboxau 0x0d67aeb6 TWXG::TWXGShell::InitTWXG() + 86 (TWXGShell.cpp:240)
    12 com.line6.gearboxau 0x0d67afb0 TWXG::TWXGShell::Init(TWXG::TWXGShell::Handler*, TWXG::HostValueCoder*, TWXG::PlugConfig&) + 52 (TWXGShell.cpp:160)
    13 com.line6.gearboxau 0x0d670635 GearBoxAU::GearBoxAU(ComponentInstanceRecord*) + 353 (GearBoxAU.cpp:117)
    14 com.line6.gearboxau 0x0d67f43c ComponentEntryPoint<GearBoxAU>::Dispatch(ComponentParameters*, GearBoxAU*) + 70 (ComponentBase.h:109)
    15 com.line6.gearboxau 0x0d670b8c GearBoxAUEntry + 24 (GearBoxAU.cpp:93)
    16 ...ple.CoreServices.CarbonCore 0x945e7b06 CallComponentDispatch + 29
    17 ...ple.CoreServices.CarbonCore 0x945e7ae7 CallComponentOpen + 43
    18 ...ple.CoreServices.CarbonCore 0x945e5dd0 OpenAComponent + 433
    19 ...pple.proapps.AudioMixEngine 0x100189d7 STModuleStager::STModuleStager(ComponentDescription const&, bool) + 169
    20 ...pple.proapps.AudioMixEngine 0x1001a6ea STModule::Initialize() + 174
    21 ...pple.proapps.AudioMixEngine 0x1002ee8a STModuleCreateFromAudioUnit + 228
    22 com.apple.FinalCutExpress 0x002b426b 0x1000 + 2830955
    23 com.apple.FinalCutExpress 0x002b5546 0x1000 + 2835782
    24 com.apple.FinalCutExpress 0x00319008 0x1000 + 3244040
    25 com.apple.FinalCutExpress 0x00252acc 0x1000 + 2431692
    26 com.apple.FinalCutExpress 0x0022ab0c 0x1000 + 2267916
    27 com.apple.FinalCutExpress 0x0022acc7 0x1000 + 2268359
    28 com.apple.FinalCutExpress 0x0022adf8 0x1000 + 2268664
    29 com.apple.FinalCutExpress 0x003f65b7 0x1000 + 4150711
    30 com.apple.AE 0x958fcf3a aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    31 com.apple.AE 0x958fce39 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    32 com.apple.AE 0x958fcd46 aeProcessAppleEvent + 197
    33 com.apple.HIToolbox 0x95a9d2a1 AEProcessAppleEvent + 50
    34 com.apple.HIToolbox 0x95c1dddc AEProcessEvent + 160
    35 com.apple.HIToolbox 0x95b2f5b6 HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 206
    36 com.apple.HIToolbox 0x95b306a4 TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 64
    37 com.apple.HIToolbox 0x95a68e29 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    38 com.apple.HIToolbox 0x95a680f0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    39 com.apple.HIToolbox 0x95a67f4f SendEventToEventTargetWithOptions + 58
    40 com.apple.HIToolbox 0x95a9cb2c ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3006
    41 com.apple.HIToolbox 0x95a6927a DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    42 com.apple.HIToolbox 0x95a680f0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    43 com.apple.HIToolbox 0x95a8a981 SendEventToEventTarget + 52
    44 com.apple.HIToolbox 0x95c1381b ToolboxEventDispatcher + 86
    45 com.apple.HIToolbox 0x95c13953 RunApplicationEventLoop + 243
    46 com.apple.FinalCutExpress 0x0014492c 0x1000 + 1325356
    47 com.apple.FinalCutExpress 0x002a1fdd 0x1000 + 2756573
    48 com.apple.FinalCutExpress 0x00003742 0x1000 + 10050
    49 com.apple.FinalCutExpress 0x00003669 0x1000 + 9833
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x95fd10ea kevent + 10
    1 libSystem.B.dylib 0x95fd1804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x95fd0cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x95fd0a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x95fd04f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x95fd0336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x95fd0182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x95fd0718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x95fd0336 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x95fc9856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x96e89ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x95fd7fbd pthreadstart + 345
    3 libSystem.B.dylib 0x95fd7e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x95faa922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95fd845c pthread_condwait + 1089
    2 libSystem.B.dylib 0x96021503 pthreadcondwait + 48
    3 com.apple.FinalCutExpress 0x004201a5 0x1000 + 4321701
    4 com.apple.FinalCutExpress 0x0040c1e0 0x1000 + 4239840
    5 com.apple.FinalCutExpress 0x0044a43c 0x1000 + 4494396
    6 libSystem.B.dylib 0x95fd7fbd pthreadstart + 345
    7 libSystem.B.dylib 0x95fd7e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x95faa922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95fd845c pthread_condwait + 1089
    2 libSystem.B.dylib 0x96021503 pthreadcondwait + 48
    3 com.apple.FinalCutExpress 0x004201a5 0x1000 + 4321701
    4 com.apple.FinalCutExpress 0x004c308f 0x1000 + 4989071
    5 com.apple.FinalCutExpress 0x0044a43c 0x1000 + 4494396
    6 libSystem.B.dylib 0x95fd7fbd pthreadstart + 345
    7 libSystem.B.dylib 0x95fd7e42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x95faa8da machmsgtrap + 10
    1 libSystem.B.dylib 0x95fab047 mach_msg + 68
    2 com.apple.audio.midi.CoreMIDI 0x0a820f31 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3 com.apple.audio.midi.CoreMIDI 0x0a83f8fe MIDIProcess::RunMIDIInThread() + 150
    4 com.apple.audio.midi.CoreMIDI 0x0a822149 XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x0a821b16 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x95fd7fbd pthreadstart + 345
    7 libSystem.B.dylib 0x95fd7e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x95fd8806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x95fd84c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x95fda158 pthreadcondwait$UNIX2003 + 73
    3 ...ple.CoreServices.CarbonCore 0x945db87a TSWaitOnCondition + 126
    4 ...ple.CoreServices.CarbonCore 0x945c720d TSWaitOnConditionTimedRelative + 202
    5 ...ple.CoreServices.CarbonCore 0x945c2b33 MPWaitOnQueue + 250
    6 com.line6.twxg 0x0ed882af L6ThreadMsgQueueMac::ApiWait(unsigned long*, unsigned long*, unsigned long*) + 57
    7 com.line6.twxg 0x0ed86986 L6ThreadMsgQueueBase::ThreadProc(void*) + 204
    8 com.line6.twxg 0x0ed87aca L6ThreadMac::ThreadProc(void*) + 36
    9 ...ple.CoreServices.CarbonCore 0x945a67ae PrivateMPEntryPoint + 68
    10 libSystem.B.dylib 0x95fd7fbd pthreadstart + 345
    11 libSystem.B.dylib 0x95fd7e42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa08ec8cc ebx: 0x96e16471 ecx: 0x00000000 edx: 0x00000007
    edi: 0x01a63e00 esi: 0x00000000 ebp: 0xbfffde28 esp: 0xbfffde10
    ss: 0x0000001f efl: 0x00010283 eip: 0x96e164b0 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x74efee com.apple.FinalCutExpress 4.0.1 (4.0.1) /Applications/Final Cut Express.app/Contents/MacOS/Final Cut Express
    0x9e4000 - 0x9e7ff0 +KGCore ??? (???) /Applications/Final Cut Express.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
    0x9ee000 - 0x9eeff7 com.apple.iokit.dvcomponentglue 1.9.9 (1.9.9) <2BA05DB9-D847-CBC7-42D6-A9D96D7E1ED2> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x9f2000 - 0xa01ff7 com.apple.AERegistration 1.2 (72) /Applications/Final Cut Express.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistrat ion
    0xa13000 - 0xa1aff3 com.apple.AEProfiling 1.2 (18) /Applications/Final Cut Express.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0xa22000 - 0xbd5feb com.apple.prokit 5.0.1 (906) <B5BA53AD-9CB2-8C6B-09D7-A71FEC4C2FEE> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0xc94000 - 0xcc4ffb com.apple.AVCVideoServices 1.0 (38) /Applications/Final Cut Express.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoS ervices
    0xce6000 - 0xd5affb com.apple.ProFX 1.2.3 (1.2.3) /Library/Frameworks/ProFX.framework/Versions/A/ProFX
    0xd85000 - 0xddbfff com.apple.proapps.MIO 1.0 (1.0) /Applications/Final Cut Express.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0xe17000 - 0xe21fee com.apple.finalcutstudio.prometadatasupport 0.5 (1.0) /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0xe2b000 - 0xe65fff com.apple.CoreMediaIOServicesPrivate 23.0 (951) <FA5EB5E4-52BF-86B3-20B0-79704183E3D3> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0xe81000 - 0xeaaff7 com.apple.CoreMediaPrivate 20.0 (20.0) <29A9848F-2C1C-BDE4-EADC-2A3C71C1DBC4> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xebd000 - 0xef0ff3 com.apple.FWAVCPrivate 1.46 (46) <72972BDD-1837-6CFB-2FDD-555456B6E5CE> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0xf5d000 - 0xf9dff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x17af000 - 0x17b7ff7 com.apple.proapps.mrcheckpro 1.4 (202.10) /Applications/Final Cut Express.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x17f6000 - 0x17f9fef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x489c000 - 0x48d8fe3 com.apple.QuickTimeFireWireDV.component 7.6.3 (1591.3) <55A49215-3C98-20A3-02EC-FDBAD3D1A69B> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x48e4000 - 0x48f5fef com.apple.FinalCutExpress.FilterCustomEd 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterC ustomEd
    0x4a00000 - 0x4a65fde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x4adb000 - 0x4adffff com.apple.FinalCutExpress.LayerFileReader 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerF ileReader
    0x4ae4000 - 0x4ae7fff com.apple.FinalCutExpress.NuggetExport 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExp ort
    0x6ba2000 - 0x6bbeff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x6be8000 - 0x6bf5ff3 com.apple.FinalCutExpress.GenViewer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0xa1ea000 - 0xa35bff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xa38c000 - 0xa792fef libclh.dylib ??? (???) <3ACD0D90-B1E9-59DA-729E-7E97092F9A24> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/libclh.dyl ib
    0xa7b6000 - 0xa7e1fe7 com.apple.FinalCutExpress.AfterEffects 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffe cts
    0xa7eb000 - 0xa802ff7 com.apple.FinalCutExpress.AudioMixer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0xa811000 - 0xa85dfff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xa882000 - 0xa896fcf com.apple.proapps.ControlSurfaceSupport 2.0 (68) /Applications/Final Cut Express.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/Cont rolSurfaceSupport
    0xa8ac000 - 0xa962fe2 com.apple.FinalCutExpress.Browser 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0xa97b000 - 0xa99fffb com.apple.FinalCutExpress.EditTape 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0xa9af000 - 0xa9e3ff6 com.apple.FinalCutExpress.FCS Engine 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0xa9ee000 - 0xaa03ff7 com.apple.FinalCutExpress.FilterViewer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterVie wer
    0xaa09000 - 0xaa27fe3 com.apple.FinalCutExpress.Flash 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0xaa38000 - 0xaa83ffb com.apple.FinalCutExpress.Media Manager 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0xaa90000 - 0xaaa2ffe com.apple.FinalCutExpress.MolokiniSupport 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/Moloki niSupport
    0xaab0000 - 0xaac4fff com.apple.FinalCutPro.Frameworks.MolokiniTranslation 1.0 (1.0) /Applications/Final Cut Express.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/Moloki niTranslation
    0xaad1000 - 0xaae5fe3 com.apple.FinalCutExpress.Motion Viewer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0xaaeb000 - 0xab07047 com.apple.FinalCutExpress.Movie Analyzer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0xab17000 - 0xab2dfeb com.apple.FinalCutExpress.Movie Viewer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0xab39000 - 0xab42fe7 com.apple.FinalCutExpress.Perf Analyzer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0xab47000 - 0xab86ff7 com.apple.FinalCutExpress.QTM Reader 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0xab93000 - 0xaba3ff0 com.apple.FinalCutExpress.Relink Media 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0xabaa000 - 0xababfff com.apple.FinalCutExpress.Text Window 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0xabb0000 - 0xac2bff4 com.apple.FinalCutExpress.Timeline Editor 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0xac36000 - 0xac48ffb com.apple.FinalCutExpress.Transition Viewer 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0xac4e000 - 0xac63fe3 com.apple.FinalCutExpress.Trimming 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0xac69000 - 0xac6afff com.apple.FinalCutExpress.Vector Accelerator 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0xac6f000 - 0xac80ffb com.apple.FinalCutExpress.VideoLog 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0xac85000 - 0xac9dfeb com.apple.FinalCutExpress.VoiceOver 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0xaca4000 - 0xad08fcf com.apple.FinalCutExpress.XML Support 3.5 (3.5) /Applications/Final Cut Express.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0xb331000 - 0xb346fcf com.apple.fcp.DVOutputUnit 1.3 (1.3) /Applications/Final Cut Express.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0xb5f9000 - 0xb60bfd9 com.apple.FCP Uncompressed 422.component 1.5 (1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb611000 - 0xb9edfe3 QuickTimeH264.scalar ??? (???) <F73B0D67-886B-0A10-D0DB-9395AD09D9D3> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0xba47000 - 0xba61fc3 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xba66000 - 0xba7ffe7 com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc4f7000 - 0xcc29fc7 +com.borisfx.Title3D ??? (2.1) /Library/Application Support/Final Cut Express Support/Plugins/Title 3D.bundle/Contents/MacOS/Title 3D
    0xd667000 - 0xd693fe6 +com.line6.gearboxau 3.00.1 (3.00.1) /Library/Audio/Plug-Ins/Components/GearBoxAU.component/Contents/MacOS/GearBoxAU
    0xdc00000 - 0xe330fef +com.borisfx.TitleCrawl ??? (2.1) /Library/Application Support/Final Cut Express Support/Plugins/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0xed6d000 - 0xef04047 +com.line6.twxg 1.0 (3.00.1) /Library/Frameworks/L6TWXG.framework/Versions/A/L6TWXG
    0x10000000 - 0x1005efef com.apple.proapps.AudioMixEngine 2.0 (68) /Applications/Final Cut Express.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEng ine
    0x8f611000 - 0x8fa52fe7 com.apple.GeForce8xxxGLDriver 1.6.6 (6.0.6) <205911D0-3CE3-D53C-289B-319A4E4BA153> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x9003aff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9004e000 - 0x9006afe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9006b000 - 0x9006efe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9006f000 - 0x90128fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x90129000 - 0x90422fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9057d000 - 0x9064efe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9064f000 - 0x9065cff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9067b000 - 0x9069bfe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x9069c000 - 0x906d3fe7 libcurl.4.dylib ??? (???) <D6299871-E1C9-5238-FE18-0B3C02025376> /usr/lib/libcurl.4.dylib
    0x909c9000 - 0x90a01ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90a02000 - 0x90a53ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90a59000 - 0x90b85fe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90bd4000 - 0x90bdfff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90be0000 - 0x90d6efff com.apple.JavaScriptCore 6531 (6531.5) <DDDCCE57-42D2-BAA1-63F1-F76458EE0927> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90e18000 - 0x91da6ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91da7000 - 0x91de5ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91de6000 - 0x91e1ffe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91e20000 - 0x926feff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x926ff000 - 0x92733ff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x92741000 - 0x927a1fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x927d0000 - 0x927e0ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x927e1000 - 0x927effe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x927f0000 - 0x928e4fe7 libiconv.2.dylib ??? (???) <0C578460-3929-29DD-585A-DB1E0C977425> /usr/lib/libiconv.2.dylib
    0x928e5000 - 0x928f9fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x928fa000 - 0x92969ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92989000 - 0x9298cff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x92b14000 - 0x92c53fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92c54000 - 0x92c93ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x92d09000 - 0x92d10ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92d11000 - 0x92d75ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d76000 - 0x92e9aff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92e9b000 - 0x92ed7fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x92ed8000 - 0x92fcaff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x92fcb000 - 0x92fe3ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x93010000 - 0x93272ff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93273000 - 0x9331afe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9331b000 - 0x93449fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9344a000 - 0x9344dffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9344e000 - 0x93630fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93631000 - 0x93681fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93682000 - 0x936c4fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x936c5000 - 0x936c7ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x936c8000 - 0x937cafef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x937f6000 - 0x939b2fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x939b3000 - 0x93b35fe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x93b36000 - 0x93b7aff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93bc2000 - 0x93bc2ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93bc3000 - 0x93bc4ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93bc5000 - 0x93be0ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93be1000 - 0x93be2ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93da5000 - 0x93e0ffe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x93e44000 - 0x93e47ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x93e48000 - 0x93e48ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93e7c000 - 0x93ef3fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93f0a000 - 0x93f8cffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93f8d000 - 0x93fabff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93fac000 - 0x9403dfe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9403e000 - 0x9403eff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9403f000 - 0x94063ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94064000 - 0x94069ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9406a000 - 0x94089fe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x9408a000 - 0x940f8ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x94101000 - 0x94129ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9412a000 - 0x9413aff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9414f000 - 0x94190ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94191000 - 0x941d1ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x941d2000 - 0x9426ffe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94270000 - 0x94279ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x942f4000 - 0x942f4ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x942f5000 - 0x94326ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x94327000 - 0x943cfffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x943d0000 - 0x944d7fe3 com.apple.DiskImagesFramework 10.6 (281) <B57DDA36-9B4B-9D57-7072-91D531BDD2BC> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x944d8000 - 0x9450dff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9450e000 - 0x9452efe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x94580000 - 0x9489ffe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x948a0000 - 0x94acbff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94acc000 - 0x94f01ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94f02000 - 0x95114fff com.apple.RawCamera.bundle 2.2.1 (477) <10937A0D-0856-1B69-AE27-43BC15B7DD21> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95115000 - 0x95121ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x9512a000 - 0x9539affb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9539b000 - 0x953e8feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9541b000 - 0x955f6ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x955f7000 - 0x956a4fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x956c7000 - 0x956cbff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9570d000 - 0x957eaff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x958d1000 - 0x958d1ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x958d2000 - 0x958f8fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x958f9000 - 0x9592cff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9592d000 - 0x9593aff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x9593b000 - 0x95a31ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x95a32000 - 0x95a32ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95a33000 - 0x95a44ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95a45000 - 0x95a47ff7 com.apple.QuickTimeH264.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x95a61000 - 0x95d84fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95d85000 - 0x95e1dfe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95e1e000 - 0x95e6eff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95e6f000 - 0x95e71ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95e9d000 - 0x95eafff7 com.apple.CoreMediaAuthoring 0.677 (677) <197EAB61-ACCE-E5AC-08FA-2A2D4E122E86> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x95eb0000 - 0x95ebaffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95ebb000 - 0x95ef0ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x95f01000 - 0x95f01ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95f09000 - 0x95f16ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95f17000 - 0x95f6dff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95f6e000 - 0x95f6fff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95f70000 - 0x95f97ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95f98000 - 0x95fa2ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95faa000 - 0x9614efeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x962b5000 - 0x96a984b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96a99000 - 0x96b13fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96b14000 - 0x96b29fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96b2a000 - 0x96bc6fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96bc7000 - 0x96bd9ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x96bdb000 - 0x96cdcfe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x96d5a000 - 0x96d5eff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96d5f000 - 0x96e0dff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96e0e000 - 0x96f85fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96f86000 - 0x97061ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97062000 - 0x97478ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x97479000 - 0x97479ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x974bb000 - 0x97585fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97586000 - 0x975cffe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x975d0000 - 0x9767fff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x97e66000 - 0x97ec0ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97f3d000 - 0x97f83ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x97f84000 - 0x97fdefe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98009000 - 0x9800fff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98010000 - 0x98068fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x98069000 - 0x980a6ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x98116000 - 0x9811dfff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9811e000 - 0x98128fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98129000 - 0x98129ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9812a000 - 0x9815aff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x9815b000 - 0x9815fff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98160000 - 0x9816dff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98170000 - 0x981aaffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x981ab000 - 0x981cdfef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x981ce000 - 0x9820cfe7 com.apple.MediaKit 10.0 (472) <8B1C89AF-6A2A-8D01-D723-22A4DBEA7760> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9820d000 - 0x98251fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98252000 - 0x98330fff com.apple.QuickTimeMPEG4.component 7.6.3 (1591.3) <92D35422-4D67-4B29-B803-50BACDBA47D8> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x98331000 - 0x983e4fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x983e5000 - 0x983ebfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98446000 - 0x984b6ff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98520000 - 0x989cefe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x989cf000 - 0x98bcffeb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98bd0000 - 0x98f37ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98f38000 - 0x98fb1ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x98fb2000 - 0x99032feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x99033000 - 0x99076ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9917d000 - 0x9928aff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9928b000 - 0x99365ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x993ac000 - 0x993c0ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,5, BootROM MBP55.00AC.B03, 2 processors, Intel Core 2 Duo, 2.26 GHz, 2 GB, SMC 1.47f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2160BH FFS G1, 149,05 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0237, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

Maybe you are looking for

  • Aperture 3.3.2 crashes while exporting to flickr

    Aperture runs into endless spinning ball exercise while exporting pics to flickr. Then, it crashes. Rebuilt the library couple times now to no avail. I simply cannot connect to flickr anymore. Just tried it again. Selected only 5 pics to post to a fl

  • Question about ldst_raw test and sparc in general

    Hi, I'm running ldst_raw test in core1 environment. I was wondering why the code used address of 0x1000144000 instead of 0x144000 to get to HPriv_Reset_Handler? This actually caused DRAM controller to generate an address that's out of its range (thou

  • Another partner function is derived from the partner types than was entered

    Hi Dear SRM Experts, I am sending  Purchase Requisition to SRM and it gives the error on SRM side Transaction SLG1 "Another partner function is derived from the partner types than was entered from external source" Experts please reply me iIt is very

  • Office 7 and PDF maker

    My lovely IT department have upgraded my office to version 7 (Yuk). Anyway, the acrobar PDFmaker has now dissapeared as a function. I have downloaded the office plug in for saving and printing to PDF but it is different. Previously on the PDF maker b

  • Displaying task in timeline webpart based on view from task list

    I have added one custom column in task list called category and created different view based on different values of category. when I display a view and select show timeline, it display all the task and does not filter the task based on view. Is there