Java.exe crash upon O9iAS startup

When OracleASHome102HTTPServer starts I get a Win2000 access exception c0000005 on java.exe. Little DrWatson window pops up... O9i logs Logs show nothing. Only drwatson shows problem info, assembler dump, ets...
Anyone know what's wrong? I've got O9iAS 1.0.2.0, Win2000SP1, Pentium 4, 1.4GHz, 512Mg RAM?
I know there is a problem with the jre JIT compiler on the P4. Got around this during O9iAS installation by using the '-nojit' parameter on all invocations of jrew.exe and jre.exe. Is my java.exe problem still with the P4 chip?
Regards,
null

Jim,
This question is best suited to the Oracle9i Application Server forum.
Thanks

Similar Messages

  • Java.exe crash with MS Application Verifier

    Dear Java users,
    I developed a Java application to be deployed on windows server 2003. But when run the application with Application Verifier to check for runtime resource handling, the java.exe crashed with messsage: java.exe has encountered a problem and needs to close. We are sorry for the inconvenience.
    I tried several times with JRE1.4 and 1.5 but get the same result.
    Any advice should be appreciated.
    Thanks.
    Message was edited by:
    khanhtran

    Jim,
    This question is best suited to the Oracle9i Application Server forum.
    Thanks

  • Java.exe crashing with Dr Watson access violation at address 500bf974

    We have been sucessfully runing an application delveloped with JDK 1.2.2 on a Pentium III machine with Windows NT 4 SP5 (384Mb RAM). I have replaced the Pentium III machine with a pentium 4 with 1Gb RAM (still running NT4 SP5). In fact, I simply took the HDD out of the PIII and installed it in the P4.
    All applications work correctly (Sybiz Vision, MS Office 97 suite), however, when I go to run the java application is crashes and a Dr Watson Access Violation in java.exe error is generated.
    I have:
    1. Reinstalled the JDK 1.2.2.
    2. Confirmed that all hardware drivers (new NIC, Video and Sound Card) were updated with the appropriate versions from the hardware suppliers web pages.
    3. Read thru previous posts on this site (and others) for similar errors, but have only been able to find similar questions.
    4. Lowered the video card display colours to 256 rather than 65,536.
    None of the above have made any difference.
    I hope this question will prompt the java/Dr Watson gurus out there to help me resolve this frustrating problem.
    Thanks in anticipation.
    Greg

    Consider getting 1.2.2_014, or whatever is the latest version of 1.2.2. I think there were some issues with Pentium IV processors which were fixed in one of the later incarnations of the JDK.
    You can get the latest version of 1.2.2 from the following url:
    http://java.sun.com/products/jdk/1.2/download.html

  • Java.exe crashes with windows access exception

    When OracleASHome102HTTPServer starts I get a Win2000 access exception c0000005 on java.exe. Little DrWatson window pops up... O9i logs Logs show nothing. Only drwatson shows problem info, assembler dump, ets...
    Anyone know what's wrong? I've got O9iAS 1.0.2.0, Win2000SP1, Pentium 4, 1.4GHz, 512Mg RAM?
    I know there is a problem with the jre JIT compiler on the P4. Got around this during O9iAS installation by using the '-nojit' parameter on all invocations of jrew.exe and jre.exe. Is my java.exe problem still with the P4 chip?
    Regards,
    Jim Anderson

    solution
    I have solved the problem,and the method as follows:
    1.look for the dll file:symcjit.dll(the path is %oracle_home%\Apache\jdk\jre\bin) ,
    2.change the extension to .old
    3.restart the httpServer
    4.ok
    try it,and hope you good luck

  • Java.exe crash on P4 machine

    Is anyone aware of issues with running jdk1.2.2_008 or later on Pentium 4 machines?
    I installed a app server on Windows 2000 on my home machine and when I try and start it, a Windows popup window appears saying java.exe has generated errors. Where should I look for a more detailed error message?
    The software runs fine on my laptop running 2000 and the only major difference I can think of is the Pentium 4 architecture.
    Any help appreciated!

    Have you found a solution to this problem? I am running java applications on numerous IBM desktops (not P4's)running Windows 2000, but have tried installing JDK1.2.2_006 on a Dell desktop with P4 processor and java.exe aborts with exception nr c0000005 (access violation). I have been cussing Dell, but is it the P4?

  • FCP 7 Crashes upon app startup

    I'm in the middle of a project and at some point FCP7 decided it didn't want to get past the "preparing video for display" w/o crashing. I can't change anything within the project in order to keep it from crashing...like deleting assets, etc. HELP!

    Have you tried trashing the preferences yet? You can use the excellent (and free) app below to backup trash and restore saved preferences ... its a highly recommended tool for your FCP toolbox.
    http://www.digitalrebellion.com/pref_man.htm

  • My Applet crashes java.exe to crash

    Ok, I'm not sure why, but on some computers my applet is making java.exe crash. When i attach a debugger to java.exe when it crashes I see a "Access Violation Error". The oddest part is that while one computer will crash and another identical computer with the exact same setup wont. The crash happens the moment the applet starts.
    Now I've done just about everything i could to figure this out. I've installed uninstalled and reinstalled java. I've run ram, hard drive, cpu, ect tests all reporting no problem. I've disabled anti-virus and did the uninstall and reinstall again. I've installed older versions of the java. I've resigned my jar file, created a new key and then resigned. Practically the only thing i have not done and is not a viable solution is reformat/replace the computers. So I'm left thinking it might be something in the applet that is causing it.
    It could be in the applet parameters but i doubt it.
    Pram fp is about 5,000 characters long
    Pram VerfyType is about 1 character long
    Pram Arg1 is a max of 11 characters long
    Pram Arg2 is a max of 11 characters long
    This applet is meant to interact with a program on the computer that connects to a variety of fingerprint scanners that we use and passes information form the internal site to the scanner and vice versa. So it just starts a loop back socket. For the loop back socket, i have tired 127.0.0.1 and localhost which still yield the same result.
    Here is the applet. It's very simple.
    import javax.imageio.ImageIO;
    import javax.swing.*;
    import java.awt.Image;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.MalformedURLException;
    import java.net.Socket;
    import java.net.URL;
    import java.net.UnknownHostException;
    import java.security.AccessController;
    import java.security.PrivilegedAction;
    public class Verify extends JApplet {
         private static final long serialVersionUID = 908206045464466336L;
         public JLabel jLabel1;
        public jPanel jPanel1;
        public String Template = "";
        public String VerfyType = "";
        public String Arg1 = "";
        public String Arg2 = "";
        public Thread t;
        Socket socket = null;
        public void stop()
             jPanel1.threadRun = false;
             if (socket != null)
                  try {
                        socket.close();
                   } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
         public void init()
            //Execute a job on the event-dispatching thread:
            try {
                javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                    public void run() {
                         Template = getParameter("fp").trim();
                         VerfyType = getParameter("VerfyType").trim();
                         Arg1 = getParameter("Arg1").trim();
                         Arg2 = getParameter("Arg2").trim();
                         initComponents();
            } catch (Exception e) {
                System.err.println("getParameter didn't successfully complete");
            StartVerify();
        private void initComponents() {
              jPanel1 = new jPanel();
              jLabel1 = new JLabel();
              jPanel1.setPreferredSize(new java.awt.Dimension(66, 66));
              jPanel1.setBackground(new java.awt.Color(255, 255, 255));
              jLabel1.setText("Initializing Please Wait.");
            setBackground(new java.awt.Color(255, 255, 255));
            javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 66, Short.MAX_VALUE)
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 66, Short.MAX_VALUE)
            jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 536, Short.MAX_VALUE))
                        .addGroup(layout.createSequentialGroup()
                            .addGap(224, 224, 224)
                            .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jLabel1)
                    .addContainerGap(116, Short.MAX_VALUE))
        public void StartVerify()
             t = new Thread() {
              public void run()
                  AccessController.doPrivileged(new PrivilegedAction() {
                  public Object run()
                            PrintWriter out = null;
                            BufferedReader in = null;
                            try {
                                socket = new Socket("localhost", 4001);
                                out = new PrintWriter(socket.getOutputStream(), true);
                                in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
                            } catch (UnknownHostException e) {
                                 jLabel1.setText("Unkown Host Error.");
                                return null;
                            } catch (IOException e) {
                                 jLabel1.setText("Unable to get communication streams..");
                                return null;
                            String reponse = "";
                            try {
                                reponse = in.readLine();
                                if (reponse.equalsIgnoreCase("cmd"))
                                    out.write("v\n");
                                    out.flush();
                                    reponse = in.readLine();
                                    if (reponse.equalsIgnoreCase("send"))
                                        out.write(Template+"\n");
                                        out.flush();
                                        reponse = in.readLine();
                                        if (reponse.equalsIgnoreCase("finger"))
                                             jLabel1.setText("Please Have the client place their finger on the scanner.");
                                             while (true)
                                                  reponse = in.readLine();
                                                  if (!reponse.equalsIgnoreCase("pulse"))
                                                       break;
                                            if (reponse.equalsIgnoreCase("good"))
                                                try {
                                                     DoRedirect();
                                                    socket.close();
                                                } catch (IOException ex) {
                                            else if (reponse.equalsIgnoreCase("bad"))
                                                           int _return = LoopTellCanceled(socket, out, in);
                                            else
                                                 jLabel1.setText("Unexpected response from finger print server.");
                                        else
                                             jLabel1.setText("Unexpected response from finger print server.");
                                    else
                                         jLabel1.setText("Unexpected response from finger print server.");
                                else
                                     jLabel1.setText("Unexpected response from finger print server.");
                            catch (IOException ex)
                                 jLabel1.setText("We lost connection to the finger print reader.");
                                 System.err.println(ex);
                            try {
                                out.close();
                                in.close();
                                socket.close();
                            } catch (IOException e) {
                                System.err.println("Couldn't get I/O for the connection");
                                return null;
                            return null;
            t.start();
        private int LoopTellCanceled(Socket socket, PrintWriter out, BufferedReader in)
             int res = JOptionPane.showConfirmDialog(null, "Incorrect Finger Print. Would you like to try again?", "Finger Print was Bad", JOptionPane.YES_NO_OPTION);
             while (res == JOptionPane.YES_OPTION)
                String reponse = "";
                try {
                    out.write("v\n");
                    out.flush();
                    reponse = in.readLine();
                    if (reponse.equalsIgnoreCase("send"))
                        out.write(Template+"\n");
                        out.flush();
                        reponse = in.readLine();
                        if (reponse.equalsIgnoreCase("finger"))
                             jLabel1.setText("Please Have the client place their finger on the scanner.");
                             while (true)
                                  reponse = in.readLine();
                                  if (!reponse.equalsIgnoreCase("pulse"))
                                       break;
                            if (reponse.equalsIgnoreCase("good"))
                                try {
                                     DoRedirect();
                                    socket.close();
                                } catch (IOException ex) {
                            else
                                 res = JOptionPane.showConfirmDialog(null, "Incorrect Finger Print. Would you like to try again?", "Finger Print was Bad", JOptionPane.YES_NO_OPTION);
                } catch (IOException ex) {
                     System.err.println(ex);
             return res;
        public void DoRedirect()
              try
                   if (Arg1.equalsIgnoreCase(""))
                        getAppletContext().showDocument(new URL("javascript: fprintVerified("+VerfyType+");"));
                   else
                        if (Arg2.equalsIgnoreCase(""))
                             getAppletContext().showDocument(new URL("javascript: fprintVerified("+VerfyType+", "+Arg1+");"));
                        else
                             getAppletContext().showDocument(new URL("javascript: fprintVerified("+VerfyType+", "+Arg1+", "+Arg2+");"));
              catch (MalformedURLException ex)
                   ex.printStackTrace();
    }Edited by: Pyromanci on Mar 1, 2011 7:58 AM

    What does your error console report? - Which one? Browser, PC, ect
    How about your java console say? - I have no clue what it could be saying since java.exe crashes the moment the applet starts the console is no longer accessible.
    What browser and version? - Firefox v3.6.13
    Have you tried a different one? - Yes Ie 6,7, and 8. Though the site the applet runs form was designed specifically for firefox (internal site)
    Have you tried Appletviewer? - Yes applet runs as intended.
    Did you give the Applet permission? I know you said you signed it - did it all go right? - Yes. Gave me the usual response of will expire in x months

  • Upgrading to JDK 1.3 supposedly fix Java.exe (Dr.watson errors)

    Has anyone ran into the problems with Dr. Watson popping up when Java.exe
    crashes?
    Rumor has it that upgrading the JDK to 1.3 solves the problem.
    This is a pretty general question, but does anyone have any ideas?
    Sincerly,
    Mike Kendzierski

    Sounds like a find 'n' replace operation in your source code to me....
    Replace all your references of Currency with your fully qualified pathname.
    JavaLint (freeware) is a handy tool to perform strict checking of your source code. It finds unused variables & import statements, and complains if you use wildcard import statements, as you have done.
    Might be worth including in your version control system "checking in process", or code review process in the future.
    regards,
    Owen

  • Javaw.exe crashing

    We have a simple JNI call. We suspect that after the jni call returns something goes wrong and we get the windows XP crash dialog (telling us javaw.exe has crashed). Since we load and unload the DLL every time, we can keep using the program for a while but after that we get another message telling us some address cannot be read.
    In the C code we have a printf just before we return 0 in the native method (the one defined in the .h file autogenerated .h with javah). So our native code returns correctly before hanging. Where is the crash happening?
    The JVM does not crash, there is no error report. I'm clueless.

    The only change is that java.exe crashes instead of javaw.exe.
    I'm changing the C compiler. Maybe something changes if I use GCC.
    The weirdest part is The java application and the native DLL (which is loaded and unloaded every time it is used through a wrapper DLL) can be used many more times after the first crash message and before windows it finally sais there was an error reading some memory address.
    Something even weirder, if I use the app and close it normally before it crashes, when I start it again, it crashes at the first attempt to use it.

  • Itunes crashes upon startup while going through 'Determining Gapless Playback' step.  Here is crash report:

    I was in process of adding 10,000 songs to Itunes, it added the songs and during the Determining Gapless step, it made it through 9,600 of the 10,000 songs relatively quickly, but now crashes upon startup.   It doesnt' run long enough to see what song/s are causing the problem.  If you have any ideas would really appreciate it.
    Process:         iTunes [220]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.6 (10.6)
    Build Info:      iTunes-10604001~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [147]
    Date/Time:       2012-03-21 11:41:14.883 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          188747 sec
    Crashes Since Last Report:           33
    Per-App Interval Since Last Report:  128732 sec
    Per-App Crashes Since Last Report:   28
    Anonymous UUID:                      07AA2E6C-5687-4DE4-81C3-0EB49FD3A8F6
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  16
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eaa1f1 CFRunLoopRunInMode + 97
    5   com.apple.HIToolbox                     0x99278e04 RunCurrentEventLoopInMode + 392
    6   com.apple.HIToolbox                     0x99278bb9 ReceiveNextEventCommon + 354
    7   com.apple.HIToolbox                     0x99278a3e BlockUntilNextEventMatchingListInMode + 81
    8   com.apple.AppKit                        0x95f6b595 _DPSNextEvent + 847
    9   com.apple.AppKit                        0x95f6add6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    10  com.apple.AppKit                        0x95f2d1f3 -[NSApplication run] + 821
    11  com.apple.iTunes                        0x0000437a 0x1000 + 13178
    12  com.apple.iTunes                        0x000041c1 0x1000 + 12737
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x9147f382 kevent + 10
    1   libSystem.B.dylib                       0x9147fa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x9147ef59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x9147ecfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x9147e781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x9147e5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x9147e412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x9147e9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x9147e5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x91486aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9148675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x914883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                        0x0000ab43 0x1000 + 39747
    4   com.apple.iTunes                        0x00020fef 0x1000 + 131055
    5   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    6   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    7   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0003d9be 0x1000 + 248254
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x9147e412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x9147e9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x9147e5c6 start_wqthread + 30
    Thread 7:
    0   libSystem.B.dylib                       0x91486aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9148675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x914883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                        0x0000ab43 0x1000 + 39747
    4   com.apple.iTunes                        0x0000aa5a 0x1000 + 39514
    5   com.apple.iTunes                        0x0000a8dd 0x1000 + 39133
    6   com.apple.iTunes                        0x00a33073 0x1000 + 10690675
    7   com.apple.iTunes                        0x00a330a1 0x1000 + 10690721
    8   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    9   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    10  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.iTunes                        0x001405e9 0x1000 + 1308137
    3   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    4   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x914d131e accept$UNIX2003 + 10
    1   com.apple.iTunes                        0x0089503f 0x1000 + 8994879
    2   com.apple.iTunes                        0x0087aa99 0x1000 + 8886937
    3   com.apple.iTunes                        0x0087ac2f 0x1000 + 8887343
    4   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    5   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    6   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x914d131e accept$UNIX2003 + 10
    1   com.apple.iTunes                        0x0089503f 0x1000 + 8994879
    2   com.apple.iTunes                        0x0087aa99 0x1000 + 8886937
    3   com.apple.iTunes                        0x0087ac2f 0x1000 + 8887343
    4   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    5   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    6   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 11:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x91477ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x99eeac53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    3   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.iTunes                        0x0014fce1 0x1000 + 1371361
    3   com.apple.iTunes                        0x00053769 0x1000 + 337769
    4   com.apple.iTunes                        0x0015084e 0x1000 + 1374286
    5   com.apple.iTunes                        0x008d265e 0x1000 + 9246302
    6   com.apple.iTunes                        0x00154c17 0x1000 + 1391639
    7   com.apple.iTunes                        0x002a97d5 0x1000 + 2787285
    8   com.apple.iTunes                        0x0014061d 0x1000 + 1308189
    9   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    10  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x91458b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x914866e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x914b55a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.iTunes                        0x0005112b 0x1000 + 327979
    4   com.apple.iTunes                        0x00050fbf 0x1000 + 327615
    5   com.apple.iTunes                        0x00050f5b 0x1000 + 327515
    6   com.apple.iTunes                        0x00050dae 0x1000 + 327086
    7   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    8   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    9   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 16 Crashed:
    0   com.apple.iTunes                        0x002b34d0 0x1000 + 2827472
    1   com.apple.iTunes                        0x007275de 0x1000 + 7497182
    2   com.apple.iTunes                        0x0072a54e 0x1000 + 7509326
    3   com.apple.iTunes                        0x0002b338 0x1000 + 172856
    4   com.apple.iTunes                        0x000280f6 0x1000 + 159990
    5   com.apple.iTunes                        0x007d8e82 0x1000 + 8224386
    6   com.apple.iTunes                        0x007d35fb 0x1000 + 8201723
    7   com.apple.iTunes                        0x002a8512 0x1000 + 2782482
    8   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    9   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    10  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x91486aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9148675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x914883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                        0x00051103 0x1000 + 327939
    4   com.apple.iTunes                        0x00050fbf 0x1000 + 327615
    5   com.apple.iTunes                        0x00050f5b 0x1000 + 327515
    6   com.apple.iTunes                        0x00050dae 0x1000 + 327086
    7   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    8   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    9   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.iTunes                        0x0014fce1 0x1000 + 1371361
    3   com.apple.iTunes                        0x00053769 0x1000 + 337769
    4   com.apple.iTunes                        0x0015084e 0x1000 + 1374286
    5   com.apple.iTunes                        0x008d265e 0x1000 + 9246302
    6   com.apple.iTunes                        0x00154c17 0x1000 + 1391639
    7   com.apple.iTunes                        0x00750249 0x1000 + 7664201
    8   com.apple.iTunes                        0x00756e91 0x1000 + 7691921
    9   com.apple.iTunes                        0x00759636 0x1000 + 7702070
    10  com.apple.iTunes                        0x001502f1 0x1000 + 1372913
    11  com.apple.iTunes                        0x0014fd1c 0x1000 + 1371420
    12  com.apple.iTunes                        0x0014061d 0x1000 + 1308189
    13  libSystem.B.dylib                       0x91486259 _pthread_start + 345
    14  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x9148782e pread$UNIX2003 + 10
    1   ...ple.CoreServices.CarbonCore          0x9a521b30 BasicRead(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 952
    2   ...ple.CoreServices.CarbonCore          0x9a52173f PBReadForkSync + 117
    3   ...ple.CoreServices.CarbonCore          0x9a5216b6 FSReadFork + 59
    4   com.apple.iTunes                        0x0000bf28 0x1000 + 44840
    5   com.apple.iTunes                        0x0042eb50 0x1000 + 4381520
    6   com.apple.iTunes                        0x00050e3f 0x1000 + 327231
    7   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    8   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    9   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x9147f382 kevent + 10
    1   libSystem.B.dylib                       0x91492a93 _mdns_query_mDNSResponder + 1225
    2   libSystem.B.dylib                       0x914919a8 _mdns_search + 1120
    3   libSystem.B.dylib                       0x91490dd8 _mdns_addrinfo + 740
    4   libSystem.B.dylib                       0x9148fd5a search_addrinfo + 132
    5   libSystem.B.dylib                       0x9148f796 si_addrinfo + 1413
    6   libSystem.B.dylib                       0x914ccf54 si_async_launchpad + 105
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 16 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000480  ecx: 0x19b6bc00  edx: 0x00000000
      edi: 0x00000000  esi: 0x0351f200  ebp: 0xb081d328  esp: 0xb081d310
       ss: 0x0000001f  efl: 0x00010246  eip: 0x002b34d0   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -  0x1128fc3  com.apple.iTunes 10.6 (10.6) <17B9741A-36B2-68AA-02F0-EDCECADBB72C> /Applications/iTunes.app/Contents/MacOS/iTunes
    0x137c000 -  0x13f7fef  com.apple.iTunes.iPodUpdater 10.4 (10.4) <055BCDEA-3996-AC1B-EEF1-E158DF8AA5E4> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x143c000 -  0x1461ff7  com.apple.avfoundationcf 2.0 (60.1) <2D4DFC71-1195-4549-658B-7295F37AAEC3> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
    0x1489000 -  0x148eff7  com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x1494000 -  0x1770fe7 +libgnsdk_dsp.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <E468D2B0-295A-D520-C02A-5383413B5DDE> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
    0x1792000 -  0x17c5fe7 +libgnsdk_musicid.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <F6487E48-3B93-7C89-7734-85600749661D> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
    0x17d2000 -  0x189cfe7 +libgnsdk_sdkmanager.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <70001144-C144-B6D7-3CA9-836ACD97CE9F> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
    0x18b3000 -  0x18f5fe7 +libgnsdk_submit.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <AB1597CE-FBAC-6C05-330E-879EDD036C94> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
    0x18fa000 -  0x193fff7  com.apple.CoreMedia.AVCFSupport 1.0 (705.24.4) <FAEC8CE1-BF17-B566-38E3-98E97C2403CE> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/CoreMedia.fr amework/Versions/A/CoreMedia
    0x195e000 -  0x1cc9ff3  com.apple.MediaToolbox.AVCFSupport 1.0 (705.24.4) <B801EFCB-07D9-2A94-9E7A-530AD7E892AA> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/MediaToolbox .framework/Versions/A/MediaToolbox
    0x1d2e000 -  0x206efeb  com.apple.VideoToolbox.AVCFSupport 1.0 (705.24.4) <A4DBF709-3753-2F20-B20D-1D5DB80F3997> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/VideoToolbox .framework/Versions/A/VideoToolbox
    0x27dd000 -  0x27deff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1465b000 - 0x14a2cfe7  com.apple.CoreFP 2.1.34 (2.1.34) <F5C09BB7-9948-4AC4-1A62-BDC7BCD7C474> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x155d9000 - 0x16729fe7  com.apple.CoreFP1 1.14.34 (1.14.34) <8EF6D67A-01C5-DCA3-16CC-DD386E54DDCB> /System/Library/PrivateFrameworks/CoreFP1.framework/CoreFP1
    0x16ff5000 - 0x16ff9ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x171fe000 - 0x17204ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17209000 - 0x17295ff7  com.apple.mobiledevice 507.6 (507.6) <F7DDA28B-630F-862A-11E2-6386027EB81C> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x172de000 - 0x17304fff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
    0x1755c000 - 0x17611fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x17657000 - 0x1783dfef  com.apple.audio.codecs.Components 2.0.4 (2.0.4) <5D32DF8D-C577-EB6B-72FA-1ABDF1CED762> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x199ff000 - 0x19a04ff7  com.apple.QuartzComposer.iTunesPlugIn 1.2 (16) <8511A037-AFDE-5D1A-67DA-1B4837432D85> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <412DBD1B-E9B5-E67C-99E4-820BF38239AC> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x900e0fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x900e1000 - 0x90121ff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90122000 - 0x9012aff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9012b000 - 0x9026efef  com.apple.QTKit 7.7 (1789) <4D3AA05F-D4D3-0D43-99D7-F26E4640BEE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9026f000 - 0x90685ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90686000 - 0x906a1ff7  libPng.dylib ??? (???) <05445692-8AF7-CAB6-EBF5-1F7B3A906CCB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x906a2000 - 0x90d1dff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90d1e000 - 0x90ea0fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x90ea1000 - 0x90eb1ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90ef3000 - 0x911edfef  com.apple.QuickTime 7.6.6 (1789) <38255AA2-8087-5AE0-CA4B-1DDE611540B1> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x911ee000 - 0x91237fe7  libTIFF.dylib ??? (???) <4A3EF156-D4FE-95E2-FA05-7BD76FF27CEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9123d000 - 0x91248ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91297000 - 0x912a4ff7  com.apple.AppleFSCompression 24.4 (1.0) <6D696284-020B-7F5C-226D-B820F0E981D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x912a5000 - 0x91313ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x91366000 - 0x91413fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x91414000 - 0x91457ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91458000 - 0x915ffff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9160c000 - 0x91837ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91857000 - 0x91879fef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91ad0000 - 0x91ae5fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91b08000 - 0x91b0bff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91b0c000 - 0x91b0eff7  libRadiance.dylib ??? (???) <41E5C5F4-A4C6-0416-08D0-422C88088558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91b0f000 - 0x91b0fff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c6c000 - 0x929e3fe7  com.apple.WebCore 6534.54 (6534.54.17) <3E6CBF05-E91D-1997-E6BC-B068B5F74F5E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x929e4000 - 0x92a22ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92a23000 - 0x92a23ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92a24000 - 0x92a8efe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92a8f000 - 0x92a90ff7  com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92b8d000 - 0x92c49fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92d2d000 - 0x92f9efef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f9f000 - 0x92fc3ff7  libJPEG.dylib ??? (???) <7EBC924F-B2EE-68B0-4EA0-F99EF54F0306> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92fc4000 - 0x92fcfff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92fd0000 - 0x93013ff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93014000 - 0x930acfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x930b8000 - 0x930c1ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x930c2000 - 0x930d0fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x930d1000 - 0x9317dfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93186000 - 0x93218fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93219000 - 0x93293fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93294000 - 0x9329bff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9329c000 - 0x9329ffe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x932a0000 - 0x932a0ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9347b000 - 0x93523ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93525000 - 0x93525ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x935c7000 - 0x93642fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93643000 - 0x93657fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x93709000 - 0x93750ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93751000 - 0x93913feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <051752C3-8C25-CF4A-9BFB-C7B6D20E58E8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93917000 - 0x93950fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93954000 - 0x93984ff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x93985000 - 0x939a1fe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x939a2000 - 0x939adff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x939ae000 - 0x93a79fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93a7a000 - 0x93b15fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94a93000 - 0x94a99fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94b5b000 - 0x94c5dfef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x94ca7000 - 0x950dcff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x950dd000 - 0x950e1ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x950e2000 - 0x95162feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x951d2000 - 0x95280ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95281000 - 0x9528efe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x952a2000 - 0x952e3ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95362000 - 0x95374ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95375000 - 0x9537cff7  com.apple.aps.framework 1.2 (1.2) <16A7DB74-F951-D8DB-35D0-5E5673529AB0> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x953be000 - 0x95440ffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95441000 - 0x95497ff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95498000 - 0x954a5ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x954a6000 - 0x955b2fe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x955b3000 - 0x95610ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95619000 - 0x9561aff7  libScreenReader.dylib ??? (???) <E559E38F-FB36-C1C4-B915-D3A4E4354921> /usr/lib/libScreenReader.dylib
    0x95646000 - 0x95726fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9574a000 - 0x95787ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x957c1000 - 0x957e7ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x957e8000 - 0x957e8ff7  com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x957e9000 - 0x95841fe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95842000 - 0x95aeeffb  com.apple.JavaScriptCore 6534.54 (6534.54.15) <BF16B296-8BC4-28A6-335F-30FC96B50356> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95aef000 - 0x95af4ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95b22000 - 0x95bdbfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95c18000 - 0x95c19ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95c1a000 - 0x95c57ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95c58000 - 0x95c5efe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x95c5f000 - 0x95d39fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95df6000 - 0x95e07ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95e08000 - 0x95e55feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95e56000 - 0x95e57ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95e58000 - 0x95e78fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x95e79000 - 0x95e7dff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95e7e000 - 0x95e7eff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95e98000 - 0x95edcff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95f23000 - 0x96806ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96807000 - 0x96841fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x96eb9000 - 0x96efbff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96efc000 - 0x96f1dfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96f1e000 - 0x96f1eff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f1f000 - 0x96f47ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x96f48000 - 0x96f60ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9736f000 - 0x9740cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9740d000 - 0x97486ff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97487000 - 0x974aeff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x974af000 - 0x976b6feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x976b7000 - 0x97707ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97708000 - 0x97777ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97778000 - 0x97f67557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97f68000 - 0x97f68ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97f69000 - 0x97fcdffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97fce000 - 0x9810bfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9810c000 - 0x9855dfef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9855e000 - 0x98560ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x98673000 - 0x986c6ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x987c6000 - 0x987cdff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x987e7000 - 0x988e8fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x98913000 - 0x9894effb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9894f000 - 0x98a7cffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x98a91000 - 0x98a9dff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x98b13000 - 0x98b32ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98b33000 - 0x98feeff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x98fef000 - 0x99066ff3  com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x99244000 - 0x99568fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99569000 - 0x9974bfff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9974c000 - 0x9977fff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x998e3000 - 0x99a0bfe7  com.apple.WebKit 6534.54 (6534.54.16) <2FA1223C-F6E6-F5FA-7293-ADDDBA0DADCE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x99a3f000 - 0x99af7feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x99af8000 - 0x99e63ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99e6e000 - 0x99fe9fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99ff5000 - 0x99ff9ff7  libGIF.dylib ??? (???) <3B4E6D0B-89EB-251F-3693-5187254D5BE2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x99ffa000 - 0x9a004fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9a02c000 - 0x9a03cff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9a03d000 - 0x9a03dff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9a03e000 - 0x9a048ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9a049000 - 0x9a04cff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9a04d000 - 0x9a092ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9a093000 - 0x9a195fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x9a268000 - 0x9a2a0ff7  com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9a2a1000 - 0x9a507ff7  com.apple.security 6.1.2 (55002) <A476227B-409D-A457-7D4D-A631A0B4AFDB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9a508000 - 0x9a828ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9a829000 - 0x9a837ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9a863000 - 0x9a8a9ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9a8aa000 - 0x9a8dbff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9a8dc000 - 0x9a93dfe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9a93e000 - 0x9a971fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9a972000 - 0x9aaa0fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9aaa1000 - 0x9aafbfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9aafc000 - 0x9aaffffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9ab00000 - 0x9ab14ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9ab15000 - 0x9ab4fff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x9ab50000 - 0x9ab94fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x9136, 0x26200000 / 3
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x26230000 / 9
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0x26232000 / 13
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0x26210000 / 5
    USB Device: Plantronics Headset, 0x047f  (Plantronics, Inc.), 0x0ca1, 0x26211000 / 12
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x1003, 0x26214000 / 11
    USB Device: USB-PS/2 Optical Mouse, 0x046d  (Logitech Inc.), 0xc01b, 0x26212000 / 10
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x9137, 0x26240000 / 4
    USB Device: Apple LED Cinema Display, 0x05ac  (Apple Inc.), 0x9236, 0x26243000 / 8
    USB Device: Display iSight, 0x05ac  (Apple Inc.), 0x8508, 0x26242000 / 7
    USB Device: Display Audio, 0x05ac  (Apple Inc.), 0x2912, 0x26241000 / 6
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3

    I was in process of adding 10,000 songs to Itunes, it added the songs and during the Determining Gapless step, it made it through 9,600 of the 10,000 songs relatively quickly, but now crashes upon startup.   It doesnt' run long enough to see what song/s are causing the problem.  If you have any ideas would really appreciate it.
    Process:         iTunes [220]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.6 (10.6)
    Build Info:      iTunes-10604001~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [147]
    Date/Time:       2012-03-21 11:41:14.883 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          188747 sec
    Crashes Since Last Report:           33
    Per-App Interval Since Last Report:  128732 sec
    Per-App Crashes Since Last Report:   28
    Anonymous UUID:                      07AA2E6C-5687-4DE4-81C3-0EB49FD3A8F6
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  16
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eaa1f1 CFRunLoopRunInMode + 97
    5   com.apple.HIToolbox                     0x99278e04 RunCurrentEventLoopInMode + 392
    6   com.apple.HIToolbox                     0x99278bb9 ReceiveNextEventCommon + 354
    7   com.apple.HIToolbox                     0x99278a3e BlockUntilNextEventMatchingListInMode + 81
    8   com.apple.AppKit                        0x95f6b595 _DPSNextEvent + 847
    9   com.apple.AppKit                        0x95f6add6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    10  com.apple.AppKit                        0x95f2d1f3 -[NSApplication run] + 821
    11  com.apple.iTunes                        0x0000437a 0x1000 + 13178
    12  com.apple.iTunes                        0x000041c1 0x1000 + 12737
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x9147f382 kevent + 10
    1   libSystem.B.dylib                       0x9147fa9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x9147ef59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x9147ecfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x9147e781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x9147e5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x9147e412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x9147e9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x9147e5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x91486aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9148675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x914883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                        0x0000ab43 0x1000 + 39747
    4   com.apple.iTunes                        0x00020fef 0x1000 + 131055
    5   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    6   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    7   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0003d9be 0x1000 + 248254
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x9147e412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x9147e9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x9147e5c6 start_wqthread + 30
    Thread 7:
    0   libSystem.B.dylib                       0x91486aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9148675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x914883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                        0x0000ab43 0x1000 + 39747
    4   com.apple.iTunes                        0x0000aa5a 0x1000 + 39514
    5   com.apple.iTunes                        0x0000a8dd 0x1000 + 39133
    6   com.apple.iTunes                        0x00a33073 0x1000 + 10690675
    7   com.apple.iTunes                        0x00a330a1 0x1000 + 10690721
    8   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    9   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    10  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.iTunes                        0x001405e9 0x1000 + 1308137
    3   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    4   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x914d131e accept$UNIX2003 + 10
    1   com.apple.iTunes                        0x0089503f 0x1000 + 8994879
    2   com.apple.iTunes                        0x0087aa99 0x1000 + 8886937
    3   com.apple.iTunes                        0x0087ac2f 0x1000 + 8887343
    4   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    5   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    6   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x914d131e accept$UNIX2003 + 10
    1   com.apple.iTunes                        0x0089503f 0x1000 + 8994879
    2   com.apple.iTunes                        0x0087aa99 0x1000 + 8886937
    3   com.apple.iTunes                        0x0087ac2f 0x1000 + 8887343
    4   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    5   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    6   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 11:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x91477ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x99eeac53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    3   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.iTunes                        0x0014fce1 0x1000 + 1371361
    3   com.apple.iTunes                        0x00053769 0x1000 + 337769
    4   com.apple.iTunes                        0x0015084e 0x1000 + 1374286
    5   com.apple.iTunes                        0x008d265e 0x1000 + 9246302
    6   com.apple.iTunes                        0x00154c17 0x1000 + 1391639
    7   com.apple.iTunes                        0x002a97d5 0x1000 + 2787285
    8   com.apple.iTunes                        0x0014061d 0x1000 + 1308189
    9   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    10  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x91458b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x914866e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x914b55a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.iTunes                        0x0005112b 0x1000 + 327979
    4   com.apple.iTunes                        0x00050fbf 0x1000 + 327615
    5   com.apple.iTunes                        0x00050f5b 0x1000 + 327515
    6   com.apple.iTunes                        0x00050dae 0x1000 + 327086
    7   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    8   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    9   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 16 Crashed:
    0   com.apple.iTunes                        0x002b34d0 0x1000 + 2827472
    1   com.apple.iTunes                        0x007275de 0x1000 + 7497182
    2   com.apple.iTunes                        0x0072a54e 0x1000 + 7509326
    3   com.apple.iTunes                        0x0002b338 0x1000 + 172856
    4   com.apple.iTunes                        0x000280f6 0x1000 + 159990
    5   com.apple.iTunes                        0x007d8e82 0x1000 + 8224386
    6   com.apple.iTunes                        0x007d35fb 0x1000 + 8201723
    7   com.apple.iTunes                        0x002a8512 0x1000 + 2782482
    8   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    9   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    10  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x91486aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9148675e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x914883f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                        0x00051103 0x1000 + 327939
    4   com.apple.iTunes                        0x00050fbf 0x1000 + 327615
    5   com.apple.iTunes                        0x00050f5b 0x1000 + 327515
    6   com.apple.iTunes                        0x00050dae 0x1000 + 327086
    7   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    8   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    9   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.iTunes                        0x0014fce1 0x1000 + 1371361
    3   com.apple.iTunes                        0x00053769 0x1000 + 337769
    4   com.apple.iTunes                        0x0015084e 0x1000 + 1374286
    5   com.apple.iTunes                        0x008d265e 0x1000 + 9246302
    6   com.apple.iTunes                        0x00154c17 0x1000 + 1391639
    7   com.apple.iTunes                        0x00750249 0x1000 + 7664201
    8   com.apple.iTunes                        0x00756e91 0x1000 + 7691921
    9   com.apple.iTunes                        0x00759636 0x1000 + 7702070
    10  com.apple.iTunes                        0x001502f1 0x1000 + 1372913
    11  com.apple.iTunes                        0x0014fd1c 0x1000 + 1371420
    12  com.apple.iTunes                        0x0014061d 0x1000 + 1308189
    13  libSystem.B.dylib                       0x91486259 _pthread_start + 345
    14  libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x9148782e pread$UNIX2003 + 10
    1   ...ple.CoreServices.CarbonCore          0x9a521b30 BasicRead(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 952
    2   ...ple.CoreServices.CarbonCore          0x9a52173f PBReadForkSync + 117
    3   ...ple.CoreServices.CarbonCore          0x9a5216b6 FSReadFork + 59
    4   com.apple.iTunes                        0x0000bf28 0x1000 + 44840
    5   com.apple.iTunes                        0x0042eb50 0x1000 + 4381520
    6   com.apple.iTunes                        0x00050e3f 0x1000 + 327231
    7   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    8   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    9   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x91458afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91459267 mach_msg + 68
    2   com.apple.CoreFoundation                0x99eab2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x99eaa3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x99eb0304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000a968 0x1000 + 39272
    6   com.apple.iTunes                        0x0091e3ee 0x1000 + 9556974
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x9147f382 kevent + 10
    1   libSystem.B.dylib                       0x91492a93 _mdns_query_mDNSResponder + 1225
    2   libSystem.B.dylib                       0x914919a8 _mdns_search + 1120
    3   libSystem.B.dylib                       0x91490dd8 _mdns_addrinfo + 740
    4   libSystem.B.dylib                       0x9148fd5a search_addrinfo + 132
    5   libSystem.B.dylib                       0x9148f796 si_addrinfo + 1413
    6   libSystem.B.dylib                       0x914ccf54 si_async_launchpad + 105
    7   libSystem.B.dylib                       0x91486259 _pthread_start + 345
    8   libSystem.B.dylib                       0x914860de thread_start + 34
    Thread 16 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000480  ecx: 0x19b6bc00  edx: 0x00000000
      edi: 0x00000000  esi: 0x0351f200  ebp: 0xb081d328  esp: 0xb081d310
       ss: 0x0000001f  efl: 0x00010246  eip: 0x002b34d0   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -  0x1128fc3  com.apple.iTunes 10.6 (10.6) <17B9741A-36B2-68AA-02F0-EDCECADBB72C> /Applications/iTunes.app/Contents/MacOS/iTunes
    0x137c000 -  0x13f7fef  com.apple.iTunes.iPodUpdater 10.4 (10.4) <055BCDEA-3996-AC1B-EEF1-E158DF8AA5E4> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x143c000 -  0x1461ff7  com.apple.avfoundationcf 2.0 (60.1) <2D4DFC71-1195-4549-658B-7295F37AAEC3> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
    0x1489000 -  0x148eff7  com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x1494000 -  0x1770fe7 +libgnsdk_dsp.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <E468D2B0-295A-D520-C02A-5383413B5DDE> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
    0x1792000 -  0x17c5fe7 +libgnsdk_musicid.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <F6487E48-3B93-7C89-7734-85600749661D> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
    0x17d2000 -  0x189cfe7 +libgnsdk_sdkmanager.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <70001144-C144-B6D7-3CA9-836ACD97CE9F> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
    0x18b3000 -  0x18f5fe7 +libgnsdk_submit.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <AB1597CE-FBAC-6C05-330E-879EDD036C94> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
    0x18fa000 -  0x193fff7  com.apple.CoreMedia.AVCFSupport 1.0 (705.24.4) <FAEC8CE1-BF17-B566-38E3-98E97C2403CE> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/CoreMedia.fr amework/Versions/A/CoreMedia
    0x195e000 -  0x1cc9ff3  com.apple.MediaToolbox.AVCFSupport 1.0 (705.24.4) <B801EFCB-07D9-2A94-9E7A-530AD7E892AA> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/MediaToolbox .framework/Versions/A/MediaToolbox
    0x1d2e000 -  0x206efeb  com.apple.VideoToolbox.AVCFSupport 1.0 (705.24.4) <A4DBF709-3753-2F20-B20D-1D5DB80F3997> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/VideoToolbox .framework/Versions/A/VideoToolbox
    0x27dd000 -  0x27deff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1465b000 - 0x14a2cfe7  com.apple.CoreFP 2.1.34 (2.1.34) <F5C09BB7-9948-4AC4-1A62-BDC7BCD7C474> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x155d9000 - 0x16729fe7  com.apple.CoreFP1 1.14.34 (1.14.34) <8EF6D67A-01C5-DCA3-16CC-DD386E54DDCB> /System/Library/PrivateFrameworks/CoreFP1.framework/CoreFP1
    0x16ff5000 - 0x16ff9ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x171fe000 - 0x17204ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17209000 - 0x17295ff7  com.apple.mobiledevice 507.6 (507.6) <F7DDA28B-630F-862A-11E2-6386027EB81C> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x172de000 - 0x17304fff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
    0x1755c000 - 0x17611fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x17657000 - 0x1783dfef  com.apple.audio.codecs.Components 2.0.4 (2.0.4) <5D32DF8D-C577-EB6B-72FA-1ABDF1CED762> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x199ff000 - 0x19a04ff7  com.apple.QuartzComposer.iTunesPlugIn 1.2 (16) <8511A037-AFDE-5D1A-67DA-1B4837432D85> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <412DBD1B-E9B5-E67C-99E4-820BF38239AC> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x900e0fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x900e1000 - 0x90121ff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90122000 - 0x9012aff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9012b000 - 0x9026efef  com.apple.QTKit 7.7 (1789) <4D3AA05F-D4D3-0D43-99D7-F26E4640BEE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9026f000 - 0x90685ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90686000 - 0x906a1ff7  libPng.dylib ??? (???) <05445692-8AF7-CAB6-EBF5-1F7B3A906CCB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x906a2000 - 0x90d1dff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90d1e000 - 0x90ea0fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x90ea1000 - 0x90eb1ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90ef3000 - 0x911edfef  com.apple.QuickTime 7.6.6 (1789) <38255AA2-8087-5AE0-CA4B-1DDE611540B1> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x911ee000 - 0x91237fe7  libTIFF.dylib ??? (???) <4A3EF156-D4FE-95E2-FA05-7BD76FF27CEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9123d000 - 0x91248ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91297000 - 0x912a4ff7  com.apple.AppleFSCompression 24.4 (1.0) <6D696284-020B-7F5C-226D-B820F0E981D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x912a5000 - 0x91313ff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x91366000 - 0x91413fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x91414000 - 0x91457ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91458000 - 0x915ffff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9160c000 - 0x91837ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91857000 - 0x91879fef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91ad0000 - 0x91ae5fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91b08000 - 0x91b0bff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91b0c000 - 0x91b0eff7  libRadiance.dylib ??? (???) <41E5C5F4-A4C6-0416-08D0-422C88088558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91b0f000 - 0x91b0fff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c6c000 - 0x929e3fe7  com.apple.WebCore 6534.54 (6534.54.17) <3E6CBF05-E91D-1997-E6BC-B068B5F74F5E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x929e4000 - 0x92a22ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92a23000 - 0x92a23ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92a24000 - 0x92a8efe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92a8f000 - 0x92a90ff7  com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92b8d000 - 0x92c49fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92d2d000 - 0x92f9efef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f9f000 - 0x92fc3ff7  libJPEG.dylib ??? (???) <7EBC924F-B2EE-68B0-4EA0-F99EF54F0306> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92fc4000 - 0x92fcfff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92fd0000 - 0x93013ff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93014000 - 0x930acfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x930b8000 - 0x930c1ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x930c2000 - 0x930d0fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x930d1000 - 0x9317dfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93186000 - 0x93218fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93219000 - 0x93293fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93294000 - 0x9329bff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9329c000 - 0x9329ffe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x932a0000 - 0x932a0ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9347b000 - 0x93523ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93525000 - 0x93525ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x935c7000 - 0x93642fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93643000 - 0x93657fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x93709000 - 0x93750ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93751000 - 0x93913feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <051752C3-8C25-CF4A-9BFB-C7B6D20E58E8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93917000 - 0x93950fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93954000 - 0x93984ff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x93985000 - 0x939a1fe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x939a2000 - 0x939adff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x939ae000 - 0x93a79fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93a7a000 - 0x93b15fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94a93000 - 0x94a99fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94b5b000 - 0x94c5dfef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x94ca7000 - 0x950dcff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x950dd000 - 0x950e1ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x950e2000 - 0x95162feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x951d2000 - 0x95280ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95281000 - 0x9528efe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x952a2000 - 0x952e3ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95362000 - 0x95374ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95375000 - 0x9537cff7  com.apple.aps.framework 1.2 (1.2) <16A7DB74-F951-D8DB-35D0-5E5673529AB0> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x953be000 - 0x95440ffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95441000 - 0x95497ff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95498000 - 0x954a5ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x954a6000 - 0x955b2fe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x955b3000 - 0x95610ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95619000 - 0x9561aff7  libScreenReader.dylib ??? (???) <E559E38F-FB36-C1C4-B915-D3A4E4354921> /usr/lib/libScreenReader.dylib
    0x95646000 - 0x95726fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9574a000 - 0x95787ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x957c1000 - 0x957e7ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x957e8000 - 0x957e8ff7  com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x957e9000 - 0x95841fe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95842000 - 0x95aeeffb  com.apple.JavaScriptCore 6534.54 (6534.54.15) <BF16B296-8BC4-28A6-335F-30FC96B50356> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95aef000 - 0x95af4ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95b22000 - 0x95bdbfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95c18000 - 0x95c19ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95c1a000 - 0x95c57ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95c58000 - 0x95c5efe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x95c5f000 - 0x95d39fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95df6000 - 0x95e07ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95e08000 - 0x95e55feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95e56000 - 0x95e57ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95e58000 - 0x95e78fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x95e79000 - 0x95e7dff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95e7e000 - 0x95e7eff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95e98000 - 0x95edcff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95f23000 - 0x96806ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96807000 - 0x96841fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x96eb9000 - 0x96efbff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96efc000 - 0x96f1dfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96f1e000 - 0x96f1eff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f1f000 - 0x96f47ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x96f48000 - 0x96f60ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9736f000 - 0x9740cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9740d000 - 0x97486ff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97487000 - 0x974aeff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x974af000 - 0x976b6feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x976b7000 - 0x97707ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97708000 - 0x97777ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97778000 - 0x97f67557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97f68000 - 0x97f68ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97f69000 - 0x97fcdffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97fce000 - 0x9810bfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9810c000 - 0x9855dfef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9855e000 - 0x98560ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x98673000 - 0x986c6ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x987c6000 - 0x987cdff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x987e7000 - 0x988e8fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x98913000 - 0x9894effb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9894f000 - 0x98a7cffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x98a91000 - 0x98a9dff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x98b13000 - 0x98b32ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98b33000 - 0x98feeff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x98fef000 - 0x99066ff3  com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x99244000 - 0x99568fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99569000 - 0x9974bfff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9974c000 - 0x9977fff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x998e3000 - 0x99a0bfe7  com.apple.WebKit 6534.54 (6534.54.16) <2FA1223C-F6E6-F5FA-7293-ADDDBA0DADCE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x99a3f000 - 0x99af7feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x99af8000 - 0x99e63ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99e6e000 - 0x99fe9fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99ff5000 - 0x99ff9ff7  libGIF.dylib ??? (???) <3B4E6D0B-89EB-251F-3693-5187254D5BE2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x99ffa000 - 0x9a004fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9a02c000 - 0x9a03cff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9a03d000 - 0x9a03dff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9a03e000 - 0x9a048ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9a049000 - 0x9a04cff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9a04d000 - 0x9a092ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9a093000 - 0x9a195fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x9a268000 - 0x9a2a0ff7  com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9a2a1000 - 0x9a507ff7  com.apple.security 6.1.2 (55002) <A476227B-409D-A457-7D4D-A631A0B4AFDB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9a508000 - 0x9a828ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9a829000 - 0x9a837ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9a863000 - 0x9a8a9ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9a8aa000 - 0x9a8dbff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9a8dc000 - 0x9a93dfe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9a93e000 - 0x9a971fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9a972000 - 0x9aaa0fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9aaa1000 - 0x9aafbfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9aafc000 - 0x9aaffffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9ab00000 - 0x9ab14ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9ab15000 - 0x9ab4fff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x9ab50000 - 0x9ab94fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x9136, 0x26200000 / 3
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x26230000 / 9
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0x26232000 / 13
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0x26210000 / 5
    USB Device: Plantronics Headset, 0x047f  (Plantronics, Inc.), 0x0ca1, 0x26211000 / 12
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x1003, 0x26214000 / 11
    USB Device: USB-PS/2 Optical Mouse, 0x046d  (Logitech Inc.), 0xc01b, 0x26212000 / 10
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x9137, 0x26240000 / 4
    USB Device: Apple LED Cinema Display, 0x05ac  (Apple Inc.), 0x9236, 0x26243000 / 8
    USB Device: Display iSight, 0x05ac  (Apple Inc.), 0x8508, 0x26242000 / 7
    USB Device: Display Audio, 0x05ac  (Apple Inc.), 0x2912, 0x26241000 / 6
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3

  • Jmc.dll crashes java.exe

    First of thanks Sun's engineers for hard work on Java and JavaFX! I really enjoyed the features and demos from javafx.com.
    Unfortunatly all of the demos involving media playback are crashing java.exe with jmc.dll being guilty (probably access violation - jmc.dll in the error dialog reports 0.0.0.0 version - but not sure). Well, I think it is my system's fault, because when I got rid of all codecs that could play mp3, java.exe stopped crashing (at least for DraggableMP3Player demo, SimpleVideoPlayer crashes without writing hs_err), but gave me MediaUnsupportedException. Regarding fixing my system - I'd like to avoid the pleasure of reinstalling Windows and I think it would be good for others having this problem to nail the cause of it. Could you explain how jmc.dll is dealing with platform codecs? How it checks what is installed? Does anyone else seen jmc.dll crashing java? Could it be hardware issue (I have nforce2 sound card)?
    I've created issue [http://javafx-jira.kenai.com/browse/RT-2530] if you have the same problem please vote for it (you first need to register for free :))

    I sure have put some work in this bug. I hope this will be gone soon :). I'm somewhat surprised that nobody seen it beside me - no votes, no blogs about it. But UnsupportedMediaException is known for sure and I believe it is related (that's why I've voted for it). Thanks for all your sweat, tears and blood you put in JavaFX! :)

  • Is it possible to call a java control upon server startup

    I have a java control that creates business rules for validation of files submitted by users. This control
    makes many calls to db controls and performs a lot of
    fetch operations . Is it possible to invoke this control
    upon server startup and cache the results

    In the current release(8.1), calling controls from a plain Java class is not supported. Controls can only be invoked from a any one of the following Workshop components JWS/JPD/JPFs/or another control.
    Hope this helps.
    Raj Alagumalai

  • CS4: PPro and Encore crash upon startup!

    I have been using CS4 for a long time with no issues, but yesterday PPro and Encore started crashing upon starting up.
    The screen for either one will load up, but in PPro the timeline pane will be ghosted and the system will just freeze if I click on anything in the PPro window, including the menu. Encore does the exact same thing as far as crashing if I click anything.
    I have not installed any new programs and I shut down as many background tasks as possible, as I have always done.
    If I reboot the computer after a crash, I get a popup window telling me that PhotoshopServer.exe has caused an exception, blah blah. I have NEVER had that before this crashing started.
    I uninstalled the entire CS4 suite and reinstalled it. The installer kept giving me errors about some components not being installed correctly, so I ran the Adobe Support Advisor and it sent me to a link that instructed me to remove the Color Profiles. I did this and the installer continued with no further issues. I then installed all patches up to 4.2.1 with no issues. BTW, I did shutdown all of my antivirus/antispyware/firerwall programs first and copied any missing color profiles back to the Windows directory, as instructed without overwriting any existing ones from the new install.
    I started the new installation for the first time after a reboot and shutting down everything in the background... instant crashes AGAIN!
    I'm running out iof ideas and I have no idea what went wrong after using this suite for so long with no issues.
    Here's my computer specs:
    Asus Rampage II Extreme mobo
    Intel Core i7-920 @ 3.0 GHz.
    3x1 GBs Kingston HyperX Tri-Channel 1800 MHz. RAM
    2 EVGA e-GeForce 9800 GTX+ 1 GB boards in SLI
    2 WD 500GB SATA hard drives in RAID 0 (boot)
    2 WD 500GB SATA hard drives in RAID 0 (storage)
    PC Power & Cooling 1.2Kw PSU
    Windows XP (32-bit) SP3 with all updates current.
    Any help would be greatly appreciated -- I'm pulling my hair out here!
    Bill

    It's probable that the Canon drivers are to blame rather than Adobe. The change in behavior may be due to another piece of software (driver, automatic update, etc) installed that now results in the Canon drivers loading into a different address space where whatever they were already wrong now has a negative consequence. Could also be related to the Canon drivers not dealing properly with ASLR (address space randomization feature in Windows) but that seems likely.
    Lee

  • I just reinstalled Photoshop CS5 on my laptop but it keeps crashing upon startup. How can I fix this

    I just reinstalled Photoshop CS5 on my laptop but it keeps crashing upon startup. How can I fix this?

    Check the last two threads in this discussion: http://forums.adobe.com/thread/642566
    If this did not help, I'd encourage you to try posting on the Photoshop forum: http://forums.adobe.com/community/photoshop

  • InDesign CS4 Uninstaller crashes upon startup.

    I recently migrated from Mac OS 10.7.5 to 10.9.2 (Mavericks). Now InDesign CS4 crashes upon startup. I tried to uninstall it, but the CS4 uninstaller also crashes on startup. Anyone know how to get the uninstaller to work?

    Just run the cleaner tool to remove it. See CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3

Maybe you are looking for

  • Currency Translation in Report!

    Hi All, I am working on AR Aging report. We are maintaing currency translation in the BEx only. We are maintaining month end rates. For that exchange rate is defined and configurations are done. But when I executed Over due analysis report the aging

  • SSIS XML Data Source - worked in BIDS, can't read XML in SSDT

    I have an SSIS 2008 package built in BIDS (2008) that uses a series of XML locations (similar to http://corpslocks.usace.army.mil/lpwb/xml.tonnage?in_river=AG&in_lock=42&in_mon_yr=092013) to get tonnage information and load it into a SQL Server 2008

  • Scared to sync my iPhone with iTunes after computer crash

    Hi - my computer crashed and I had to reinstall iTunes.  I used a program and recovered all of my music and apps from my iPhone 4S and then added a few new music files.  I'd like to sync my phone with iTunes to get these new music files on it (they a

  • Hello..Interview

    Hello friends, I had an interview and was asked with simple questions i suppose.. can u please help me in this: - what is a Java Web Start? - In how many ways can we do the monitoring? - what is cache? use? and how many we have? - what are usage depe

  • Problem Installing Client 9.2.0.1.0 W2K SP3

    We are attempting to install the Oracle 9i Client Version 9.2.0.1.0 on a system running Windows 2000 Professional with Service Pack 3. When selecting either the Administrator or Runtime installation types, we get the following error message three tim