Crash in application by using TestStand 4.0 and CVI labWindows 8.01

Our application often crashes in two areas:
1) Often crash in the case:
    During running, if there is poop, like error message, you want to debug by opening other programs,like notepad. 
    It shows error signature:
    AppName: operator Interface.exe     AppVer. 4.0.0.326, ModName  cvirte.dll
    ModVer: 8.1.0.271         Offset : 000b9c8a
2) Often crash at the end of test, when generating TSV file.
     AppName: operator Interface.exe     AppVer. 4.0.0.326, ModName  msvcr80.dll
    ModVer: 8.0.40727.762         Offset : 00008a8c
We use TestStand 4.0 and CVI LabWindows 8.01. The program is running in our customized operator interface.
But I tried using the default TestStand operator interface, it crashed too.
Also we found it is related PC too. One PC in our lab crashed often, but it actually newer PC with bigger RAM. (Pentium(R) 4 CPU 3.2GHz), 3.19GHz, 0.99 GB of RAM)
The one crashed Less often is Pentium(R) 4 CPU 2.80GHz, 2.79 GHZ 504 MB of RAM.
Hope you can help us to find out root cause.
Thanks 

Hi Doug,
Thanks for your reply.
Answers to your queries:
1. We are not calling any DLLs from our sequences.
2. We are only using LabVIEW modules and the VIs are called under LabVIEW development environment and not using Run Time engine.
3.  In our case it is always seqedit.exe which crashes. LabVIEW never crashed. Hence I think its TestStand whose memory is getting corrupted.
We  are trying to narrow down the issue as suggested by you.
By the time, we have observed a strange thing while the sequence editor crashed.
In our sequence we call a thread which calls a VI to run continuously and collect the data from other modules.
What we observed is that, when the sequence editor crashed (the popup appeared), it was still executing the sequence (running a loop). I was able to break the execution and debug it. All the variables were also having proper values.
But the VI which was running in a separate thread was in surprising state. That VI was showing as executing but actually it was not running any of its code. I tried to put probes inside that VI but they were not updated (meaning that part of code was not runnning). I tried to stop the VI using the abort button but no help. It was not having any effect. I also clicked on the Pause button. The button turned red but the VI didn't halt at any part of code (actually the VI was not at all executing). An other VI which was called by another thread was working properly. I could see it by putting probes in that VI.
If your thought about the memory corruption is correct, is it possible that this VI is somehow corrupting the sequence editor memory?
I am not sure, but I think wherever the sequence execution may be, but the above mentioned VI is always in this state at the time of crash.
I tried to reproduce this scenario locally but it ran without problem for hours
Probably I am still not able to properly reproduce it. I'll work on it further and let you know the outcome.
Regarding your last question, We are using LabVIEW notifier. A VI is called which waits on LabVIEW notifier from another VI. That code is pretty simple it just obtains a notifier and waits on it indefinitely.
Please let me know your views on the above mentioned issue.
Thanks,
- Kaustubh

Similar Messages

  • Using ActiveX controls in GUI application, which uses TestStand API

    When using ActiveX controls in TestStand Operator Interface GUI,
    CVI reports User Interface Library error no.-143:
    "ActiveX control Error" on attempt to load panel, which contains ActiveX controls.
    The same code, which takes care of user interface, but not references
    TestStand ActiveX API (i.e. not creates TS Engine), works properly.
    What's wrong?

    Hello again Misha,
    Sorry about my previous answer, I overlooked the fact that you were saying this error was caused by placing ActiveX controls in your Operator Interface (OI) GUI (as my example shows I thought the problem was with GUIs displayed from step code modules).
    Nevertheless, the problem is still being caused by the same issue, and is solved in a similar fashion. The source for the CVI OI initializes the TestStand engine before it loads/displays the UI panels. The calls to initialize the engine seem to be CoInitializing the main GUI thread as multithreaded apartment (MTA) mode whereas you will need it to be single threaded apartment (STA) mode in order for the ActiveX control container to work properly. The TestStand engine is compatible with either modes, but only one can be in place at a given time. If we CoInitialize the OI's main GUI thread as STA this will solve the problem (the subsequent attempts of setting it to MTA will fail, but again this is ok since the engine is compatible with STA).
    In order to perform this functionality you will need to put a call to CoInitializeEx in the main function of the CVI OI source (this will also require that you #include the "windows.h" file at the top of the source also). Here is what the main function in your main.c file for the CVI OI will look like once you have done this:
    int main(int argc, char **argv)
    int retval = -1;
    sArgc = argc;
    sArgv = argv;
    if(InitCVIRTE(0, argv, 0) == 0) /* Initialize CVI libraries */
    goto Done; /* out of memory */
    // Intialize main GUI thread as STA to prevent other attempt to make it
    // MTA, which will not allow ActiveX controls to be used.
    CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
    /* initialize the test engine */
    if(!InitEngine())
    goto Done;
    if(!InitErrorDialogStrings())
    goto Done;
    if(!InStandaloneExecutable() && !DisplayRunningInEnvironmentWarning())
    goto Done; // get out now
    if(!ProcessPreLoginCmdlineArgs())
    goto Done;
    if(!CfgFile_Load())
    goto Done;
    if(!CfgFile_RestoreOptionSettings())
    goto Done;
    if(LoadGUIPanels() < 0)
    goto Done;
    if(!InitFileQuickList())
    goto Done;
    /* set initial gui state */
    if(!InitGUI())
    goto Done;
    RunUserInterface();
    retval = 0; /* normal exist status */
    Done:
    /* cleanup */
    SeqFileList_DeleteAllSequenceFileRecords();
    ExeList_DeleteAllRecords();
    IconList_DeleteIconList();
    SaveAndCleanupFileQuickList();
    CfgFile_SaveOptionSettings();
    CfgFile_WriteAndCleanupForExit();
    AdaptList_DeleteAdapterList();
    DestroyToolMenus();
    CloseEngine();
    FreeErrorDialogStrings();
    return retval;
    Note: Remember to #include "windows.h" at the very top of the main.c file and to include ole32.lib in your project file list in order to link in the definition for CoInitializeEx.
    Jason F.
    Applications Engineer
    National Instruments
    www.ni.com/ask

  • I would like to know how to transform an API C++ application in MFC C++ application to use the measurement studio components or Labwindows CVI

    I don t know the way used to transform a C++ with API program in an MFC application using measurement studio or Labwindows CVI.
    Thank you for you help.

    You can use the Measurement Studio Add/Remove Components Wizard to add Measurement Studio components to your C++ application. For more information, see the "Adding and Removing Components from Measurement Studio Projects Using a Wizard" topic in the Measurement Studio reference. You can find it in the table of contents under:
    Visual C++ Help
    Tutorials
    Measurement Studio for Visual C++ 6.0
    If you're using the Measurement Studio update for Visual C++ .NET, this topic will be under:
    Visual C++ Help
    Tutorials
    Measurement Studio for Visual C++ .NET
    - Elton

  • Why does my Premiere CC 2014 crash every time I use "Adobe Dynamic Link" and have After Effects CC 2014 open in the background?

    Here are my MacBook Specs:
    MacBook Pro (15-inch, Mid 2012)
    2.6 GHz Intel Core i7
    16 GB 1600 MHz DDR3
    NVIDIA GeForce GT 650M 1024 MB
    480 GB Solid State SATA Drive
    750 GB SATA Disk
    I use "Adobe Dynamic Link" mainly for typography and some animation, but not to the point where it would stress out Premiere CC 2014.

    Chris,
    It doesn't crash for everyone.  A person could be forgiven for saying, in return, "Please sort out your **** system problems". 
    Trust me when I say many, many problems are caused by the computer system setup not being up to the needs of this cutting-edge graphics software.  Photoshop is heavily dependent on the GPU, and GPU drivers are notorious for having bugs (they're primarily written to run games).
    However, that being said, recent driver releases from both ATI and nVidia do actually work pretty well with Photoshop CC 2014.
    What video card do you have?
    What display driver version are you running?
    If you're unsure how to tell these things, go into Photoshop, choose Help - System Info, copy the data, and post it here.
    -Noel

  • Due to the requirement of a UUT report with pageheaders, I am looking for solution to print an MS Access report from TestStand. I am using TestStand 4.2 and LabView 8.6.

    Solved!
    Go to Solution.

    You can customize your process model with LabVIEW steps. You can connect to the access database http://digital.ni.com/public.nsf/allkb/1D5EB4DCBD13106486256B9D005E11B0 you can also get the data and format it and print it with the report generation toolkit, or you could see if Access exposes those functions through an ActiveX server. What functionality exactly are you looking for, and at the end of the day how much time are you willing to develop your own customized microsoft access reporting function?
    Richard S -- National Instruments --Applications Engineer -- Data Acquisition with TestStand

  • Creating an application which uses NI-Daqmx driver

    Hello,
    I'm developing an application which uses NI-Daqmx driver and I need to deliver this application to end users.
    I currently have NI-DAQmx 9.7.0 installed on my computer which needed an installation of 1.55 GB.
    I got complaints from customers who want this application to run on a new machine without the need of installation of NI-DAQmx driver.
    My project contains the necessary dlls (NationalInstruments.Common.dll and NationalInstruments.DAQmx.dll) as referenced and I expect that build of the application along with these dlls work on a different machine somehow.
    Is there any way to provide such output that customers don't need to install NI-DAQmx?
    Do I have to add additional references to the project? If so, which ones should they be?
    Or can I have a smaller custom required installation of this driver which will not bother the customers?
    PS: I tried the output of the sample projects on a different machine which don't have NI-DAQmx installed. I got the same error.
    Thanks in advance.

    Greetings,
    You can have them install the DAQmx runtime engine which correlates with the version of DAQmx which is being used in the program you're distributing. This can be found on our website.
    Search "daqmx runtime engine x.x" and replace the x.x with your version number.
    Regards,
    Brandon V.
    Applications Engineer
    National Instruments 

  • I Published a report on the report server but it's not showing in the internal application we use to access reports

    Hi, 
    I Published a report on the report server but it's not showing in the internal application we use to access reports. The name of the application we use is called MAMA and this application has access to all the reports on the SQL report server. My email is
    [email protected] my cell phone number is 201-888-7952. 
    Thanks. 

    Hi Roger,
    Based on my understanding, you publish a report on the report server. When you access reports with internal application, the report doesn’t display, right?
    In your scenario, since you mentioned you have published the report to report server, please go to report manager, check if you can see the published report and open the report properly. If the published report is displayed on report manager, it should not
    be the issue in Reporting Services. In this scenario, since the MAMA application has established connection with on report server, it may not update items on report server after you publish your report onto report server. So please try to “refresh” in MAMA
    or reconnect the report server. If issue persists, I suggest you contact the MAMA application vendor to get some more effective advices.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Why doesn't SAP use SAPUI5 for this and that

    This is my personal opinion about this topic! Again and again I stumble about this and now I want to share some of my thoughts about this topic. I want to share this from a point of view, when I was not a SAP Employee - I worked at a SAP Partner company - because this best reflects the view from the outside.
    1. SAP "wants" us to use SAPUI5
    I don't think that "wants" is the right word - the right word is offers! In terms of: hey now even included in your license and open sourced (because you wanted it so). Look - we build sooo many Fiori apps with it - and put in some great enterprise features (right to left, accessibility, translation, ...) and it is responsive. So if you want to build Fiori-like "apps" - there you go - this is your technology to go! This is what I understood.
    I was very very very happy that it was build with open standards. But the main point for me another thing - (because I worked with Sybase Unwired Platform and SAP Mobile Platform) OMG an open data protocol!!! OData FTW! I could use ANY front-end technology and consume SAP data - the protocol is REST based - a dream came true. And so I did - yes I played around with Sencha Touch and OData, I used data.js and used it in a standard HTML5 application. We played around with an iOS application we already had and consumed the data. I feed the data into d3.js. I prototyped around with SAPUI5 and I have build apps with it. Brilliant, so I could choose whatever UI technology I wanted.
    I always had the feeling, that SAPUI5 was meant for B2E applications - and building many of that - and they should look and feel the same and I can theme the apps. I can use it when I want to make my applications SAP like - so that the user thinks the apps are all the same and everything fits nicely into the Fiori launchpad - great if you want to build partner apps. In my ex company we won a SAP Pinnacle Award - for a native iOS app, no SAPUI5 in sight - but we have received an award, so SAP did not "want us" to use SAPUI5 ;-)
    2. Is it the right UI technology for everything?
    At my ex-company I was dealing with mobile applications and web apps. I always knew that I get the best user experience when I write a real native application and if you want it to look like in a very specific way with awesome UI --> you would not do it with a write-once-run-everywhere HTML5 super-styled wrapped (phone gap/cordova) app - you would write the apps for the specific platform and it should feel like it was written for the platform. SAP offered us the SAP Fiori Client that I could enhance the user experience for the Fiori apps, but I was never told to use SAPUI5 it for everything.
    The same discussion goes on with: why was the new SAP website not build with SAPUI5, or the UX Explorer (eat your own dog food), or a useful internal app - why Angular, or the other way around why do we even use SAPUI5 and not Angular JS itself. Back to the past - SAP did never tell me to build a website with it, or to build something tiny and small with it (a widget) - or to enhance parts of a website with it - or to build something super-specific with it.
    And yes maybe the UI in a mobile app was not SAPUI5 but do you know if it uses Gateway with OData or the SAP Mobile Platform, was the API managed with Apigee, was HCI involved in getting the data from different sources, was it maybe wrapped with SAP Mobile Secure, did it maybe use a HANA backend or some of its features (predictions, text analytics, ...) - are some backend parts maybe hosted on HCP - who knows? So yeah, maybe other SAP technology was involved which you don't see, but in the end it made your life simpler.
    Instead of arguing around why this and that was used for this and that - can we save our energy and instead look at the result - which is all what counts - that it was the right UI technology with the right user interface which makes the user happy? I stated something like - does Google use AngularJS for everything? Nope. They offer us something great we can use. Right, maybe AngularJS is not as important for Google like SAPUI5 is for us. But we have something with which we can build our day-to-day business apps with and we do so.
    3. We missed great opportunity in not using SAPUI5 for this and that
    Let's think about how projects are going: you want something, you look at the costs, you choose most efficient option. Yes this could mean reusing an existing native application which was written long ago and you pimped it up. Or you had outsourced it to a company which wrote a similar app. Or you bought the source code. Or you have some cheap internal staff which could do it (students, trainee), or you could outsource it cheaply. Or all you have is people with experience in this and that technology. Or it must look in a very very specific way (because marketing says so) and you go native. Or it maybe should even differentiate itself and should look NOT like a Fiori app. And no - I don't think - this is my employees view - we are not for example an event app producer. We normally build business applications. And I don't think that we can write an app from scratch "just" for an event in a certain technology. Yes it would be nice if this and that would use SAPUI5, I think if it would be possible in terms of time and costs and UI wishes and hundreds of other factors we would do it with SAPUI5.
    Working at the partner SAP showed me over 50 Fiori apps, now hundreds of Fiori apps are released. SAP now showed that SAPUI5 is going big with S/4HANA. We have seen the Simple Finance solution. I was walking around at the CeBIT this year and I was impressed myself which cool apps and screens have been shown with SAPUI5. I used the SAPUI5 app on a Samsung Smart Watch myself. The SAP Web IDE itself is built with SAPUI5 in its heart. I don't need any other "proves" that SAPUI5 is great. I have seen great use cases for it, but I also know myself when I would use other stuff.
    4. My conclusion
    There is never every anything which can cover all different use cases. One-size-fits-all clothes also does not fit for everyone even if it says so. If someone creates something great don't judge it by the UI technology. Judge it by the experience and the value it creates. There are reasons why this and that was chosen. Use what fits your needs best with your requirements. Make the end user happy!

    Hey Denise,
    Thanks for pulling this discussion into SCN. Makes it much easier to discuss compared to Twitter. But I also have to apologize in the beginning that my answer now exceeds 140 characters by 50 times.
    Let me share my thoughts and personal opinion as well. I will try to look at it from a strategic point of view, as you – as the technical UI5 expert - have already covered the technical perspective.
    SAP recommends using SAPUI5 where it fits to customers’ requirements
    Let me begin with a clear statement from my perspective: It makes no sense that SAP takes customer decisions.
    Of course, customers expect SAP to help them with their strategies and decisions and of course we are helping. But at the end, the decisions have to be taken by the customer who needs to take the specific conditions of the company into account. The most important condition in the context of UX is the end user. But we shouldn't forget the business strategy as the most important influence factor. I’m not saying that technical decisions are completely unimportant, but I would like to point out that other things are more important for a company.
    As a result, it wouldn't make a lot of sense if SAP would just want every customer to use SAPUI5. To me, customers need recommendations leading to solutions that satisfy their needs and requirements.
    There is not that one UI technology that serves all needs
    This headline might be a challenging statement and I can already imagine reactions to it. But in fact I can confirm this sentence easily. You always have to combine different technologies. Some of them are from SAP others not. The selection and combination of these technologies is different from customer to customer because the requirements are different. There are still reasons to use Web Dynpro ABAP and I’m still recommending SAP NetWeaver Business Client, POWL (Power Lists), WDA Chips, FPM based on the given environment of the customer. And obviously there are also reasons for UI5.
    SAP already proves the usage of SAPUI5
    In general, I see two different use cases here: Developing custom applications vs. adopting applications from SAP.
    In the one case, customers want recommendations on development environments and UI technologies that consider their development requirements and existing conditions (e.g. existing skills, given implementations). SAPUI5 is a great UI technology and there are some special aspects that make the decision obviously easy. If I want to create simple business applications that can be connected with my SAP system easily, especially in combination under responsive conditions on multiple devices and targeted for casual and/or occasional users UI5 might be the right choice for many.  Exactly this pattern is what many customers are searching for these days. So, the recommendation for UI5 comes quite often.
    Whether or not SAP proves the usage of SAPUI5 in their own world is to me more connected to the use case where customers want to adopt SAP applications. And in deed, SAP is using SAPUI5. There are hundreds of SAP Fiori applications that have been built with SAPUI5 and there have been a lot of other applications developed using SAPUI5, too. And again, there is a huge need for applications for casual and/or occasional users, so that’s a big reason for SAP to create such applications.
    Websites vs. Business Applications
    This discussion was triggered by some statements in twitter, that SAP sites such as sap.com, SAP UX Explorer or the latest mobile conference app are not developed using UI5. Actually I see these to be websites but not business applications. I have never told a customer to build a website in UI5 and I would continue to do so.
    Maybe we need to discuss the difference between a website and a business application. I guess it is not easy to find a common understanding here, as the borderlines between several worlds have disappeared in the last years.
    Some years ago it was more or less easy to differ between:
    Native desktop applications running on a specific desktop OS
    Native mobile applications running on a specific mobile OS
    Browser-based applications running in specific browsers
    Websites, basically running on many browsers
    In the first three categories we saw business applications. 1 and 2 were selected especially when specific functions of the device and OS where needed to be accessed (for example the camera of the mobile device, the fast rendering capability of the desktop). 3 was also used for business applications but in most cases on desktop browsers.
    Today, one can develop browser-based applications that look like native applications and even can access the devices like native applications. Responsive design breaks the borderlines even more. Now, browser-based content can be rendered perfectly on a desktop browser as well as on a mobile phone and a user might even not be able to judge whether it was originally intended to be developed for the one or the other.
    So maybe there is no big difference anymore between websites and browser-based applications. But there is still a difference between browser-based applications and browser-based business applications, where additional requirements such as integration into business systems are drivers. Here I see SAPUI5 as a very cool UI technology.
    That’s just my 2 (personal) cents,
    JJ

  • How to use both ojdbc14.jar and ojdbc6.jar in same weblogic domain(weblogic12C)

    Hi all,
    I 'm having issue of using both ojdbc14.jar and ojdbc6.jar in same weblogic application and same weblogic domain in weblogic 12C environment.
    how can i do that?
    i'm currently having application developed using jdk 1.6 and ojdbc6.jar, application developed using jdk 1.4 and ojdbc14.jar.both are currently installed at same domain.
    i want to use the both ojdbc14.jar and ojdbc6.jar in same domain.
    what i previously did was renaming /usr/weblogic/wls_server10.3.4/lib/ojdbc6.jar to /usr/weblogic/wls_server10.3.4/lib/ojdbc6.jar.bak and put ojdbc14.jar in the same path when i wanna use ojdbc14.jar.
    i haven't use both in same environment before, but to go live i wanna match about requirement.pls help.
    i know the way use this by having two domains, but in the same domain i could not find a solution yet.
    Please help

    Hey
    I have the similar requirement.. Did you managed to get an option of doing it? If yes, please provide some insights
    Thanks in Advance

  • Controlling Labview using CVI/Labwindows

    I am learning to control Labview using CVI/Labwindows using activeX automation but am currently having some trouble. I am trying to modify the "CVI Controlling Labview" example to accept 5 controls as supposed to the original 4 that controls the "frequency response.vi". I am doing this by increasing the size of the "paramData" array sent via ActiveX. Do I have to change something in one of the labview controls, in order for a command to be accepted. I am already making sure the corresponding "paramNames" part of the array co-incides with the labview control name. I am using Labview 7.1 and CVI/Windows 7.1.
    Attachments:
    cvilv.zip ‏407 KB

    Hi Simy,
    When you call a VI in labview the input parameters have to be defined as you would when performing a function call in C. In order to do this you must place a control or indicator on the front panel of the VI with the corresponding datatype. You must then wire the control/indicator to the connector pane for the VI (Similar to defining a function prototype).
    In LabVIEW goto help>>search the labview bookshelf, LabVIEW user manual chapter 7 and look for the part on wiring the connector pane.
    Hope this helps...
    Tristan
    Applications Engineer
    National Instruments UK & Ireland

  • [SOLVED]Xorg crash with some applications when using double screen

    Hi,
    I have a TV that I often use to watch dvd from my computer, and to do that I've set it up as a second screen in my xorg.conf, but on a daily basis I use a xorg.conf file with only my main screen. Up until last week I was able to use my second screen without problem, but yesterday I tried and it crashed instantly.
    So I ran a few tests, amsn and vlc seems to be 2 applications that makes X crash (though there might be other, but I seem to be able to use chromium firefox and ktorrent just fine).
    My WM is not to blame, I've launched X without any WM and vlc still makes X crash.
    The problem does not happen when using a single screen.
    I thought that my xorg.conf might be the problem, so I used nvidia-settings to create a new one, but that didn't change anything.
    Here are my xorg.conf used for dual screen, and the logfile from the Xorg crash:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder62) Wed May 27 01:58:49 PDT 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "Xinerama" "1"
    EndSection
    Section "Files"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "1"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputClass"
    Identifier "Keyboard Defaults"
    MatchIsKeyboard "yes"
    Option "XkbLayout" "fr"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Lite-On e1770NSL/T"
    HorizSync 30.0 - 70.0
    VertRefresh 50.0 - 160.0
    Option "DPMS"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "CRT-1"
    HorizSync 31.5 - 64.0
    VertRefresh 56.0 - 75.0
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8800 GT"
    BusID "PCI:1:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8800 GT"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "CRT-0"
    Option "metamodes" "CRT-0: 1280x1024 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "CRT-1: 1360x768 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    [ 12049.854]
    X.Org X Server 1.9.0
    Release Date: 2010-08-20
    [ 12049.855] X Protocol Version 11, Revision 0
    [ 12049.855] Build Operating System: Linux 2.6.34-ARCH x86_64
    [ 12049.855] Current Operating System: Linux Arch 2.6.35-ARCH #1 SMP PREEMPT Wed Sep 29 08:45:18 CEST 2010 x86_64
    [ 12049.855] Kernel command line: root=/dev/disk/by-uuid/132b76f3-06e9-4838-944f-43ac4deccebb ro
    [ 12049.855] Build Date: 24 August 2010 01:44:37PM
    [ 12049.855]
    [ 12049.855] Current version of pixman: 0.18.4
    [ 12049.856] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 12049.856] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 12049.856] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Oct 5 17:25:50 2010
    [ 12049.857] (==) Using config file: "/etc/X11/xorg.conf"
    [ 12049.857] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 12049.857] (==) ServerLayout "Layout0"
    [ 12049.857] (**) |-->Screen "Screen0" (0)
    [ 12049.857] (**) | |-->Monitor "Monitor0"
    [ 12049.857] (**) | |-->Device "Device0"
    [ 12049.857] (**) |-->Screen "Screen1" (1)
    [ 12049.857] (**) | |-->Monitor "Monitor1"
    [ 12049.857] (**) | |-->Device "Device1"
    [ 12049.857] (**) |-->Input Device "Keyboard0"
    [ 12049.857] (**) |-->Input Device "Mouse0"
    [ 12049.857] (**) Option "Xinerama" "1"
    [ 12049.857] (==) Automatically adding devices
    [ 12049.857] (==) Automatically enabling devices
    [ 12049.857] (**) Xinerama: enabled
    [ 12049.857] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 12049.857] Entry deleted from font path.
    [ 12049.857] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 12049.857] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 12049.857] (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 12049.857] (WW) Disabling Keyboard0
    [ 12049.857] (WW) Disabling Mouse0
    [ 12049.857] (II) Loader magic: 0x7d4880
    [ 12049.857] (II) Module ABI versions:
    [ 12049.857] X.Org ANSI C Emulation: 0.4
    [ 12049.857] X.Org Video Driver: 8.0
    [ 12049.857] X.Org XInput driver : 11.0
    [ 12049.857] X.Org Server Extension : 4.0
    [ 12049.858] (--) PCI:*(0:1:0:0) 10de:0611:1462:1170 rev 162, Mem @ 0xfd000000/16777216, 0xd0000000/268435456, 0xfa000000/33554432, I/O @ 0x0000cc00/128, BIOS @ 0x????????/131072
    [ 12049.858] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 12049.858] (II) LoadModule: "extmod"
    [ 12049.858] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 12049.858] (II) Module extmod: vendor="X.Org Foundation"
    [ 12049.858] compiled for 1.9.0, module version = 1.0.0
    [ 12049.858] Module class: X.Org Server Extension
    [ 12049.858] ABI class: X.Org Server Extension, version 4.0
    [ 12049.858] (II) Loading extension MIT-SCREEN-SAVER
    [ 12049.858] (II) Loading extension XFree86-VidModeExtension
    [ 12049.858] (II) Loading extension XFree86-DGA
    [ 12049.858] (II) Loading extension DPMS
    [ 12049.858] (II) Loading extension XVideo
    [ 12049.858] (II) Loading extension XVideo-MotionCompensation
    [ 12049.858] (II) Loading extension X-Resource
    [ 12049.858] (II) LoadModule: "dbe"
    [ 12049.859] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 12049.859] (II) Module dbe: vendor="X.Org Foundation"
    [ 12049.859] compiled for 1.9.0, module version = 1.0.0
    [ 12049.859] Module class: X.Org Server Extension
    [ 12049.859] ABI class: X.Org Server Extension, version 4.0
    [ 12049.859] (II) Loading extension DOUBLE-BUFFER
    [ 12049.859] (II) LoadModule: "glx"
    [ 12049.859] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 12049.866] (II) Module glx: vendor="NVIDIA Corporation"
    [ 12049.867] compiled for 4.0.2, module version = 1.0.0
    [ 12049.867] Module class: X.Org Server Extension
    [ 12049.867] (II) NVIDIA GLX Module 256.53 Fri Aug 27 20:50:26 PDT 2010
    [ 12049.867] (II) Loading extension GLX
    [ 12049.867] (II) LoadModule: "record"
    [ 12049.867] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 12049.867] (II) Module record: vendor="X.Org Foundation"
    [ 12049.867] compiled for 1.9.0, module version = 1.13.0
    [ 12049.867] Module class: X.Org Server Extension
    [ 12049.867] ABI class: X.Org Server Extension, version 4.0
    [ 12049.867] (II) Loading extension RECORD
    [ 12049.867] (II) LoadModule: "dri"
    [ 12049.867] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 12049.867] (II) Module dri: vendor="X.Org Foundation"
    [ 12049.867] compiled for 1.9.0, module version = 1.0.0
    [ 12049.867] ABI class: X.Org Server Extension, version 4.0
    [ 12049.867] (II) Loading extension XFree86-DRI
    [ 12049.867] (II) LoadModule: "dri2"
    [ 12049.867] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 12049.867] (II) Module dri2: vendor="X.Org Foundation"
    [ 12049.867] compiled for 1.9.0, module version = 1.2.0
    [ 12049.867] ABI class: X.Org Server Extension, version 4.0
    [ 12049.867] (II) Loading extension DRI2
    [ 12049.867] (II) LoadModule: "nvidia"
    [ 12049.867] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 12049.868] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 12049.868] compiled for 4.0.2, module version = 1.0.0
    [ 12049.868] Module class: X.Org Video Driver
    [ 12049.868] (II) NVIDIA dlloader X Driver 256.53 Fri Aug 27 20:29:45 PDT 2010
    [ 12049.868] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 12049.868] (--) using VT number 7
    [ 12049.869] (II) Loading sub module "fb"
    [ 12049.869] (II) LoadModule: "fb"
    [ 12049.869] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 12049.870] (II) Module fb: vendor="X.Org Foundation"
    [ 12049.870] compiled for 1.9.0, module version = 1.0.0
    [ 12049.870] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 12049.870] (II) Loading sub module "wfb"
    [ 12049.870] (II) LoadModule: "wfb"
    [ 12049.870] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 12049.870] (II) Module wfb: vendor="X.Org Foundation"
    [ 12049.870] compiled for 1.9.0, module version = 1.0.0
    [ 12049.870] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 12049.870] (II) Loading sub module "ramdac"
    [ 12049.870] (II) LoadModule: "ramdac"
    [ 12049.870] (II) Module "ramdac" already built-in
    [ 12049.870] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 12049.870] (==) NVIDIA(0): RGB weight 888
    [ 12049.870] (==) NVIDIA(0): Default visual is TrueColor
    [ 12049.870] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 12049.870] (**) NVIDIA(0): Option "TwinView" "0"
    [ 12049.870] (**) NVIDIA(0): Option "MetaModes" "CRT-0: 1280x1024 +0+0"
    [ 12049.870] (**) NVIDIA(0): Option "TwinViewXineramaInfoOrder" "CRT-0"
    [ 12049.870] (**) NVIDIA(0): Enabling RENDER acceleration
    [ 12049.870] (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    [ 12049.870] (II) NVIDIA(0): enabled.
    [ 12049.955] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1
    [ 12049.957] (II) NVIDIA(0): NVIDIA GPU GeForce 8800 GT (G92) at PCI:1:0:0 (GPU-0)
    [ 12049.957] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 12049.957] (--) NVIDIA(0): VideoBIOS: 62.92.23.00.00
    [ 12049.957] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 12049.957] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 12049.957] (--) NVIDIA(0): Connected display device(s) on GeForce 8800 GT at PCI:1:0:0:
    [ 12049.957] (--) NVIDIA(0): Lite-On e1770NSL/T (CRT-0)
    [ 12049.957] (--) NVIDIA(0): CRT-1
    [ 12049.957] (--) NVIDIA(0): Lite-On e1770NSL/T (CRT-0): 400.0 MHz maximum pixel clock
    [ 12049.957] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [ 12049.960] (II) NVIDIA(0): Display Device found referenced in MetaMode: CRT-0
    [ 12049.967] (II) NVIDIA(0): Assigned Display Device: CRT-0
    [ 12049.967] (II) NVIDIA(0): Validated modes:
    [ 12049.967] (II) NVIDIA(0): "CRT-0:1280x1024+0+0"
    [ 12049.967] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    [ 12049.999] (--) NVIDIA(0): DPI set to (101, 108); computed from "UseEdidDpi" X config
    [ 12049.999] (--) NVIDIA(0): option
    [ 12049.999] (WW) NVIDIA(0): 32-bit ARGB GLX visuals are not currently supported with the
    [ 12049.999] (WW) NVIDIA(0): Xinerama extension.
    [ 12049.999] (WW) NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
    [ 12049.999] (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
    [ 12049.999] (==) NVIDIA(1): RGB weight 888
    [ 12049.999] (==) NVIDIA(1): Default visual is TrueColor
    [ 12049.999] (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
    [ 12049.999] (**) NVIDIA(1): Option "TwinView" "0"
    [ 12049.999] (**) NVIDIA(1): Option "MetaModes" "CRT-1: 1360x768 +0+0"
    [ 12049.999] (**) NVIDIA(1): Enabling RENDER acceleration
    [ 12049.999] (II) NVIDIA(1): NVIDIA GPU GeForce 8800 GT (G92) at PCI:1:0:0 (GPU-0)
    [ 12049.999] (--) NVIDIA(1): Memory: 524288 kBytes
    [ 12049.999] (--) NVIDIA(1): VideoBIOS: 62.92.23.00.00
    [ 12049.999] (II) NVIDIA(1): Detected PCI Express Link width: 16X
    [ 12049.999] (--) NVIDIA(1): Interlaced video modes are supported on this GPU
    [ 12049.999] (--) NVIDIA(1): Connected display device(s) on GeForce 8800 GT at PCI:1:0:0:
    [ 12049.999] (--) NVIDIA(1): Lite-On e1770NSL/T (CRT-0)
    [ 12049.999] (--) NVIDIA(1): CRT-1
    [ 12049.999] (--) NVIDIA(1): Lite-On e1770NSL/T (CRT-0): 400.0 MHz maximum pixel clock
    [ 12049.999] (--) NVIDIA(1): CRT-1: 400.0 MHz maximum pixel clock
    [ 12050.002] (II) NVIDIA(1): Display Device found referenced in MetaMode: CRT-1
    [ 12050.006] (II) NVIDIA(1): Assigned Display Device: CRT-1
    [ 12050.006] (WW) NVIDIA(1): No valid modes for "CRT-1:1360x768+0+0"; removing.
    [ 12050.006] (WW) NVIDIA(1):
    [ 12050.006] (WW) NVIDIA(1): Unable to validate any modes; falling back to the default mode
    [ 12050.006] (WW) NVIDIA(1): "nvidia-auto-select".
    [ 12050.006] (WW) NVIDIA(1):
    [ 12050.006] (II) NVIDIA(1): Validated modes:
    [ 12050.006] (II) NVIDIA(1): "nvidia-auto-select"
    [ 12050.006] (II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
    [ 12050.009] (WW) NVIDIA(1): Unable to get display device CRT-1's EDID; cannot compute DPI
    [ 12050.009] (WW) NVIDIA(1): from CRT-1's EDID.
    [ 12050.009] (==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
    [ 12050.009] (WW) NVIDIA(1): 32-bit ARGB GLX visuals are not currently supported with the
    [ 12050.009] (WW) NVIDIA(1): Xinerama extension.
    [ 12050.009] (WW) NVIDIA(1): Disabling 32-bit ARGB GLX visuals.
    [ 12050.009] (--) Depth 24 pixmap format is 32 bpp
    [ 12050.009] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 12050.010] (II) NVIDIA(0): Initialized GPU GART.
    [ 12050.014] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 12050.014] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 12050.014] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 12050.014] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 12050.014] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 12050.014] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 12050.014] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 12050.014] (II) NVIDIA(0): Config Options in the README.
    [ 12050.017] (II) NVIDIA(0): Setting mode "CRT-0:1280x1024+0+0"
    [ 12050.049] (II) Loading extension NV-GLX
    [ 12050.064] (II) NVIDIA(0): Initialized OpenGL Acceleration
    [ 12050.071] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 12050.071] (II) NVIDIA(0): Initialized X Rendering Acceleration
    [ 12050.071] (==) NVIDIA(0): Backing store disabled
    [ 12050.071] (==) NVIDIA(0): Silken mouse enabled
    [ 12050.085] (**) NVIDIA(0): DPMS enabled
    [ 12050.085] (II) Loading extension NV-CONTROL
    [ 12050.085] (II) Loading sub module "dri2"
    [ 12050.085] (II) LoadModule: "dri2"
    [ 12050.085] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 12050.085] (II) NVIDIA(0): [DRI2] Setup complete
    [ 12050.085] (==) RandR enabled
    [ 12050.086] (II) NVIDIA(1): Initialized GPU GART.
    [ 12050.090] (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 12050.090] (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    [ 12050.090] (II) NVIDIA(1): configuration option may not be set correctly. When the
    [ 12050.090] (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    [ 12050.090] (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    [ 12050.090] (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    [ 12050.090] (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 12050.090] (II) NVIDIA(1): Config Options in the README.
    [ 12050.090] (II) NVIDIA(1): Setting mode "nvidia-auto-select"
    [ 12050.145] (II) NVIDIA(1): Initialized OpenGL Acceleration
    [ 12050.149] (==) NVIDIA(1): Disabling shared memory pixmaps
    [ 12050.149] (II) NVIDIA(1): Initialized X Rendering Acceleration
    [ 12050.149] (==) NVIDIA(1): Backing store disabled
    [ 12050.149] (==) NVIDIA(1): Silken mouse enabled
    [ 12050.157] (==) NVIDIA(1): DPMS enabled
    [ 12050.158] (II) Loading sub module "dri2"
    [ 12050.158] (II) LoadModule: "dri2"
    [ 12050.158] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 12050.158] (II) NVIDIA(1): [DRI2] Setup complete
    [ 12050.158] (==) RandR enabled
    [ 12050.158] (II) Initializing built-in extension Generic Event Extension
    [ 12050.158] (II) Initializing built-in extension SHAPE
    [ 12050.158] (II) Initializing built-in extension MIT-SHM
    [ 12050.158] (II) Initializing built-in extension XInputExtension
    [ 12050.158] (II) Initializing built-in extension XTEST
    [ 12050.158] (II) Initializing built-in extension BIG-REQUESTS
    [ 12050.158] (II) Initializing built-in extension SYNC
    [ 12050.158] (II) Initializing built-in extension XKEYBOARD
    [ 12050.158] (II) Initializing built-in extension XC-MISC
    [ 12050.158] (II) Initializing built-in extension SECURITY
    [ 12050.158] (II) Initializing built-in extension XINERAMA
    [ 12050.158] (II) Initializing built-in extension XFIXES
    [ 12050.158] (II) Initializing built-in extension RENDER
    [ 12050.158] (II) Initializing built-in extension RANDR
    [ 12050.158] (II) Initializing built-in extension COMPOSITE
    [ 12050.158] (II) Initializing built-in extension DAMAGE
    [ 12050.160] (II) Initializing extension GLX
    [ 12050.367] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 12050.367] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 12050.367] (II) LoadModule: "evdev"
    [ 12050.367] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 12050.367] (II) Module evdev: vendor="X.Org Foundation"
    [ 12050.367] compiled for 1.9.0, module version = 2.5.0
    [ 12050.367] Module class: X.Org XInput Driver
    [ 12050.367] ABI class: X.Org XInput driver, version 11.0
    [ 12050.367] (**) Power Button: always reports core events
    [ 12050.367] (**) Power Button: Device: "/dev/input/event3"
    [ 12050.375] (--) Power Button: Found keys
    [ 12050.375] (II) Power Button: Configuring as keyboard
    [ 12050.376] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 12050.376] (**) Option "xkb_rules" "evdev"
    [ 12050.376] (**) Option "xkb_model" "evdev"
    [ 12050.376] (**) Option "xkb_layout" "us"
    [ 12050.399] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 12050.399] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 12050.399] (**) Power Button: always reports core events
    [ 12050.399] (**) Power Button: Device: "/dev/input/event2"
    [ 12050.415] (--) Power Button: Found keys
    [ 12050.415] (II) Power Button: Configuring as keyboard
    [ 12050.415] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 12050.415] (**) Option "xkb_rules" "evdev"
    [ 12050.415] (**) Option "xkb_model" "evdev"
    [ 12050.415] (**) Option "xkb_layout" "us"
    [ 12050.416] (II) config/udev: Adding input device UVC Camera (046d:0802) (/dev/input/event4)
    [ 12050.416] (**) UVC Camera (046d:0802): Applying InputClass "evdev keyboard catchall"
    [ 12050.416] (**) UVC Camera (046d:0802): always reports core events
    [ 12050.416] (**) UVC Camera (046d:0802): Device: "/dev/input/event4"
    [ 12050.428] (--) UVC Camera (046d:0802): Found keys
    [ 12050.428] (II) UVC Camera (046d:0802): Configuring as keyboard
    [ 12050.428] (II) XINPUT: Adding extended input device "UVC Camera (046d:0802)" (type: KEYBOARD)
    [ 12050.428] (**) Option "xkb_rules" "evdev"
    [ 12050.428] (**) Option "xkb_model" "evdev"
    [ 12050.428] (**) Option "xkb_layout" "us"
    [ 12050.430] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/event5)
    [ 12050.431] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Applying InputClass "evdev pointer catchall"
    [ 12050.431] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): always reports core events
    [ 12050.431] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Device: "/dev/input/event5"
    [ 12050.442] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found 3 mouse buttons
    [ 12050.442] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found scroll wheel(s)
    [ 12050.442] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found relative axes
    [ 12050.442] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found x and y relative axes
    [ 12050.442] (II) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Configuring as mouse
    [ 12050.442] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): YAxisMapping: buttons 4 and 5
    [ 12050.442] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 12050.442] (II) XINPUT: Adding extended input device "Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)" (type: MOUSE)
    [ 12050.442] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) keeping acceleration scheme 1
    [ 12050.442] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration profile 0
    [ 12050.442] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
    [ 12050.442] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
    [ 12050.442] (II) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): initialized for relative axes.
    [ 12050.442] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/mouse0)
    [ 12050.442] (II) No input driver/identifier specified (ignoring)
    [ 12050.444] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 12050.444] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 12050.444] (**) AT Translated Set 2 keyboard: always reports core events
    [ 12050.444] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 12050.458] (--) AT Translated Set 2 keyboard: Found keys
    [ 12050.458] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 12050.458] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 12050.458] (**) Option "xkb_rules" "evdev"
    [ 12050.458] (**) Option "xkb_model" "evdev"
    [ 12050.458] (**) Option "xkb_layout" "us"
    [ 12050.459] (II) config/udev: Adding input device PC Speaker (/dev/input/event1)
    [ 12050.459] (II) No input driver/identifier specified (ignoring)
    [ 12057.008]
    Backtrace:
    [ 12057.008] 0: X (xorg_backtrace+0x28) [0x49f558]
    [ 12057.008] 1: X (0x400000+0x67939) [0x467939]
    [ 12057.008] 2: /lib/libpthread.so.0 (0x7f6c851f4000+0xf1c0) [0x7f6c852031c0]
    [ 12057.008] 3: X (0x400000+0x130355) [0x530355]
    [ 12057.008] 4: X (0x400000+0x2a2e1) [0x42a2e1]
    [ 12057.008] 5: X (0x400000+0x2123e) [0x42123e]
    [ 12057.008] 6: /lib/libc.so.6 (__libc_start_main+0xfd) [0x7f6c84187c4d]
    [ 12057.008] 7: X (0x400000+0x20de9) [0x420de9]
    [ 12057.008] Segmentation fault at address 0x4
    [ 12057.008]
    Fatal server error:
    [ 12057.008] Caught signal 11 (Segmentation fault). Server aborting
    [ 12057.008]
    [ 12057.008]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 12057.008] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 12057.008]
    [ 12057.019] (II) Power Button: Close
    [ 12057.019] (II) UnloadModule: "evdev"
    [ 12057.032] (II) Power Button: Close
    [ 12057.032] (II) UnloadModule: "evdev"
    [ 12057.045] (II) UVC Camera (046d:0802): Close
    [ 12057.045] (II) UnloadModule: "evdev"
    [ 12057.069] (II) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Close
    [ 12057.069] (II) UnloadModule: "evdev"
    [ 12057.082] (II) AT Translated Set 2 keyboard: Close
    [ 12057.082] (II) UnloadModule: "evdev"
    Last edited by Azriel (2010-10-06 15:09:27)

    Sorry this doesn't really help with the Xinerama problem, but since you are using the nvidia driver, have you considered using Twinview instead? You could do composite stuff too with Twinview - last I knew, Xinerama had problems with things that want to use compositing. I don't know how your setup is but if you're not set on using Xinerama, it might be an option to consider.

  • My ipod 5th gen crashed unexpectedly while i was using my facebook app and then i turned it off thinking it would restart and be alright but when i turned it on like ***?! some of the applications were gone and the setting and appstore and photos are gone

    my ipod 5th gen crashed unexpectedly while i was using my facebook app and then i turned it off thinking it would restart and be alright but when i turned it on like ***?! some of the applications were gone and the setting and appstore and photos and camera are gone like everything that is on it already .. please help me

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • PrintOpen crashing application when used after PrintSetPrinter for networked IPP print server

    This is on Windows Server 2008 using PB 12.1 Build 7298.
    I'm using PrintGetPrinters to get the printer name of the networked IPP print server that is setup on the machine and it comes back as:
    \\http://aps-ps-1:631\cp
    I then use PrintSetPrinter with that name to change the printer, which works fine.
    After calling PrintSetPrinter I call PrintOpen to open a print job, which then crashes the application with a gdi32.dll fault.
    If I call PrintOpen( "testing", true ) it works fine, but PrintOpen() or PrintOpen( "testing", false ) crash the app.  This all works fine on a non networked printer on the server, which we've been using for years, but are now trying to switch to a print server.
    Does anyone know why PrintOpen would be crashing when not showing the print dialog box?  Any help would be appreciated.
    Thanks,
    Eric Cole

    Hi Chris,
    Thanks for the reply.  It's not a catchable exception, already tried that.  It's one of those faults where you get the microsoft windows yourapplication.exe has stopped working popup and it puts an error in the system application events that you can view in the event viewer.  There isn't much info in the event to go off of either.
    I did find another older forum post that seems to be the same issue but with PB 12.5.1 and where mine is crashing his just didn't print.  The thread is here: http://nntp-archive.sybase.com/nntp-archive/action/article/%[email protected]%3E
    Since it's only an issue with PrintOpen I'm changing it to datawindow.Print instead, but I have to combine 2 datawindows in the same print job without a print dialog so I'm forced to come up with a workaround in order to accomplish that.  I'm going to hopefully create a composite datawindow with the 2 combined dws so I can get them in 1 print job.  It's just going to take longer than I thought because my datawindows have nested reports so I can't use GetChild to get a reference to them and they are being modified with .Modify.
    Eric

  • Any application, that uses networking, crashes at launch

    Any application, that uses networking, crashes at launch. It happens only at my work where I'm connected to the network via ethernet with DHCP, the server has Windows Server 2003. There was no problem on Tiger, though, and ethernet at other places works fine. Reinstalled Leopard 2 times from scratch, the problem still exists.
    Hardware Overview:
    Model Name: MacBook Pro
    Model Identifier: MacBookPro3,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 2 GB
    Bus Speed: 800 MHz
    Boot ROM Version: MBP31.0070.B00
    SMC Version: 1.18f2
    Here are crash logs for Software update:
    Process: Software Update [192]
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Identifier: com.apple.SoftwareUpdate
    Version: 3.0.1 (176.1)
    Build Info: SoftwareUpdate-1760100~1
    Code Type: X86 (Native)
    Parent Process: launchd [72]
    Date/Time: 2007-12-31 08:52:58.537 +0300
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000008918458b
    Crashed Thread: 5
    Thread 0:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x952318a4 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x952316bd ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x95231531 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x96243d5b _DPSNextEvent + 657
    8 com.apple.AppKit 0x962436a0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x9623c6d1 -[NSApplication run] + 795
    10 com.apple.AppKit 0x962099ba NSApplicationMain + 574
    11 com.apple.SoftwareUpdate 0x00002112 0x1000 + 4370
    Thread 1:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x91c447ba CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    6 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d94 CFRunLoopRun + 84
    4 ...le.SoftwareUpdate.framework 0x00057c59 +[SUURLConnection sendSynchronousRequest:returningResponse:error:] + 227
    5 ...le.SoftwareUpdate.framework 0x00053f04 +[SUCatalogLoader _fetchDictionaryFromURL:returningError:] + 350
    6 ...le.SoftwareUpdate.framework 0x0005417f +[SUCatalogLoader _fetchAppleCatalogDictionaryReturningError:finalURL:] + 229
    7 ...le.SoftwareUpdate.framework 0x00054adb -[SUCatalogLoader _loaderMain:] + 165
    8 com.apple.Foundation 0x91d8304d -[NSThread main] + 45
    9 com.apple.Foundation 0x91d82bf4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    11 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x955398e6 kevent + 10
    1 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    2 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x91c447ba CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    6 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 5 Crashed:
    0 libobjc.A.dylib 0x920fb6ec objc_msgSend + 28
    1 com.apple.CFNetwork 0x91c56ec4 updateForHeaders + 167
    2 com.apple.CFNetwork 0x91c56c69 httpConnectionResponseStreamCB + 87
    3 com.apple.CFNetwork 0x91c56bbb connectionResponseCallBack + 86
    4 com.apple.CoreFoundation 0x90726629 _CFStreamSignalEventSynch + 137
    5 com.apple.CoreFoundation 0x907281f7 CFReadStreamSignalEvent + 39
    6 com.apple.CFNetwork 0x91c560e1 httpRdFilterStreamCallBack + 325
    7 com.apple.CoreFoundation 0x90726629 _CFStreamSignalEventSynch + 137
    8 com.apple.CoreFoundation 0x907281f7 CFReadStreamSignalEvent + 39
    9 com.apple.CFNetwork 0x91c41e0a _SocketCallBack + 1632
    10 com.apple.CoreFoundation 0x9071d960 __CFSocketDoCallback + 640
    11 com.apple.CoreFoundation 0x9071ef95 __CFSocketPerformV0 + 133
    12 com.apple.CoreFoundation 0x9071464e CFRunLoopRunSpecific + 3166
    13 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    14 com.apple.Foundation 0x91de6560 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    15 com.apple.Foundation 0x91d8304d -[NSThread main] + 45
    16 com.apple.Foundation 0x91d82bf4 _NSThread__main_ + 308
    17 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    18 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x95558f5a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    2 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x91c91d45 _KeychainThread + 230
    5 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    6 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 5 crashed with X86 Thread State (32-bit):
    eax: 0x007e0004 ebx: 0x907165ca ecx: 0x92197394 edx: 0x940b88b0
    edi: 0x8918458b esi: 0x007e0004 ebp: 0xb025abe8 esp: 0xb025abc4
    ss: 0x0000001f efl: 0x00010202 eip: 0x920fb6ec cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x8918458b
    Binary Images:
    0x1000 - 0x11fff com.apple.SoftwareUpdate 3.0.1 (176.1) <576ce296d1175e42e4f57dd837ca3a86> /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    0x3f000 - 0x5fffb com.apple.SoftwareUpdate.framework 3.0.1 (176.1) <9f9419b8823ebbfdff3482f14cdea47d> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
    0x7e000 - 0x82ffe com.apple.JavaScriptGlue 5523.5 (5523.5) <b05d8bd596461195dbe07281a8f384d2> /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    0x8a000 - 0x94fff libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
    0x129000 - 0x1d8fea com.apple.installframework 3.0.2 (378) <bed6cc061dd0cf8d65e763bf571a4969> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    0x252000 - 0x282ffb com.apple.DiskManagement 2.1 (152) <1a71c02f082a80656961486251b15074> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x2a4000 - 0x2eeff2 com.apple.SystemMigration 2.3 (138) <3a061681713cac00390954cd1e6ae746> /System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/SystemMi gration
    0x321000 - 0x356fff com.apple.MediaKit 9.0 (391) <baf0ef1d2fb7dec226bb982c991b6b95> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x367000 - 0x430ff5 com.apple.DiscRecording 4.0 (4000.4.10) <d4130992c67baeb1ec39e6b63e080550> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x49b000 - 0x4b0ffd com.apple.NetInfo 1.0.0 (???) <8d3aeaf6d7b03e73d1a24e70da2551a8> /System/Library/PrivateFrameworks/NetInfo.framework/Versions/A/NetInfo
    0x4bb000 - 0x5b3fe0 com.apple.DiskImagesFramework 10.5.1 (192.1) <bc81cfae2611298268170f2e25ce07b3> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x619000 - 0x641ff8 com.apple.framework.Apple80211 5.0.1 (501.1) <77dae9ed98cd5d7dc6925ec705f94bf0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x651000 - 0x67cffb libcurl.4.dylib ??? (???) <54ada27deb3b4ff7043d8836264eca0d> /usr/lib/libcurl.4.dylib
    0x147d3000 - 0x148b9ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x900e3000 - 0x900feffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90256000 - 0x9025cfff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9025d000 - 0x9030fffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x90310000 - 0x9034ffef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90350000 - 0x9037dfeb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x904c7000 - 0x90582fe3 com.apple.WebKit 5523.10.6 (5523.10.6) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x905e9000 - 0x90611ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90681000 - 0x90681ffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90682000 - 0x906a1ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x906a2000 - 0x907d4fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x907d5000 - 0x907f3ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x907f4000 - 0x90939ff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9093a000 - 0x90e50fff com.apple.WebCore 5523.10.6 (5523.10.6) <9e1a5e022ebf8134c175de5f91c63bee> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90e51000 - 0x90e5afff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90e5b000 - 0x90e8ffef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90e90000 - 0x90f3ffff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90f40000 - 0x90f40ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90f47000 - 0x90f5ffff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91074000 - 0x910fbff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x910fc000 - 0x91103ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91104000 - 0x91114fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91115000 - 0x91116ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x91117000 - 0x911a9ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x911aa000 - 0x911b1ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x911b2000 - 0x9167effe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9170b000 - 0x91765ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91766000 - 0x9177aff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9177b000 - 0x91786ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91906000 - 0x9190efff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9190f000 - 0x9190fffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9197f000 - 0x91982fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91983000 - 0x91a67ffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91a68000 - 0x91a68ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91a69000 - 0x91aa3ff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91aa4000 - 0x91abafe7 com.apple.CoreVideo 1.5.0 (1.5.0) <c7569b68e54114da815e9c55299fe3a4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91abb000 - 0x91adffff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x91ae0000 - 0x91b22fef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91b23000 - 0x91bccfff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91bcd000 - 0x91c03fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91c35000 - 0x91c37fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91c38000 - 0x91c38fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91c39000 - 0x91cb0fe3 com.apple.CFNetwork 220 (221) <972a41911805859205b057a6f5b91e8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91cb1000 - 0x91d78ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d79000 - 0x91ff2fe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92066000 - 0x92071fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92072000 - 0x920e6fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x920e7000 - 0x921c6fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x921c7000 - 0x9285efef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9394a000 - 0x9394affc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9394b000 - 0x93a83ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x93a84000 - 0x93b3afe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93b78000 - 0x93b88ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93ba9000 - 0x93beafe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93c39000 - 0x93c76ff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93eac000 - 0x93eb3fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x93fb6000 - 0x9417ffef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94180000 - 0x94184fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94185000 - 0x94194fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x944a7000 - 0x945cbfe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x945cc000 - 0x949dcfef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x949dd000 - 0x94a69ff7 com.apple.LaunchServices 286 (286) <72b15e7a01e42d510f0339e90113d5d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94a6a000 - 0x94a77fe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94a78000 - 0x94a79fef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94a7a000 - 0x94af9ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94afa000 - 0x94bdbff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x94be8000 - 0x94c7bfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94c7c000 - 0x94cc0feb com.apple.DirectoryService.PasswordServerFramework 3.0.1 (3.0.1) <e2858f33c02cef9ea4d717b19529059e> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x94cc1000 - 0x94d1afff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94d1b000 - 0x94d39fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x94d5e000 - 0x94d82feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x94d83000 - 0x94d83ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94d84000 - 0x94db3fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94e58000 - 0x94e69ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x94e6b000 - 0x95201ff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95202000 - 0x95508fff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95509000 - 0x95663fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x956a2000 - 0x956ccfef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x956cd000 - 0x95712fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95713000 - 0x95721ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x95722000 - 0x95749fff libcups.2.dylib ??? (???) <5521498e8902ddd0b15cfaa7db384e29> /usr/lib/libcups.2.dylib
    0x9574a000 - 0x9574cff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9574d000 - 0x9579dff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9579f000 - 0x95819ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95865000 - 0x958e1feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x958e2000 - 0x95992fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95993000 - 0x95997fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x959c8000 - 0x95ca1fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95ca2000 - 0x96060fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96061000 - 0x96061ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96062000 - 0x96062ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96063000 - 0x96079fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9607a000 - 0x96086fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x96087000 - 0x96091feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96092000 - 0x96139fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9613a000 - 0x96196ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96197000 - 0x9619cfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9619d000 - 0x961faffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96203000 - 0x969fdfef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96ad4000 - 0x96b9ffff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96ba0000 - 0x96c2afff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96c2b000 - 0x96c37ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    And Safari:
    Process: Safari [187]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.0.4 (5523.10.6)
    Build Info: WebBrowser-55231006~1
    Code Type: X86 (Native)
    Parent Process: launchd [72]
    Date/Time: 2007-12-31 12:02:15.547 +0300
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000002f2f0009
    Crashed Thread: 3
    Thread 0:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x952318a4 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x952316bd ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x95231531 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x96243d5b _DPSNextEvent + 657
    8 com.apple.AppKit 0x962436a0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.Safari 0x00009d4e 0x1000 + 36174
    10 com.apple.AppKit 0x9623c6d1 -[NSApplication run] + 795
    11 com.apple.AppKit 0x962099ba NSApplicationMain + 574
    12 com.apple.Safari 0x00002876 0x1000 + 6262
    Thread 1:
    0 libSystem.B.dylib 0x95510ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x9553aced pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x9094202f WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x9093d625 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    5 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x91c447ba CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    6 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 3 Crashed:
    0 com.apple.CoreFoundation 0x907165e4 CFRelease + 36
    1 com.apple.CFNetwork 0x91c56ec4 updateForHeaders + 167
    2 com.apple.CFNetwork 0x91c56c69 httpConnectionResponseStreamCB + 87
    3 com.apple.CFNetwork 0x91c56bbb connectionResponseCallBack + 86
    4 com.apple.CoreFoundation 0x90726629 _CFStreamSignalEventSynch + 137
    5 com.apple.CoreFoundation 0x907281f7 CFReadStreamSignalEvent + 39
    6 com.apple.CFNetwork 0x91c560e1 httpRdFilterStreamCallBack + 325
    7 com.apple.CoreFoundation 0x90726629 _CFStreamSignalEventSynch + 137
    8 com.apple.CoreFoundation 0x907281f7 CFReadStreamSignalEvent + 39
    9 com.apple.CFNetwork 0x91c41e0a _SocketCallBack + 1632
    10 com.apple.CoreFoundation 0x9071d960 __CFSocketDoCallback + 640
    11 com.apple.CoreFoundation 0x9071ef95 __CFSocketPerformV0 + 133
    12 com.apple.CoreFoundation 0x9071464e CFRunLoopRunSpecific + 3166
    13 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    14 com.apple.Foundation 0x91de6560 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    15 com.apple.Foundation 0x91d8304d -[NSThread main] + 45
    16 com.apple.Foundation 0x91d82bf4 _NSThread__main_ + 308
    17 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    18 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x95558f5a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    2 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x955098e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x955110dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90714d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x91c91d45 _KeychainThread + 230
    5 libSystem.B.dylib 0x9553a075 pthreadstart + 321
    6 libSystem.B.dylib 0x95539f32 thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x907165ca ecx: 0x14e4ce74 edx: 0x03014980
    edi: 0x14e4a210 esi: 0x2f2f0004 ebp: 0xb01c7be8 esp: 0xb01c7bd0
    ss: 0x0000001f efl: 0x00010246 eip: 0x907165e4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x2f2f0009
    Binary Images:
    0x1000 - 0x12efef com.apple.Safari 3.0.4 (5523.10.6) <53d219fd878088543fd2e1af460bed18> /Applications/Safari.app/Contents/MacOS/Safari
    0x176000 - 0x184ff8 SyndicationUI ??? (???) <8adc35e1eb5001dead3c18ee25f2e8db> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x55e000 - 0x644ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14d42000 - 0x14d47ff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x900e3000 - 0x900feffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90256000 - 0x9025cfff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9025d000 - 0x9030fffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x90310000 - 0x9034ffef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90350000 - 0x9037dfeb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9037e000 - 0x90380fff com.apple.CrashReporterSupport 10.5.0 (156) <3088b785b10d03504ed02f3fee5d3aab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90381000 - 0x903b7fef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x904c7000 - 0x90582fe3 com.apple.WebKit 5523.10.6 (5523.10.6) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90583000 - 0x905e8ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x905e9000 - 0x90611ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90681000 - 0x90681ffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90682000 - 0x906a1ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x906a2000 - 0x907d4fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x907d5000 - 0x907f3ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x907f4000 - 0x90939ff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9093a000 - 0x90e50fff com.apple.WebCore 5523.10.6 (5523.10.6) <9e1a5e022ebf8134c175de5f91c63bee> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90e51000 - 0x90e5afff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90e90000 - 0x90f3ffff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90f40000 - 0x90f40ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90f47000 - 0x90f5ffff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91074000 - 0x910fbff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x910fc000 - 0x91103ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91104000 - 0x91114fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91115000 - 0x91116ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x91117000 - 0x911a9ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x911aa000 - 0x911b1ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x911b2000 - 0x9167effe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9170b000 - 0x91765ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91766000 - 0x9177aff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9177b000 - 0x91786ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91787000 - 0x91905fff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91906000 - 0x9190efff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9190f000 - 0x9190fffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9197f000 - 0x91982fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91983000 - 0x91a67ffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91a68000 - 0x91a68ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91a69000 - 0x91aa3ff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91aa4000 - 0x91abafe7 com.apple.CoreVideo 1.5.0 (1.5.0) <c7569b68e54114da815e9c55299fe3a4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91abb000 - 0x91adffff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x91ae0000 - 0x91b22fef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91b23000 - 0x91bccfff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91bcd000 - 0x91c03fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91c35000 - 0x91c37fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91c38000 - 0x91c38fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91c39000 - 0x91cb0fe3 com.apple.CFNetwork 220 (221) <972a41911805859205b057a6f5b91e8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91cb1000 - 0x91d78ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d79000 - 0x91ff2fe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91ff3000 - 0x92025fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9202c000 - 0x92065ffe com.apple.securityfoundation 3.0 (32768) <1e9885d63ced51f81bc1f39af624637d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92066000 - 0x92071fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92072000 - 0x920e6fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x920e7000 - 0x921c6fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x921c7000 - 0x9285efef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9394a000 - 0x9394affc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9394b000 - 0x93a83ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x93a84000 - 0x93b3afe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93b78000 - 0x93b88ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93ba9000 - 0x93beafe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93c39000 - 0x93c76ff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93cc4000 - 0x93cc9fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93eac000 - 0x93eb3fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x93eb4000 - 0x93fb5fff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93fb6000 - 0x9417ffef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94180000 - 0x94184fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94185000 - 0x94194fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x944a7000 - 0x945cbfe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x945cc000 - 0x949dcfef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x949dd000 - 0x94a69ff7 com.apple.LaunchServices 286 (286) <72b15e7a01e42d510f0339e90113d5d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94a6a000 - 0x94a77fe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94a78000 - 0x94a79fef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94a7a000 - 0x94af9ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94afa000 - 0x94bdbff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x94be8000 - 0x94c7bfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94cc1000 - 0x94d1afff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94d1b000 - 0x94d39fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x94d5e000 - 0x94d82feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x94d83000 - 0x94d83ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94d84000 - 0x94db3fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94e6b000 - 0x95201ff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95202000 - 0x95508fff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95509000 - 0x95663fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x956a2000 - 0x956ccfef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x956cd000 - 0x95712fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95713000 - 0x95721ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x95722000 - 0x95749fff libcups.2.dylib ??? (???) <5521498e8902ddd0b15cfaa7db384e29> /usr/lib/libcups.2.dylib
    0x9574a000 - 0x9574cff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9574d000 - 0x9579dff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9579f000 - 0x95819ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9581a000 - 0x95864fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95865000 - 0x958e1feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x958e2000 - 0x95992fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x959c8000 - 0x95ca1fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95ca2000 - 0x96060fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96061000 - 0x96061ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96062000 - 0x96062ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96063000 - 0x96079fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x96087000 - 0x96091feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96092000 - 0x96139fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9613a000 - 0x96196ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96197000 - 0x9619cfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9619d000 - 0x961faffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96203000 - 0x969fdfef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96ac4000 - 0x96ad3ffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96ad4000 - 0x96b9ffff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96ba0000 - 0x96c2afff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96c2b000 - 0x96c37ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Have to join the complaints here - exactly the same problem - Leopard through a proxy server crashes Safari, Mail (if there is a message with an internet link), iMovies, iTunes etc. - Firefox works fine.
    Working from home works fine - no proxy.
    At work crash after crash inc. something called pubagent?
    Come on apple please fix!
    Here is a typical Safari Crash Report:
    Process: Safari [3127]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.0.4 (5523.10.6)
    Build Info: WebBrowser-55231006~1
    Code Type: X86 (Native)
    Parent Process: launchd [151]
    Date/Time: 2008-01-04 15:22:03.346 +0000
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000002f2f0009
    Crashed Thread: 3
    Thread 0:
    0 libSystem.B.dylib 0x93bef98a rename + 10
    1 com.apple.CoreFoundation 0x95eada8a -[CFXPreferencesPropertyListSource synchronize] + 394
    2 com.apple.CoreFoundation 0x95eaa234 -[CFXPreferencesSearchListSource synchronize] + 116
    3 com.apple.CoreFoundation 0x95eaf8a7 CFPreferencesAppSynchronize + 71
    4 com.apple.Foundation 0x91a771c5 -[NSUserDefaults(NSUserDefaults) synchronize] + 37
    5 com.apple.Foundation 0x91a65a6e __NSFireDelayedPerform + 382
    6 com.apple.CoreFoundation 0x95e43b7e CFRunLoopRunSpecific + 4494
    7 com.apple.CoreFoundation 0x95e43d38 CFRunLoopRunInMode + 88
    8 com.apple.HIToolbox 0x924898a4 RunCurrentEventLoopInMode + 283
    9 com.apple.HIToolbox 0x924896bd ReceiveNextEventCommon + 374
    10 com.apple.HIToolbox 0x92489531 BlockUntilNextEventMatchingListInMode + 106
    11 com.apple.AppKit 0x942ded5b _DPSNextEvent + 657
    12 com.apple.AppKit 0x942de6a0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    13 com.apple.Safari 0x00009d4e 0x1000 + 36174
    14 com.apple.AppKit 0x942d76d1 -[NSApplication run] + 795
    15 com.apple.AppKit 0x942a49ba NSApplicationMain + 574
    16 com.apple.Safari 0x00002876 0x1000 + 6262
    Thread 1:
    0 libSystem.B.dylib 0x93bc3ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x93bedced pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x95f0c02f WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x95f07625 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x93bed075 pthreadstart + 321
    5 libSystem.B.dylib 0x93becf32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x93bbc8e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93bc40dc mach_msg + 72
    2 com.apple.CoreFoundation 0x95e430fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x95e43d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x9658f7ba CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x93bed075 pthreadstart + 321
    6 libSystem.B.dylib 0x93becf32 thread_start + 34
    Thread 3 Crashed:
    0 com.apple.CoreFoundation 0x95e455e4 CFRelease + 36
    1 com.apple.CFNetwork 0x965a1ec4 updateForHeaders + 167
    2 com.apple.CFNetwork 0x965a1c69 httpConnectionResponseStreamCB + 87
    3 com.apple.CFNetwork 0x965a1bbb connectionResponseCallBack + 86
    4 com.apple.CoreFoundation 0x95e55629 _CFStreamSignalEventSynch + 137
    5 com.apple.CoreFoundation 0x95e571f7 CFReadStreamSignalEvent + 39
    6 com.apple.CFNetwork 0x965a10e1 httpRdFilterStreamCallBack + 325
    7 com.apple.CoreFoundation 0x95e55629 _CFStreamSignalEventSynch + 137
    8 com.apple.CoreFoundation 0x95e571f7 CFReadStreamSignalEvent + 39
    9 com.apple.CFNetwork 0x9658ce0a _SocketCallBack + 1632
    10 com.apple.CoreFoundation 0x95e4c960 __CFSocketDoCallback + 640
    11 com.apple.CoreFoundation 0x95e4df95 __CFSocketPerformV0 + 133
    12 com.apple.CoreFoundation 0x95e4364e CFRunLoopRunSpecific + 3166
    13 com.apple.CoreFoundation 0x95e43d38 CFRunLoopRunInMode + 88
    14 com.apple.Foundation 0x91a94560 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    15 com.apple.Foundation 0x91a3104d -[NSThread main] + 45
    16 com.apple.Foundation 0x91a30bf4 _NSThread__main_ + 308
    17 libSystem.B.dylib 0x93bed075 pthreadstart + 321
    18 libSystem.B.dylib 0x93becf32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x93bbc8e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93bc40dc mach_msg + 72
    2 com.apple.CoreFoundation 0x95e3dbd4 CFRunLoopWakeUp + 132
    3 com.apple.CoreFoundation 0x95e4cabe __CFSocketHandleRead + 190
    4 com.apple.CoreFoundation 0x95e4e647 __CFSocketManager + 935
    5 libSystem.B.dylib 0x93bed075 pthreadstart + 321
    6 libSystem.B.dylib 0x93becf32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x93bbc8e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93bc40dc mach_msg + 72
    2 com.apple.CoreFoundation 0x95e430fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x95e43d38 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x965dcd45 _KeychainThread + 230
    5 libSystem.B.dylib 0x93bed075 pthreadstart + 321
    6 libSystem.B.dylib 0x93becf32 thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x95e455ca ecx: 0x1570b1e4 edx: 0x03014180
    edi: 0x1571c000 esi: 0x2f2f0004 ebp: 0xb01c7be8 esp: 0xb01c7bd0
    ss: 0x0000001f efl: 0x00010246 eip: 0x95e455e4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x2f2f0009
    Binary Images:
    0x1000 - 0x12efef com.apple.Safari 3.0.4 (5523.10.6) <53d219fd878088543fd2e1af460bed18> /Applications/Safari.app/Contents/MacOS/Safari
    0x176000 - 0x184ff8 SyndicationUI ??? (???) <8adc35e1eb5001dead3c18ee25f2e8db> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x300000 - 0x3e6ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x155d7000 - 0x155dcff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x90060ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90061000 - 0x90117fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90156000 - 0x9015efff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9015f000 - 0x9016efff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x901a4000 - 0x9026ffff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90270000 - 0x90322ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x90323000 - 0x90323ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90324000 - 0x90331fe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90332000 - 0x9038eff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9038f000 - 0x9038fffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90390000 - 0x90390ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90391000 - 0x90727ff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90728000 - 0x90dbffef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90dc0000 - 0x90dd4ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90dd5000 - 0x90e2fff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90e61000 - 0x90e68fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x90e72000 - 0x90f56ffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90f57000 - 0x91315fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91316000 - 0x9134cfef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x91579000 - 0x9157efff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9157f000 - 0x91595fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <c7569b68e54114da815e9c55299fe3a4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91596000 - 0x91615ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91616000 - 0x91a26fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91a27000 - 0x91ca0fe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91ca1000 - 0x91d33ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91e8b000 - 0x91e8efff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91e8f000 - 0x91e9ffff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91ea0000 - 0x91edffef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ee0000 - 0x91eeeffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x920f9000 - 0x92104fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92105000 - 0x92179fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9217a000 - 0x921f6feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92217000 - 0x9234fff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x92350000 - 0x92350ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92351000 - 0x9236cffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9236d000 - 0x92434ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92452000 - 0x92452ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92453000 - 0x92459fff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9245a000 - 0x92760fff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92761000 - 0x9277ffff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x92780000 - 0x92827fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92b1d000 - 0x92b1dffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92b1e000 - 0x92b1efff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x939a1000 - 0x939acff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x939ad000 - 0x939adffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x939ae000 - 0x93a57fff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93a58000 - 0x93adfff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x93ae0000 - 0x93b07fff libcups.2.dylib ??? (???) <5521498e8902ddd0b15cfaa7db384e29> /usr/lib/libcups.2.dylib
    0x93b08000 - 0x93b26ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93b78000 - 0x93b84ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93b85000 - 0x93bbbfff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93bbc000 - 0x93d16fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x93d17000 - 0x93daafff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93dab000 - 0x93dadfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93e1d000 - 0x93e24ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93e92000 - 0x93eb6feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x93eb7000 - 0x93ec1feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93ec2000 - 0x93ed1ffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93eee000 - 0x94033ff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94034000 - 0x9407efe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9408b000 - 0x940cdfef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x940ce000 - 0x9411eff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9411f000 - 0x94147ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94190000 - 0x94240fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9424e000 - 0x9428bff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9429b000 - 0x9429dfff com.apple.CrashReporterSupport 10.5.0 (156) <3088b785b10d03504ed02f3fee5d3aab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9429e000 - 0x94a98fef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94a99000 - 0x94ac6feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94ac7000 - 0x94ac9ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94aca000 - 0x94ae0fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94ae1000 - 0x94b10fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94b11000 - 0x94b12fef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94b13000 - 0x94c91fff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94d02000 - 0x94dbdfe3 com.apple.WebKit 5523.10.6 (5523.10.6) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e0c000 - 0x94eedff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x94eee000 - 0x950b7fef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x950d7000 - 0x951fbfe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95241000 - 0x95286fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95287000 - 0x952b1fef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x955dc000 - 0x956bbfff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x956bc000 - 0x95736ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95817000 - 0x95818ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x95819000 - 0x9591afff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9591b000 - 0x959a7ff7 com.apple.LaunchServices 286 (286) <72b15e7a01e42d510f0339e90113d5d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x959a8000 - 0x95c81fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95c82000 - 0x95cb4fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95cb5000 - 0x95cefff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95d52000 - 0x95d6afff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95d6b000 - 0x95dd0ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95dd1000 - 0x95f03fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95f04000 - 0x9641afff com.apple.WebCore 5523.10.6 (5523.10.6) <9e1a5e022ebf8134c175de5f91c63bee> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9641b000 - 0x96474fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96514000 - 0x96538fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x96539000 - 0x9657afe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9657c000 - 0x96583ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x96584000 - 0x965fbfe3 com.apple.CFNetwork 220 (221) <972a41911805859205b057a6f5b91e8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x965fc000 - 0x9660cffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9660d000 - 0x966bcfff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x966e1000 - 0x9671affe com.apple.securityfoundation 3.0 (32768) <1e9885d63ced51f81bc1f39af624637d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9671b000 - 0x96724fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96725000 - 0x9672afff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9672b000 - 0x9674affa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96811000 - 0x96811ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96812000 - 0x96816fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96817000 - 0x968a1fff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x968a2000 - 0x96d6effe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Hoping someone can help. Just recently, maybe a week, Firefox has been crashing every few minutes into being online. How can I stop this from happening? I'm using IE right now and hate it. Help!

    Add-ons: {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}:1.2.2,{3112ca9c-de6d-4884-a869-9855de68056c}:7.1.20110512W,{CAFEEFAC-0016-0000-0017-ABCDEFFEDCBA}:6.0.17,{03B08592-E5B4-45ff-A0BE-C1D975458688}:0.6.0.8,{a0d7ccb3-214d-498b-b4aa-0e8fda9a7bf7}:20100908,{CAFEEFAC-0016-0000-0025-ABCDEFFEDCBA}:6.0.25,{4ED1F68A-5463-4931-9384-8FFF5ED91D92}:3.4.0,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.6.8
    BuildID: 20100722155716
    CrashTime: 1318829294
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1280028266
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 2517
    StartupTime: 1318827564
    Theme: classic/1.0
    Throttleable: 1
    Vendor: Mozilla
    Version: 3.6.8
    This report also contains technical information about the state of the application when it crashed.

    Maybe you are using Firefox 3.6..can you please upgrade it to 7
    * getfirefox.com

Maybe you are looking for

  • Can someone please help me figure out what's wrong with my phone???

    So ive basically just deleted everything off my phone. i have 240 pictures and 2 short videos. my phone keeps displaying storage almost full when i do have crap on there!! my phone says i have 4.6 available space on icloud but my phone wont let me us

  • Display Error messages in spool

    Hi Experts, when a job is submitted  a spool will be created and the output of that report will be automatically stored in the spool. i donot want the output to be displayed only the erroe messages of the report should be displayed. please help me ou

  • Report validation

    hi guys, need ur help. i have a selection screen with the fields material (select-option), plant(parameter) and inspection type(parameter). Now i want to validate the material according to the palnt and display all the material that do not belong to

  • Sales Person to equal current user

    Hi, I want to make a public list so that when that people can access leads that have themselves in the Sales Person field only and not in either or owner / sales person. How do I filter the list so that it will show the current user as opposed to mak

  • Installing flash media live encoder on linux

    I've just downloaded FM live encoder on my CentOS 6.2 server, and there doesn't seem to be a way of installing it ! All i got was 3 files, i.e. "installSAA" "libconnect.so" "users" i have tried running ./installSAA but :-( it doesnt seem to install i