CS3 Crashing with the following code

Try this in CS3.
1) Open a new page.
2) Paste the following between the body tags.
<cfoutput>
<form>
<select name="whatever">
<cfloop index="x" from="1" to="12">
<option value="#x#">#x#</option>
</cfloop>
</select>
</form>
</cfoutput>
3) Save the file using a cfm extension
4) in design mode click on the dropdown.
5) That's crash-tastic!
wtf adobe. This only works if the file extension is .cfm
which leads me to believe it's some cf parsing code that DW uses
when coding in Coldfusion.

mikechyu wrote:
> Try this in CS3.
Try this
http://www.adobe.com/go/kb402776
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of
ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/

Similar Messages

  • What's wrong with the following code?

    What's wrong with the following code?
    Circle cir1;
    double rad = cir1.radius

    The circle Object was never instantiated.
    In other words, you have set a declaring of a Circle, but it has not been created in memory yet.
    You will create it using the " = new Circle( PARAMETERS_HERE ); "
    Or some other method that returns a circle.

  • Muse crashes with the following error, "menuItemBox U32584 has no associates page!"

    I'm trying to remove pages from my menu by exluding them via the page properties.  When I do that Muse crashes with the following error, "menuItemBox U32584 has no associates page!"  Any help is appreciated.

    One or more menu widgets within your site have become out-of-sync with the structure of your site in Plan view. If you send us the file we can repair and return it. Or you could delete and recreate the menu widgets.
    Please send us the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (If you use a service, please include your return e-mail address in the body of the message, since not all services include it in the sharing invite they send.)
    Thanks.

  • How to display rectangles with the following code in a JPanel?

    I am trying to make a bunch of random rectangles appear inside a JPanel on a GUI form. Im not sire how to display the form and panel with random rectangles. I have in my package the MyRectangle class, a blank JForm class called RectGUI and the class for the panel RectGUIPanel. The following code is from my panel and it should create random rectangles okay but how do I display them inside of a Panel on my RectGUI form? Thanks for the assistance.
    //Declare variables
        private int x;
        private int y;
        private int width;
        private int height;
        private Color color;
        Random rand = new Random();
        public class RectanglePanel extends JPanel
            public void displayRectangles()
                // Declare an arraylist of MyRectangles
                ArrayList<MyRectangle> myArray = new ArrayList<MyRectangle>();
                int maxNumber = 300;
               // Declare Frame and Panel
                JFrame frame = new JFrame();
                Container pane = frame.getContentPane();
                RectanglePanel rect = new RectanglePanel();
                // Set Frame attributes
                frame.setSize(700, 500);
                frame.setLocation(100,100);
                frame.setAlwaysOnTop(true);
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setTitle(" Rectangle Program");
                frame.setVisible(true);
                for (int i = 0; i < maxNumber; i++)
                    MyRectangle rec = createRandomRec();
                    myArray.add(rec);
                    rect.repaint();
            public MyRectangle createRandomRec()  
                   x = rand.nextInt();
                   y = rand.nextInt();
                   width = rand.nextInt();
                   height = rand.nextInt();
                   color = new Color(rand.nextInt(256), rand.nextInt(256), rand.nextInt(256));
                   return new MyRectangle(x, y , width, height, color);
        }

    I am trying to make a bunch of random rectangles appear inside a JPanel on a GUI form. Im not sire how to display the form and panel with random rectangles. I have in my package the MyRectangle class, a blank JForm class called RectGUI and the class for the panel RectGUIPanel. The following code is from my panel and it should create random rectangles okay but how do I display them inside of a Panel on my RectGUI form? Thanks for the assistance.
    //Declare variables
        private int x;
        private int y;
        private int width;
        private int height;
        private Color color;
        Random rand = new Random();
        public class RectanglePanel extends JPanel
            public void displayRectangles()
                // Declare an arraylist of MyRectangles
                ArrayList<MyRectangle> myArray = new ArrayList<MyRectangle>();
                int maxNumber = 300;
               // Declare Frame and Panel
                JFrame frame = new JFrame();
                Container pane = frame.getContentPane();
                RectanglePanel rect = new RectanglePanel();
                // Set Frame attributes
                frame.setSize(700, 500);
                frame.setLocation(100,100);
                frame.setAlwaysOnTop(true);
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setTitle(" Rectangle Program");
                frame.setVisible(true);
                for (int i = 0; i < maxNumber; i++)
                    MyRectangle rec = createRandomRec();
                    myArray.add(rec);
                    rect.repaint();
            public MyRectangle createRandomRec()  
                   x = rand.nextInt();
                   y = rand.nextInt();
                   width = rand.nextInt();
                   height = rand.nextInt();
                   color = new Color(rand.nextInt(256), rand.nextInt(256), rand.nextInt(256));
                   return new MyRectangle(x, y , width, height, color);
        }

  • Need help with the following code (Want an input popup with numeric pad)

    Hello,
    I put the following code in an event :
    import javax.swing.JOptionPane;
    value = javax.swing.JOptionPane.showInputDialog("Price", "");
    try {
    Double newPrice = new Double(value);
    line.setPriceTax(newPrice);
    } catch (NumberFormatException e) {
    JOptionPane.showMessageDialog(null, "Not valid number: " + value, "Error", JOptionPane.PLAIN_MESSAGE);
    But this only gives an input popup screen and then i have to use a keyboard instead of my touchscreen to give the input,
    i would rather like it to be a popup input screen with a numeric pad attached.
    Is this possible, and how??
    Thanks in advance.
    Jeroen

    hii,
    set321go wrote
    make your own. Create a custom OptionPane and add --->
    // global def.
    private final JLabel amountLabel = new JLabel(" Input Trades Amount : ");
    private JFormattedTextField amountTextField;
    private double amount = 0.00;
    private NumberFormat amountFormat;
    // in panel class add --->
    amountFormat = NumberFormat.getNumberInstance();
    amountFormat.setMinimumFractionDigits(2);
    amountFormat.setMaximumFractionDigits(2);
    amountFormat.setRoundingMode(RoundingMode.HALF_EVEN);
    amountLabel.setFont(new Font("Serif", Font.BOLD, 16));
    amountLabel.setForeground(KopikSalesTest.textColor);
    amounTextField = new JFormattedTextField(amountFormat);
    amountTextField.setValue(0.00);
    amountTextField.setFont(new Font("Serif", Font.BOLD, 20));
    amountTextField.setForeground(Color.someColor);
    amountTextField.setBackground(Color.someColor);
    amountTextField.addFocusListener(new FocusListener() {
                public void focusGained(FocusEvent e) {
                    amountTextField.requestFocus();
                    amountTextField.setText(amountTextField.getText());
                    amountTextField.selectAll();
                public void focusLost(FocusEvent e) {
                    //on exit
    somePanel.add(amountLabel);
    somePanel.add(amountTextField); ... kopik

  • TS4337 i am using OS 10.9 and my calendar is crashing with the following error message:

    Process:         Calendar [1115]
    Path:            /Applications/Calendar.app/Contents/MacOS/Calendar
    Identifier:      com.apple.iCal
    Version:         7.0 (1835)
    Build Info:      iCal-1835000000000000~25
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [162]
    Responsible:     Calendar [1115]
    User ID:         501
    Date/Time:       2013-11-17 13:36:58.510 -0800
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  3CEF96A4-5D1B-6A86-A08F-A5FBDC888416
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    Could not create XPC connection to the CalendarAgent, connection interrupted or invalidated more than 5 times
    Application Specific Signatures:
    CalPersistence nil connection (CalPersistenceCreationDomain - 3)
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.iCal                          0x000000010f9f8089 0x10f9c9000 + 192649
    1   libdispatch.dylib                       0x00007fff8b4c51d7 _dispatch_call_block_and_release + 12
    2   libdispatch.dylib                       0x00007fff8b4c22ad _dispatch_client_callout + 8
    3   libdispatch.dylib                       0x00007fff8b4c9f03 _dispatch_main_queue_callback_4CF + 333
    4   com.apple.CoreFoundation                0x00007fff90b00839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    5   com.apple.CoreFoundation                0x00007fff90abbb14 __CFRunLoopRun + 1636
    6   com.apple.CoreFoundation                0x00007fff90abb275 CFRunLoopRunSpecific + 309
    7   com.apple.HIToolbox                     0x00007fff8f1e9f0d RunCurrentEventLoopInMode + 226
    8   com.apple.HIToolbox                     0x00007fff8f1e9cb7 ReceiveNextEventCommon + 479
    9   com.apple.HIToolbox                     0x00007fff8f1e9abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    10  com.apple.AppKit                        0x00007fff8859728e _DPSNextEvent + 1434
    11  com.apple.AppKit                        0x00007fff885968db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    12  com.apple.AppKit                        0x00007fff8858a9cc -[NSApplication run] + 553
    13  com.apple.AppKit                        0x00007fff88575803 NSApplicationMain + 940
    14  com.apple.iCal                          0x000000010f9cb2cd 0x10f9c9000 + 8909
    15  libdyld.dylib                           0x00007fff8c05e5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8db4e662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8b4c443d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8b4c4152 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: CalLogNodeQueue-F5D02FA0-4CCE-441A-9362-E88BC6455875
    0   libsystem_c.dylib                       0x00007fff8f6e0126 __vfprintf + 17635
    1   libsystem_c.dylib                       0x00007fff8f70437b __v2printf + 471
    2   libsystem_c.dylib                       0x00007fff8f6ea007 _vsnprintf + 623
    3   libsystem_c.dylib                       0x00007fff8f6ea0bc vsnprintf + 80
    4   libsystem_c.dylib                       0x00007fff8f717bbb __snprintf_chk + 128
    5   libsystem_asl.dylib                     0x00007fff91fd7776 asl_string_append_char_no_encoding + 143
    6   libsystem_asl.dylib                     0x00007fff91fd7b00 asl_string_append_internal + 568
    7   libsystem_asl.dylib                     0x00007fff91fdd536 asl_msg_to_string_raw + 358
    8   libsystem_asl.dylib                     0x00007fff91fd53bb _asl_send_message + 1637
    9   com.apple.CoreFoundation                0x00007fff90aee24d __CFLogCString + 861
    10  com.apple.CoreFoundation                0x00007fff90aedeb7 _CFLogvEx + 263
    11  com.apple.Foundation                    0x00007fff9137ecbc NSLogv + 79
    12  com.apple.Foundation                    0x00007fff9137ec48 NSLog + 148
    13  com.apple.CalendarFoundation            0x00007fff8c03cf40 -[CalLogNSLogWriter write:] + 73
    14  com.apple.CalendarFoundation            0x00007fff8c03b3da __30-[CalLogNode processEnvelope:]_block_invoke + 317
    15  libdispatch.dylib                       0x00007fff8b4c22ad _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff8b4c3166 _dispatch_barrier_sync_f_invoke + 39
    17  com.apple.CalendarFoundation            0x00007fff8c03b294 -[CalLogNode processEnvelope:] + 105
    18  com.apple.CoreFoundation                0x00007fff90acd639 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 137
    19  com.apple.CoreFoundation                0x00007fff90accddf -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 319
    20  com.apple.CalendarFoundation            0x00007fff8c03b1f4 __32-[CalLogMaster processEnvelope:]_block_invoke + 117
    21  libdispatch.dylib                       0x00007fff8b4c51d7 _dispatch_call_block_and_release + 12
    22  libdispatch.dylib                       0x00007fff8b4c22ad _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff8b4c468f _dispatch_queue_drain + 451
    24  libdispatch.dylib                       0x00007fff8b4c59dd _dispatch_queue_invoke + 110
    25  libdispatch.dylib                       0x00007fff8b4c3fa3 _dispatch_root_queue_drain + 75
    26  libdispatch.dylib                       0x00007fff8b4c5193 _dispatch_worker_thread2 + 40
    27  libsystem_pthread.dylib                 0x00007fff8b4bbef8 _pthread_wqthread + 314
    28  libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8db49b16 syscall_thread_switch + 10
    1   libsystem_platform.dylib                0x00007fff89abef30 _os_lock_handoff_lock_slow + 79
    2   libobjc.A.dylib                         0x00007fff9423f9bb _objc_rootReleaseWasZero_slow + 27
    3   libobjc.A.dylib                         0x00007fff9423ca43 _objc_rootReleaseWasZero + 167
    4   libobjc.A.dylib                         0x00007fff9423e105 objc_release + 53
    5   libobjc.A.dylib                         0x00007fff9423d65a (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 502
    6   libdispatch.dylib                       0x00007fff8b4c40ea _dispatch_root_queue_drain + 402
    7   libdispatch.dylib                       0x00007fff8b4c5193 _dispatch_worker_thread2 + 40
    8   libsystem_pthread.dylib                 0x00007fff8b4bbef8 _pthread_wqthread + 314
    9   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8db49a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8db48d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff90abc315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff90abb939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff90abb275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff887371ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8b4ba899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8b4ba72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8b4befc9 thread_start + 13
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8db4da3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8f712e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff8f712d52 usleep + 54
    3   com.apple.AppKit                        0x00007fff887fb2ad -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation                    0x00007fff913a170b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x00007fff8b4ba899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b4ba72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b4befc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00006080000b9f31  rbx: 0x0000608000673fc0  rcx: 0x0000000000000001  rdx: 0x00006080000b9f30
      rdi: 0x00006080000b9f20  rsi: 0x0000000008000100  rbp: 0x00007fff502353b0  rsp: 0x00007fff50235390
       r8: 0x00000000000003ff   r9: 0xffff9f7fffd9ed3f  r10: 0x00007fa42a06a6f0  r11: 0x00007fff79e233a0
      r12: 0x00007fff9423b080  r13: 0x00007fff50235410  r14: 0x00007fff7a036ea0  r15: 0x00007fff7972c170
      rip: 0x000000010f9f8089  rfl: 0x0000000000010202  cr2: 0x0000000113c23000
    Logical CPU:     2
    Error Code:      0x00000000
    Trap Number:     6
    Binary Images:
           0x10f9c9000 -        0x10fcbbfff  com.apple.iCal (7.0 - 1835) <20A61364-02EC-38DA-AE61-188CE421DD34> /Applications/Calendar.app/Contents/MacOS/Calendar
           0x11178c000 -        0x11178ffff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x1117c6000 -        0x1117c7fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1134d2000 -        0x1134d6ff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x1134e8000 -        0x1134e9ff9 +cl_kernels (???) <5CC607E6-04A1-45F3-B535-26F5BBD5F766> cl_kernels
           0x1134f2000 -        0x11353eff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <C5AC5902-39C2-3A08-9967-5EAA000228EE> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x113595000 -        0x11367bfef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x1136d1000 -        0x1136d2fe4 +cl_kernels (???) <7910F292-0479-4452-8856-6CC803B2DECA> cl_kernels
           0x113b17000 -        0x113b18ffa +cl_kernels (???) <E0763150-14C2-40B0-A4DB-2C84F987F8BC> cl_kernels
        0x7fff62396000 -     0x7fff623c9817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8833a000 -     0x7fff8833dfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8833e000 -     0x7fff8839eff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8839f000 -     0x7fff883baff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff883f0000 -     0x7fff88424fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff88425000 -     0x7fff88426ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff88427000 -     0x7fff88428ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff88429000 -     0x7fff8842aff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff88548000 -     0x7fff88565fff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8856b000 -     0x7fff88572ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff88573000 -     0x7fff890e7ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff890e8000 -     0x7fff890e9fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff890ea000 -     0x7fff8951dffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8951e000 -     0x7fff895a7fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff895b2000 -     0x7fff8963dfff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff89640000 -     0x7fff89687fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff89688000 -     0x7fff896b7ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff896b8000 -     0x7fff89910ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff89911000 -     0x7fff899c9ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff899dd000 -     0x7fff899ddffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff899de000 -     0x7fff89a39ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff89a44000 -     0x7fff89aa7ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff89aab000 -     0x7fff89abaff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff89abb000 -     0x7fff89abbfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89abc000 -     0x7fff89ac2ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff89ac3000 -     0x7fff89adcff3  liblzma.5.dylib (5) <6479DC70-3290-35A0-8EA0-056D366A13A2> /usr/lib/liblzma.5.dylib
        0x7fff89add000 -     0x7fff89adfff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff89ae0000 -     0x7fff89bb1ff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff89c1d000 -     0x7fff89c42ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff89c43000 -     0x7fff89c4afff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89c4b000 -     0x7fff89c51fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff89c52000 -     0x7fff89cedff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff89cee000 -     0x7fff8a086fff  com.apple.SceneKit (4.0 - 197) <1FEE4A1D-5B13-3774-8FE1-B79FD81CD1E5> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8a158000 -     0x7fff8a159fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff8a15a000 -     0x7fff8a18bfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8a18c000 -     0x7fff8a18efff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8a18f000 -     0x7fff8a2fdff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a2fe000 -     0x7fff8a300fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8a301000 -     0x7fff8a309ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8a30a000 -     0x7fff8a436fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8a437000 -     0x7fff8a751ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8a77a000 -     0x7fff8a797ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8a798000 -     0x7fff8ad08fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8ad09000 -     0x7fff8ad33ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8ad34000 -     0x7fff8ad64fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8ad65000 -     0x7fff8b039fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8b03a000 -     0x7fff8b03cff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8b06f000 -     0x7fff8b0a8ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8b101000 -     0x7fff8b106ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8b107000 -     0x7fff8b10eff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8b10f000 -     0x7fff8b11bff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8b132000 -     0x7fff8b15eff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8b15f000 -     0x7fff8b1b8fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b1b9000 -     0x7fff8b1c6fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8b1c7000 -     0x7fff8b208fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8b209000 -     0x7fff8b20eff7  com.apple.EmailAddressing (7.0 - 1822) <E1DE6982-76CC-3DFC-939D-DDA0ED1D5403> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff8b20f000 -     0x7fff8b23bfff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8b23c000 -     0x7fff8b4b8ff7  com.apple.RawCamera.bundle (5.01 - 718) <6CC4A1E5-A89A-369D-96C4-7A5ED40B487B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8b4b9000 -     0x7fff8b4c0ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8b4c1000 -     0x7fff8b4dbfff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff8b4dc000 -     0x7fff8b4f0fff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8b4f1000 -     0x7fff8b52bff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8b52c000 -     0x7fff8b57eff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8b57f000 -     0x7fff8b8f5ffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8b8f6000 -     0x7fff8b8faff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8b8fb000 -     0x7fff8b8fdffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8b8fe000 -     0x7fff8bb9fff5  com.apple.VectorKit (1.0 - 716.19.8) <ACC97486-3F9F-3A1F-B0B0-B1F39CB4AADB> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
        0x7fff8bba0000 -     0x7fff8bbabff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8bbac000 -     0x7fff8bbadff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8bbae000 -     0x7fff8bbbaff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8bbbb000 -     0x7fff8bbbbfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8bbbc000 -     0x7fff8bc7eff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8bde6000 -     0x7fff8be15fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8be16000 -     0x7fff8be56ff7  com.apple.CalDAV (7.0 - 155.1) <6912C282-D362-3473-90E3-655A36C0CC21> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff8be57000 -     0x7fff8be9cff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff8be9d000 -     0x7fff8bea5ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8bea6000 -     0x7fff8bef4fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8bef7000 -     0x7fff8bf04ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8bf05000 -     0x7fff8bf05fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <664A1157-0D98-3680-8C3B-091980DA7BC4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff8bf06000 -     0x7fff8bf10ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8bf11000 -     0x7fff8bf15fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff8bf3c000 -     0x7fff8bf54ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8bf55000 -     0x7fff8bfc4ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8bfc5000 -     0x7fff8bfdeff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8bfdf000 -     0x7fff8c036fff  com.apple.ViewBridge (1.0 - 46) <C49FDC96-7087-3B2F-AEC3-039F7B2CB50C> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8c037000 -     0x7fff8c037fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8c038000 -     0x7fff8c056ff7  com.apple.CalendarFoundation (7.0 - 111) <D5CEE7AE-3325-3E7E-924B-12834AE7D218> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff8c057000 -     0x7fff8c05aff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8c05b000 -     0x7fff8c05eff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff8c05f000 -     0x7fff8c05ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c060000 -     0x7fff8c087ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8c088000 -     0x7fff8c08bfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c08c000 -     0x7fff8c4dafff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8c4db000 -     0x7fff8c4f1fff  com.apple.geokit (2.2 - 2.2) <20D34071-9831-36CF-B7FC-0013ABF4B210> /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit
        0x7fff8c4f2000 -     0x7fff8c4f7fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8c505000 -     0x7fff8c534ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8c55c000 -     0x7fff8c5a9ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c5c2000 -     0x7fff8c5faff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c5fb000 -     0x7fff8c60dfff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8c65d000 -     0x7fff8c660fff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8c661000 -     0x7fff8c766fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8c767000 -     0x7fff8c773ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8c774000 -     0x7fff8c786ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8c787000 -     0x7fff8c788ffc  com.apple.SafariServices.framework (9537 - 9537.71) <02DF88AE-193A-3139-A991-CC26FB0C5048> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff8c789000 -     0x7fff8c7e1ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8c7e2000 -     0x7fff8c807ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8c808000 -     0x7fff8c808fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c844000 -     0x7fff8c88dfff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c88e000 -     0x7fff8c892ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8c893000 -     0x7fff8c898fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8c899000 -     0x7fff8cc74ffb  com.apple.Altitude (1.0 - 347.6.3) <F0AC2688-DF8E-389B-8F9E-ECCF22AD225B> /System/Library/PrivateFrameworks/Altitude.framework/Versions/A/Altitude
        0x7fff8cc75000 -     0x7fff8cca3ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8cca4000 -     0x7fff8cd08ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8cd09000 -     0x7fff8cd1ffff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8cd5c000 -     0x7fff8cd66ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff8cd67000 -     0x7fff8d68305f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8d686000 -     0x7fff8d691ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8d693000 -     0x7fff8d8dbfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8d908000 -     0x7fff8db37ff7  com.apple.CalendarPersistence (7.0 - 130) <8B3FAA74-A95C-3319-BD3C-970051BEB5DC> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff8db38000 -     0x7fff8db54ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8db55000 -     0x7fff8dd0dff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
        0x7fff8dd0e000 -     0x7fff8df51fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8df75000 -     0x7fff8df8dff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8df8e000 -     0x7fff8df8fffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8df90000 -     0x7fff8dfeffff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8dff0000 -     0x7fff8e016fff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff8e017000 -     0x7fff8e05cff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e05d000 -     0x7fff8e05eff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8e05f000 -     0x7fff8e07bfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8e07c000 -     0x7fff8e0c4ff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff8e0c5000 -     0x7fff8e0faffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8e0fb000 -     0x7fff8e16effb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8e16f000 -     0x7fff8e182fff  com.apple.iCal.CalendarDraw (7.0 - 1726) <F60180A8-4EFC-3A4C-859D-9411ADCAF9C5> /System/Library/PrivateFrameworks/CalendarDraw.framework/Versions/A/CalendarDra w
        0x7fff8e183000 -     0x7fff8e18dff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8e18e000 -     0x7fff8e1b5ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8e1b6000 -     0x7fff8f002ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8f003000 -     0x7fff8f0c6ff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8f0d3000 -     0x7fff8f1baff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8f1bb000 -     0x7fff8f465ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8f466000 -     0x7fff8f468fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8f469000 -     0x7fff8f4baff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8f4bb000 -     0x7fff8f5f0ffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8f5f1000 -     0x7fff8f5fdff7  com.apple.CalendarAgentLink (7.0 - 138) <B8B63D14-D853-3478-B001-BC67B7E9F993> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8f5fe000 -     0x7fff8f62bff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8f62c000 -     0x7fff8f696ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8f697000 -     0x7fff8f720ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff8f721000 -     0x7fff8f80ffff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f810000 -     0x7fff8f811fff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8f907000 -     0x7fff8f918ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8f919000 -     0x7fff8f934ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8f935000 -     0x7fff8f997ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff8faff000 -     0x7fff8fafffff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8fb00000 -     0x7fff8fb01fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8fb02000 -     0x7fff8fb0afff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8fb0b000 -     0x7fff8fb24ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8fb25000 -     0x7fff8fb63ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8fb64000 -     0x7fff8fb66fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8fb6a000 -     0x7fff8fb6efff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8fb6f000 -     0x7fff8fb97ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8fb98000 -     0x7fff8fc82fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8fe95000 -     0x7fff90126ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff90127000 -     0x7fff90130fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff90131000 -     0x7fff90155fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff90156000 -     0x7fff9017aff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff9017b000 -     0x7fff90192fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90193000 -     0x7fff901a3ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff901a4000 -     0x7fff901f7ff7  com.apple.ical.EventKit (2.0 - 152) <34FD327F-0E27-3B0F-B801-0C8FF2B4814A> /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit
        0x7fff901f8000 -     0x7fff9071cfff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff907b7000 -     0x7fff9086bfff  com.apple.MapKit (1.0 - 10) <AE6CAB40-BCA5-35AC-BD80-1E513916F1F4> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
        0x7fff9089d000 -     0x7fff9089ffff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff908a0000 -     0x7fff9092fff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff90930000 -     0x7fff90937fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff90938000 -     0x7fff90a03fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff90a4b000 -     0x7fff90c30ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90c31000 -     0x7fff90c4fff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff90c50000 -     0x7fff90c9efff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff90c9f000 -     0x7fff90ca8ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff90ca9000 -     0x7fff90d05fff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff90d06000 -     0x7fff90e36ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91273000 -     0x7fff91278fff  com.apple.WeatherKit (1.0 - 19) <C9E48D8B-786C-3243-9BE2-84202F561171> /System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/WeatherKit
        0x7fff91279000 -     0x7fff912c8ff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff912c9000 -     0x7fff912f8fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff9133a000 -     0x7fff91639fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9163a000 -     0x7fff9163bff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9163c000 -     0x7fff916c8ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff916c9000 -     0x7fff9192aff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff919ab000 -     0x7fff919b5fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff919b6000 -     0x7fff919c3ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff919c4000 -     0x7fff919ceff7  com.apple.corerecents (1.0 - 1) <6C3ACB55-6FA5-3266-80D3-592B7258F5E7> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
        0x7fff919cf000 -     0x7fff919ddfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff91a07000 -     0x7fff91de8ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff91de9000 -     0x7fff91fa4ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff91fae000 -     0x7fff91fb7ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff91fb8000 -     0x7fff91fc0fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff91fc1000 -     0x7fff91fc3ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff91fc4000 -     0x7fff91fd1ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff91fd2000 -     0x7fff91fe3ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff9209e000 -     0x7fff9209efff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9209f000 -     0x7fff92105fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff9210d000 -     0x7fff92117ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff922a6000 -     0x7fff922cffff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff922dd000 -     0x7fff922e3fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff922e4000 -     0x7fff92351fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff92619000 -     0x7fff9265bff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff926af000 -     0x7fff92702fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff92708000 -     0x7fff92878ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff92879000 -     0x7fff92890ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff92891000 -     0x7fff928ddffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff928de000 -     0x7fff929cfff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff929d0000 -     0x7fff929d3ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff92a24000 -     0x7fff92a2dfff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff92a2e000 -     0x7fff92a52fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff92a53000 -     0x7fff92d3dfff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff92d7d000 -     0x7fff92d86fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff92d87000 -     0x7fff92e0fff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff92e10000 -     0x7fff92e12ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff92e13000 -     0x7fff92e1bff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff92e32000 -     0x7fff92e39ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff92e3a000 -     0x7fff92e3cff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff92e3d000 -     0x7fff92e58ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff93417000 -     0x7fff9341affc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff9341b000 -     0x7fff934fafff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff934fb000 -     0x7fff9353afff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff9353b000 -     0x7fff9362afff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9362b000 -     0x7fff93630ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff93631000 -     0x7fff93702ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff93727000 -     0x7fff93867fff  com.apple.QTKit (7.7.3 - 2826) <7A110F61-D4DD-3C84-950D-E5F486DE5765> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff9412c000 -     0x7fff94134ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff94135000 -     0x7fff94146ff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff94147000 -     0x7fff9414bff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff9414c000 -     0x7fff94188fff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff94236000 -     0x7fff943e3f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff943e4000 -     0x7fff94400fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff94414000 -     0x7fff94474

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I'm trying to remove pages from my menu by exluded them via the page properties.  When I do that Muse crashes with the following error, "menuItemBox U32584 has no associates page!"  Any help is appreciated.

    I'm trying to remove pages from my menu by excluding them via the page properties.  When I do that Muse crashes and displays the following error, "Adobe Muse CC has encountered an error and wil not exit...." "menuItemBox U32584 has no associates page!"
    Any help is appreciated.
    Thanks,
    Carole

    One or more menu widgets within your site have become out-of-sync with the structure of your site in Plan view. If you send us the file we can repair and return it. Or you could delete and recreate the menu widgets.
    Please send us the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (If you use a service, please include your return e-mail address in the body of the message, since not all services include it in the sharing invite they send.)
    Thanks.

  • Whats wrong with the following code?

    if currencyName =( "Euros" )
              amount = amount * 1.02;
          else if currencyName =( "Yen" )
              amount = amount * 1.20;
          else if currencyName =( "Pesos" )
              amount = amount * 10;I get error that a ( is needed
    I tried the following:
    if (currencyName =( "Euros" ))
              amount = amount * 1.02;
          else if (currencyName =( "Yen" ))
              amount = amount * 1.20;
          else if (currencyName =( "Pesos" ))
              amount = amount * 10;
          }This gave me error required boolean with arrow pointing to the equals sign.

    Now it's not putting the changed number into amount (I think)
    when I run it gives me the orginal number instead of the mutilpied number.
    I must be missing something rather obvious here.
           // get dollar amount
          double amount =
            Double.parseDouble( dollarJTextField.getText() );
          // get currencty name
          String currencyName = dollarJTextField.getText() ;
          // perform currency conversion
          if (currencyName.equals( "Euros" ))
              amount*= 1.02;
          else if (currencyName.equals( "Yen" ))
              amount*= 1.20;
          else if (currencyName.equals( "Pesos" ))
              amount*= amount * 10;
          //display converted amount
          convertedJTextField.setText( String.valueOf( amount) );

  • My macbook pro keep crashed with the following error report

    Interval Since Last Panic Report:  20756 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    322AC30F-***********
    Tue Oct  1 16:46:00 2013
    panic(cpu 0 caller 0xffffff7f9091ff1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0x0a2910de 0x00100000 0x00000000, BAR0 0xd2000000 0xffffff80ff680000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff813aedb710 : 0xffffff800e61d636
    0xffffff813aedb780 : 0xffffff7f9091ff1a
    0xffffff813aedb850 : 0xffffff7f8eed726c
    0xffffff813aedb910 : 0xffffff7f8efaa1f6
    0xffffff813aedb950 : 0xffffff7f8efaa254
    0xffffff813aedb9c0 : 0xffffff7f8f26f278
    0xffffff813aedbaf0 : 0xffffff7f8efd2ad1
    0xffffff813aedbb10 : 0xffffff7f8eede03f
    0xffffff813aedbbc0 : 0xffffff7f8eedbad6
    0xffffff813aedbdc0 : 0xffffff7f8eedcb41
    0xffffff813aedbea0 : 0xffffff7f8ee7880a
    0xffffff813aedbef0 : 0xffffff7f908e1838
    0xffffff813aedbf40 : 0xffffff7f908e0783
    0xffffff813aedbf60 : 0xffffff800e63e26e
    0xffffff813aedbfb0 : 0xffffff800e6b3257
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8ee 76000->0xffffff7f8f118fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ee62000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ee1f000
             com.apple.driver.AppleMuxControl(3.4.5)[49FEF732-D7A3-327B-A7AA-6AC5A6E3DCFF]@0 xffffff7f90912000->0xffffff7f90924fff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f9090d000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f908f9000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f8ed2b000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ee62000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ee1f000
             com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f8f124000->0xffffff7f8f3f7fff
                dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8ee 76000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
             com.apple.driver.AGPM(100.13.12)[40BECF44-B2F1-3933-8074-AD07B38CA43A]@0xffffff 7f908df000->0xffffff7f908f0fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f8eb7d000
                dependency: com.apple.driver.IOPlatformPluginFamily(5.4.1d11)[D57AB2EB-A2D1-3002-BDAA-E61E2 3A9D8F7]@0xffffff7f8f7dc000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ee62000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ee1f000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12F37
    Kernel version:
    Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    Kernel UUID: B1B58405-A2B2-3C44-B25D-495053D52AB5
    Kernel slide:     0x000000000e400000
    Kernel text base: 0xffffff800e600000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 219929394001
    last loaded kext at 8177512108: com.parallels.kext.prl_vnic          7.0 15107.796624 (addr 0xffffff7f90a9b000, size 20480)
    last unloaded kext at 118797572861: com.apple.driver.AppleUSBUHCI          621.4.0 (addr 0xffffff7f8f618000, size 65536)
    loaded kexts:
    com.parallels.kext.prl_vnic          7.0 15107.796624
    com.parallels.kext.prl_netbridge          7.0 15107.796624
    com.parallels.kext.prl_hid_hook          7.0 15107.796624
    com.parallels.kext.prl_hypervisor          7.0 15107.796624
    com.parallels.kext.prl_usb_connect          7.0 15107.796624
    com.sophos.kext.sav          8.0.14
    com.rim.driver.BlackBerryUSBDriverInt          0.0.74
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f2
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.13.12
    com.apple.driver.AppleHDA          2.4.7fc2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.3
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.GeForce          8.1.6
    com.apple.driver.AppleIntelHDGraphics          8.1.6
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.AppleMikeyDriver          2.4.7fc2
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.6
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleSMBusPCI          1.0.11d1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBCardReader          3.3.1
    com.apple.iokit.SCSITaskUserClient          3.5.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBHub          623.4.4
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.iokit.AppleBCM5701Ethernet          3.6.2b4
    com.apple.driver.AppleUSBEHCI          621.4.6
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          214.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          214.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.4.7fc2
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.4.7fc2
    com.apple.iokit.IOHDAFamily          2.4.7fc2
    com.apple.iokit.IOBluetoothFamily          4.1.7f2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.4.1d11
    com.apple.nvidia.nv50hal          8.1.6
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.NVDAResman          8.1.6
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.iokit.IO80211Family          530.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.driver.AppleKeyStore          28.21
    com.apple.iokit.IOUSBMassStorageClass          3.5.2
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.6
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.iokit.IOUSBFamily          630.4.5
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533641465238432D47372020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54333531533641465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 21 devices, 3 incoming serial ports
    Serial ATA Device: M4-CT512M4SSD2, 512.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS41N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3

    You have the MacBookPro6,2, the Edsel of Macs. It may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider, to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Note that the replacement program only applies within three years of purchase. If you wait beyond that date, Apple may refuse the service. In that case, you'll be quoted a price of about $300 (in the U.S.) for a depot repair. The model was discontinued in February 2011, so the replacement program will be ending quite soon.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Sometimes the replacement part is also defective, so be prepared for that possibility.
    If it's too late for your unit to be repaired under the program, and you don't want to pay for a new logic board, you may be able to stop the panics by disabling automatic graphics switching.
    *An SSD doesn't need to be zeroed.

  • Hello There, I have a macbook pro 10.6.8 2GHz intel core i7 4gb 1333MHz DDR3, it is continuously crashing with the following report;

    Interval Since Last Panic Report:  38496 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    FE4BA934-8824-4E34-AEFC-47973A17907E
    Wed Oct 30 10:41:08 2013
    panic(cpu 6 caller 0xffffff80002251cd): "TLB invalidation IPI timeout: " "CPU(s) failed to respond to interrupts, unresponsive CPU bitmap: 0xc, NMIPI acks: orig: 0x0, now: 0x0"@/SourceCache/xnu/xnu-1504.10.48/osfmk/x86_64/pmap.c:2726
    Backtrace (CPU 6), Frame : Return Address
    0xffffff805e00b910 : 0xffffff8000204d15
    0xffffff805e00ba10 : 0xffffff80002251cd
    0xffffff805e00ba80 : 0xffffff8000227e9b
    0xffffff805e00bb70 : 0xffffff8000228a24
    0xffffff805e00bbc0 : 0xffffff80002184bd
    0xffffff805e00bcc0 : 0xffffff80002188ab
    0xffffff805e00bcf0 : 0xffffff800021587b
    0xffffff805e00bd20 : 0xffffff8000504a42
    0xffffff805e00bd40 : 0xffffff8000555709
    0xffffff805e00bd90 Machine-check capabilities (cpu 0) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000004:
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0xbe00000000800400 valid
      MCA error code:            0x0400
      Model specific error code: 0x0080
      Other information:         0x00000000
      Threshold-based status:    Undefined
      Status bits:
       Processor context corrupt
       ADDR register valid
       MISC register valid
       Error enabled
       Uncorrected error
    IA32_MC3_ADDR(0x40e): 0x00003f7f80990317
    IA32_MC3_MISC(0x40f): 0x000000000003ffff
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    Backtrace (CPU 6), Frame : Return Address
    0xffffff8058c12eb0 : 0xffffff8000204c3f
    0xffffff8058c12fb0 : 0xffffff80002d0238
    0xffffff8058c130a0 : 0xffffff80002e48bf
    0xffffff805e00b4c0 : 0xffffff80002066f3
    0xffffff805e00b5c0 : 0xffffff8000207534
    0xffffff805e00b6a0 : 0xffffff800022e717
    0xffffff805e00b8c0 : 0xffffff800022ead3
    0xffffff805e00b910 : 0xffffff8000204d15
    0xffffff805e00ba10 : 0xffffff80002251cd
    0xffffff805e00ba80 : 0xffffff8000227e9b
    0xffffff805e00bb70 : 0xffffff8000228a24
    0xffffff805e00bbc0 : 0xffffff80002184bd
    0xffffff805e00bcc0 : 0xffffff80002188ab
    0xffffff805e00bcf0 : 0xffffff800021587b
    0xffffff805e00bd20 : 0xffffff8000504a42
    0xffffff805e00bd40 : 0xffffff8000555709
    0xffffff805e00bd90 : 0xffffff80002bf18e
    0xffffff805e00bdc0 : 0xffffff8000205536
    0xffffff805e00bdf0 : 0xffffff80002029eb
    0xffffff805e00be60 : 0xffffff800027413e
    0xffffff805e00bed0 : 0xffffff80002c2d6e
    0xffffff805e00bfa0 : 0xffffff80002e44f6
    BSD process name corresponding to current thread: PPPMonitord
    Mac OS version:
    10J3210
    Kernel version:
    Darwin Kernel Version 10.7.1: Mon Jan 31 14:55:53 PST 2011; root:xnu-1504.10.48~4/RELEASE_X86_64
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 94058400238
    unloaded kexts:
    (none)
    loaded kexts:
    com.apple.filesystems.autofs          2.1.0 - last loaded 52583290782
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.12.31
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AudioAUUC          1.53
    com.apple.driver.AppleUpstreamUserClient          3.5.3
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleMCCSControl          1.0.17
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMikeyDriver          2.0.2f9
    com.apple.kext.ATIFramebuffer          6.3.0
    com.apple.driver.AppleIntelHDGraphics          6.3.0
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleHDA          2.0.2f9
    com.apple.ATIRadeonX3000          6.3.0
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.iokit.AppleBCM5701Ethernet          3.0.2b8
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleGraphicsControl          2.10.4
    com.apple.driver.AirPort.Brcm4331          429.10.1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.6.0d12
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.43
    com.apple.kext.AppleSMCLMU          1.5.2d6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.0
    com.apple.driver.AppleUSBTCButtons          201.2
    com.apple.driver.AppleUSBTCKeyEventDriver          201.2
    com.apple.driver.AppleUSBTCKeyboard          201.2
    com.apple.driver.AppleIRController          303.8
    com.apple.iokit.SCSITaskUserClient          2.6.6
    com.apple.driver.AppleUSBHub          4.2.0
    com.apple.iokit.IOAHCIBlockStorage          1.6.3
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.BootCache          31
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleSDXC          1.0.2
    com.apple.driver.AppleUSBEHCI          4.2.0
    com.apple.driver.AppleAHCIPort          2.1.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleSmartBatteryManager          160.0.0
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.4.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement          142.4.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.KLog          3.9.0
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.3f1
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.2f9
    com.apple.driver.AppleThunderboltDPOutAdapter          1.1.1
    com.apple.driver.AppleThunderboltDPInAdapter          1.1.1
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.1.1
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.0.5
    com.apple.driver.DspFuncLib          2.0.2f9
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleThunderboltNHI          1.1.9
    com.apple.iokit.IOThunderboltFamily          1.2.2
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.2f9
    com.apple.iokit.IOHDAFamily          2.0.2f9
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.IOPlatformPluginFamily          4.6.0d12
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.0
    com.apple.iokit.IONDRVSupport          2.2
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.kext.ATI6000Controller          6.3.0
    com.apple.kext.ATISupport          6.3.0
    com.apple.iokit.IOGraphicsFamily          2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.3f1
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.3f1
    com.apple.iokit.IOBluetoothFamily          2.4.3f1
    com.apple.driver.AppleUSBMultitouch          207.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.2.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.6
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.6
    com.apple.iokit.IOUSBUserClient          4.2.0
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.5
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.0
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.1
    com.apple.iokit.IOACPIFamily          1.3.0
    Panic(CPU 2): Unresponsive processor, TLB state:0
    RAX: 0xffffff805f1cb000, RBX: 0xffffff8049e78000, RCX: 0x0000000000000468, RDX: 0x000000002a19f067
    RSP: 0xffffff8058b6b178, RBP: 0xffffff8058803ad0, RSI: 0x0000000000000468, RDI: 0xffffff800c7f1000
    R8:  0x0000000000100000, R9:  0x0000000000000003, R10: 0x0000000000000000, R11: 0xffffff80004f67da
    R12: 0xffffff800c7f1000, R13: 0xffffff808329e000, R14: 0x0000000000000000, R15: 0x0000000000000002
    RFL: 0x0000000000000097, RIP: 0xffffff80002e3d70, CS:  0x0000000000000008, SS:  0x0000000000000010
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8058b68f40 : 0xffffff80002d76d6
    0xffffff8058b68f70 : 0xffffff80002d0324
    0xffffff8058b68fd0 : 0xffffff80002e40a2
    0xffffff8058803ad0 : 0xffffff7f810bf5f8
    0xffffff8058803b00 : 0xffffff7f810c928f
    0xffffff8058803b20 : 0xffffff7f810be1f6
    0xffffff8058803b60 : 0xffffff7f810847cf
    0xffffff8058803bb0 : 0xffffff7f8105ef1c
    0xffffff8058803be0 : 0xffffff7f80b52167
    0xffffff8058803c20 : 0xffffff7f80b521ba
    0xffffff8058803c40 : 0xffffff7f80b5a5c5
    0xffffff8058803cc0 : 0xffffff7f80b5877e
    0xffffff8058803d00 : 0xffffff80005280e7
    0xffffff8058803d70 : 0xffffff80005536a7
    0xffffff8058803de0 : 0xffffff80002ba734
    0xffffff8058803e50 : 0xffffff8000205536
    0xffffff8058803e80 : 0xffffff80002029eb
    0xffffff8058803ef0 : 0xffffff800027413e
    0xffffff8058803f60 : 0xffffff80002c3059
    0xffffff8058803fa0 : 0xffffff80002e4854
          Kernel Extensions in backtrace (with dependencies):
             com.apple.ATIRadeonX3000(6.3.0)@0xffffff7f81059000->0xffffff7f812edfff
                dependency: com.apple.iokit.IOPCIFamily(2.6.1)@0xffffff7f80804000
                dependency: com.apple.iokit.IONDRVSupport(2.2)@0xffffff7f80cee000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0xffffff7f80b47000
             com.apple.iokit.IOGraphicsFamily(2.2)@0xffffff7f80b47000->0xffffff7f80b6efff
                dependency: com.apple.iokit.IOPCIFamily(2.6.1)@0xffffff7f80804000
    BSD process name corresponding to current thread: WindowServer
    Panic(CPU 3): Unresponsive processor, TLB state:0
    RAX: 0xffffff800ba89a7c, RBX: 0xffffff800ba89a00, RCX: 0x0000000001000000, RDX: 0x0000000000000000
    RSP: 0xffffff8058c6c178, RBP: 0xffffff805e7f3dc0, RSI: 0x000000008000001e, RDI: 0xffffff800ba89a00
    R8:  0x0000000000000019, R9:  0x0000000000000000, R10: 0x0000000000001211, R11: 0xffffff80004f4e5e
    R12: 0xffffff800b941260, R13: 0xffffff800ba89a00, R14: 0xffffff800bb3d5d0, R15: 0x0000000000000000
    RFL: 0x0000000000000086, RIP: 0xffffff80002e3d70, CS:  0x0000000000000008, SS:  0x0000000000000010
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8058cb4f40 : 0xffffff80002d76d6
    0xffffff8058cb4f70 : 0xffffff80002d0324
    0xffffff8058cb4fd0 : 0xffffff80002e40a2
    0xffffff805e7f3dc0 : 0xffffff800020562a
    0xffffff805e7f3df0 : 0xffffff80002029eb
    0xffffff805e7f3e60 : 0xffffff800027413e
    0xffffff805e7f3ed0 : 0xffffff80002c2d6e
    0xffffff805e7f3fa0 : 0xffffff80002e44f6
    BSD process name corresponding to current thread: PPPMonitord
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f4
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.10.1)
    Bluetooth: Version 2.4.3f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500325ASG, 465,76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0246, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    It looks like a GPU issue.  Make an appointment at an Apple store genius bar for a FREE evaluation.  Bring a copy of the crash report with you.
    Ciao.

  • JRockit JVM Crashed with the following dump

    I am using JRockit VM as the JVM for the Integrated Weblogic Server with JDeveloper. I got this dump, when I was debugging my application. Just thought of sharing it here.
    [JRockit] ERROR: The JVM has crashed. Writing crash information to /scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/jrockit.18628.dump.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:46:27 on Sat Aug 20 19:49:11 2011
    * If you see this dump, please go to *
    * http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html *
    * for troubleshooting information. *
    Additional information is available in:
    /scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/jrockit.18628.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=1 si_addr=0x13
    Version : Oracle JRockit(R) R28.1.3-11-141760-1.6.0_24-20110301-1432-linux-x86_64
    CPU : Intel Core 2 SSE SSE2 SSE3 SSSE3 SSE4.1 Core Intel64
    Number CPUs : 2
    Tot Phys Mem : 3978702848 (3794 MB)
    OS version : Red Hat Enterprise Linux Server release 5.4 (Tikanga)
    Linux version 2.6.18-164.0.0.0.1.el5 ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-46)) #1 SMP Thu Sep 3 00:21:28 EDT 2009 (x86_64)
    Thread System: Linux NPTL
    LibC release : 2.5-stable
    Java locking : Normal
    State : JVM is running
    Command Line : -Xms256M -Xmx1536M -Dweblogic.Name=DefaultServer -Djava.security.policy=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/lib/weblogic.policy -agentlib:jdwp=transport=dt_socket,server=y,address=8986 -Djavax.net.ssl.trustStore=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/lib/DemoTrust.jks -Doracle.adfm.usemds=true -DAFLOG_ECHOED=Y -DAFLOG_ECHOED_PATTERN="[%t][%c][%m][%x]" -DAFLOG_ENABLED=Y -DAFLOG_LEVEL=FINEST -DAFLOG_MODULE=oracle.apps.projects.% -Djbo.debugoutput=silent -Djbo.jdbc.trace=false -Djbo.logging.trace.threshold=1 -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3 -Dwls.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server -Dweblogic.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server -Djps.app.credential.overwrite.allowed=true -Dcommon.components.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/oracle_common -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain -Djrockit.optfile=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt -Doracle.server.config.dir=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/config/fmwconfig/servers/DefaultServer -Doracle.domain.config.dir=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/config/fmwconfig -Djava.util.logging.manager=oracle.core.ojdl.logging.ODLLogManager -Digf.arisidbeans.carmlloc=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/config/fmwconfig/carml -Digf.arisidstack.home=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/config/fmwconfig/arisidprovider -Doracle.security.jps.config=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/config/fmwconfig/jps-config.xml -Doracle.deployed.app.dir=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/servers/DefaultServer/tmp/_WL_user -Doracle.deployed.app.ext=/- -Dweblogic.alternateTypesDirectory=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/oracle_common/modules/oracle.ossoiap_11.1.1,/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/oracle_common/modules/oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/oracle/store/gmds -Datgpf.oracle.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper -Doracle.fusion.appsMode=true -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -Xverify:none -Doracle.webcenter.analytics.disable-native-partitioning=false -Doracle.webcenter.tagging.scopeTags=false -Doracle.webcenter.framework.service.LOAD_FROM_MDS=true -Doracle.webcenter.framework.resource.authorizerClass.oracle.webcenter.page=oracle.webcenter.spaces.internal.model.GroupSpacePageResourceAuthorizer -Djrockit.codegen.newlockmatching=true -Dwc.oracle.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper -Dportlet.oracle.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper -Dweblogic.ejb.container.MDBDestinationPollIntervalMillis=30000 -Dweblogic.mdb.message.MinimizeAQSessions=true -Doracle.jdbc.createDescriptorUseCurrentSchemaForSchemaName=true -Djbo.ampool.minavailablesize=0 -Djbo.recyclethreshold=25 -Dbip.client.config.dir=/home/xxxxxxxx/XMLPClientConfigDir -Dweblogic.SocketReaders=3 -Djava.awt.headless=true -Dweblogic.transaction.blocking.commit=true -Dweblogic.transaction.blocking.rollback=true -Doracle.ecsf.crawl.mode.debug=true -Doracle.ecsf.applcore.session.enabled=true -DLWSSESSIONCONTEXT=oracle.apps.fnd.applcore.common.ApplSessionManagement -Dlog4j.debug=true -Djps.app.credential.overwrite.allowed=true -Dodi.oracle.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper -Dess.oracle.home=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_wls1035/profiles/default/sysext_manifest_classpath:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_jdev1111/profiles/default/sysext_manifest_classpath -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    Repository : /tmp/2011_08_20_19_02_53_18628
    java.home : /scratch/software/bea/jrockit/jre
    j.class.path : /scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_jdev1111/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/scratch/software/bea/jrockit/lib/tools.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/lib/weblogic_sp.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/lib/weblogic.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/modules/features/weblogic.server.modules_10.3.5.0.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/lib/webservices.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/wcps-lib/derby-10.6.1.0.jar:/scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/wcps-lib/derbytools-10.6.1.0.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper/modules/oracle.ess_11.1.1/ess-sec.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper/webcenter/modules/oracle.portlet.server_11.1.1/oracle-portlet-api.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/oracle_common/modules/oracle.jrf_11.1.1/jrf.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/jdeveloper/webcenter/modules/wcps_11.1.1.4.0/wcps-connection-mbeans.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/common/derby/lib/derbyclient.jar:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/lib/xqrl.jar
    j.lib.path : /scratch/software/bea/jrockit/jre/lib/amd64/jrockit:/scratch/software/bea/jrockit/jre/lib/amd64:/scratch/software/bea/jrockit/jre/../lib/amd64:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_wls1035/profiles/default/native:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_jdev1111/profiles/default/native:/ade_autofs/ade_fusion_linux/JDK6_MAIN_LINUX.rdd/090126.6.11.FCS.B03/jdk6/jre/lib/i386/server:/ade_autofs/ade_fusion_linux/JDK6_MAIN_LINUX.rdd/090126.6.11.FCS.B03/jdk6/jre/lib/i386:/ade_autofs/ade_fusion_linux/JDK6_MAIN_LINUX.rdd/090126.6.11.FCS.B03/jdk6/jre/../lib/i386:/usr/lib:/ade/xxxxxxxx_fixcommit/dmsc/lib:/ade/xxxxxxxx_fixcommit/ldap/bin:/ade/xxxxxxxx_fixcommit/oracle/lib:/ade/xxxxxxxx_fixcommit/atgpf/lib/linuxx64:/ade/xxxxxxxx_fixcommit/fusionapps/lib/linuxx64:/ade/xxxxxxxx_fixcommit/fusionapps/hcm/pyt/lib/linuxx64:/ade/xxxxxxxx_fixcommit/bishiphome/dist/clients/epm/Essbase/EssbaseRTC/bin:/ade/xxxxxxxx_fixcommit/opmn/lib:/ade/xxxxxxxx_fixcommit/fatp/linuxx64/demantra/bin:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/native/linux/i686:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/native/linux/i686/oci920_8
    JAVA_HOME : /scratch/software/bea/jrockit
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /scratch/software/bea/jrockit/jre/lib/amd64/jrockit:/scratch/software/bea/jrockit/jre/lib/amd64:/scratch/software/bea/jrockit/jre/../lib/amd64:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_wls1035/profiles/default/native:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/patch_jdev1111/profiles/default/native:/ade_autofs/ade_fusion_linux/JDK6_MAIN_LINUX.rdd/090126.6.11.FCS.B03/jdk6/jre/lib/i386/server:/ade_autofs/ade_fusion_linux/JDK6_MAIN_LINUX.rdd/090126.6.11.FCS.B03/jdk6/jre/lib/i386:/ade_autofs/ade_fusion_linux/JDK6_MAIN_LINUX.rdd/090126.6.11.FCS.B03/jdk6/jre/../lib/i386:/usr/lib:/ade/xxxxxxxx_fixcommit/dmsc/lib:/ade/xxxxxxxx_fixcommit/ldap/bin:/ade/xxxxxxxx_fixcommit/oracle/lib:/ade/xxxxxxxx_fixcommit/atgpf/lib/linuxx64:/ade/xxxxxxxx_fixcommit/fusionapps/lib/linuxx64:/ade/xxxxxxxx_fixcommit/fusionapps/hcm/pyt/lib/linuxx64:/ade/xxxxxxxx_fixcommit/bishiphome/dist/clients/epm/Essbase/EssbaseRTC/bin:/ade/xxxxxxxx_fixcommit/opmn/lib:/ade/xxxxxxxx_fixcommit/fatp/linuxx64/demantra/bin:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/native/linux/i686:/scratch/software/mw_local/FMWTOOLS_11.1.1.5.0_GENERIC_110330.1115/xxxxxxxx/mw_home/wlserver_10.3/server/native/linux/i686/oci920_8
    LD_ASSUME_KERNEL: <not set>
    LD_PRELOAD : <not set>
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    C Heap : Good; no memory allocations have failed
    GC Strategy : Mode: throughput, with strategy: genparpar (basic strategy: genparpar)
    GC Status : OC is not running. Last finished OC was OC#18.
    : YC is not running. Last finished YC was YC#150.
    YC Promotion : Last YC successfully promoted all objects
    YC History : Ran 7 YCs before OC#14.
    : Ran 3 YCs before OC#15.
    : Ran 26 YCs before OC#16.
    : Ran 9 YCs before OC#17.
    : Ran 18 YCs before OC#18.
    : Ran 9 YCs since last OC.
    Heap : 0xa0000000 - 0xbf417000 (Size: 500 MB)
    Heap History : OC#7 - 0xb0000000 (256 MB -> 303 MB; +47856 KB)
    : OC#11 - 0xb2ebc000 (303 MB -> 343 MB; +41060 KB)
    : OC#12 - 0xb56d5000 (343 MB -> 393 MB; +51672 KB)
    : OC#15 - 0xb894b000 (393 MB -> 443 MB; +50700 KB)
    : OC#16 - 0xbbace000 (443 MB -> 500 MB; +58660 KB)
    Compaction : (no compaction area)
    Allocation : TLA-min: 2048, TLA-preferred: 65536 TLA-waste limit: 2048
    NurseryList : 0xa1ac4930 - 0xb2659cf8
    KeepArea : 0xad7221e8 - 0xaea1a448
    KA Markers : [ 0xad7221e8,  0xaea1a448 , 0xb2659cf8 ]
    Forbidden A : (none)
    Previous KA : 0xaea1a448 - 0xb2659cf8
    Previous FA : (none)
    CompRefs : References are compressed, with heap base 0x0 and shift 0.
    Registers (from ThreadContext: 0x40ee7820:
    rax = 0000000000000000 rcx = 74752f6176616a4c
    rdx = 0000000040ee7d60 rbx = 0000000000000000
    rsp = 0000000040ee7c60 rbp = 0000000040ee7c90
    rsi = 0000000000000001 rdi = 000000000d0b37e0
    r8 = 003b7465532f6c69 r9 = 0000000000000001
    r10 = 0000000000000000 r11 = 0000000000000001
    r12 = 0000000000000001 r13 = 0000000040ee7d58
    r14 = 0000000040ee7d60 r15 = 000000000db4d368
    cs = 0000000000000033 fs = 0000000400000000
    gs = 0004000000000000
    rip = 00002ad027bc7a63 flags = 0000000000000202
    Loaded modules:
    (* denotes the module where the exception occured)
    0000000000400000-0000000000412703 /scratch/software/bea/jrockit/bin/java
    000000379b800000-000000379b801f93 /lib64/libdl.so.2
    000000379c000000-000000379c0156ff /lib64/libpthread.so.0
    000000379b400000-000000379b54ced7 /lib64/libc.so.6
    000000379a400000-000000379a41bb3f /lib64/ld-linux-x86-64.so.2
    00002ad027a60000-00002ad027d65343 */scratch/software/bea/jrockit/jre/lib/amd64/jrockit/libjvm.so
    00002ad02803f000-00002ad02805d9eb /scratch/software/bea/jrockit/jre/lib/amd64/libosal.so
    00002ad028260000-00002ad02826c4fb /scratch/software/bea/jrockit/jre/lib/amd64/libutil.so
    000000379bc00000-000000379bc8122f /lib64/libm.so.6
    000000379f400000-000000379f406e8b /lib64/librt.so.1
    00002aaaaac00000-00002aaaaac35c17 /scratch/software/bea/jrockit/jre/lib/amd64/libjdwp.so
    00002aaaaad3f000-00002aaaaad41307 /scratch/software/bea/jrockit/jre/lib/amd64/libnpt.so
    00002aaaaae49000-00002aaaaae54d03 /scratch/software/bea/jrockit/jre/lib/amd64/libjfr.so
    00002aaaee50b000-00002aaaee517337 /scratch/software/bea/jrockit/jre/lib/amd64/libverify.so
    00002aaaee61a000-00002aaaee64219b /scratch/software/bea/jrockit/jre/lib/amd64/libjava.so
    00000037a2000000-00000037a20140c7 /lib64/libnsl.so.1
    00002aaaee789000-00002aaaee78f5bf /scratch/software/bea/jrockit/jre/lib/amd64/native_threads/libhpi.so
    00002aaaee954000-00002aaaee961bc3 /scratch/software/bea/jrockit/jre/lib/amd64/libzip.so
    00002aaaeeb28000-00002aaaeeb2ae73 /scratch/software/bea/jrockit/jre/lib/amd64/libdt_socket.so
    00002aaaeec7b000-00002aaaeec8464b /lib64/libnss_files.so.2
    00002aaaef086000-00002aaaef098d1f /scratch/software/bea/jrockit/jre/lib/amd64/libnet.so
    00002aaaef652000-00002aaaef657f43 /scratch/software/bea/jrockit/jre/lib/amd64/liborii.so
    00002aaaef919000-00002aaaef91f97b /scratch/software/bea/jrockit/jre/lib/amd64/libnio.so
    00002aaaf4840000-00002aaaf484547b /scratch/software/bea/jrockit/jre/lib/amd64/libmanagement.so
    00002aaaf740f000-00002aaaf7418bbb /scratch/software/bea/jrockit/jre/lib/amd64/libjmapi.so
    00002aab02cbe000-00002aab02cbe8bb /scratch/software/bea/jrockit/jre/lib/amd64/librmi.so
    00002aab05c3e000-00002aab05ccf86b /scratch/software/bea/jrockit/jre/lib/amd64/libawt.so
    00002aab05e0d000-00002aab05e1199f /scratch/software/bea/jrockit/jre/lib/amd64/headless/libmawt.so
    00002aab09453000-00002aab094cb21f /scratch/software/bea/jrockit/jre/lib/amd64/libfontmanager.so
    Stack:
    (* marks the word pointed to by the stack pointer)
    0000000040ee7c60: 000000000d133ac0* 00002aaaf31531d0 0000000000000000 0000000040ee7d50
    0000000040ee7c80: 0000000040ee7d58 000000000d0b37e0 0000000040ee7cd0 00002ad027bb10bf
    0000000040ee7ca0: 0000000000000001 0000000000000064 000000000dd11ed0 000000000d0b37e0
    0000000040ee7cc0: 0000000040ee7d60 0000000040ee7d58 0000000040ee7d40 00002ad027bb2404
    0000000040ee7ce0: 0000000040ee7d60 000000000dd11ed0 0000000040ee7d50 00002aab08b2ea20
    0000000040ee7d00: 0000000012469d70 00002aab08b2ea20 00002aab08b25a38 00002aaaaad360f0
    Code:
    (* marks the word pointed to by the instruction pointer)
    00002ad027bc7a00: 00401f0fd7ebed31 480010b89f058d4c 8d48001249050d8d 3d8d48001025bb35
    00002ad027bc7a20: 000018ba001024f1 ffed6d18e8c03100 2e66666666669eeb 0000000000841f0f
    00002ad027bc7a40: e865894ce5894855 48f48949f875894c 48f06d894ce05d89 8949f6854830ec83
    00002ad027bc7a60: 481246b70f4d74d6* 4c01688d4cd8558d 85fffffd99e8ee89 7d8b481775c389c0
    00002ad027bc7a80: ea894c24348b49d8 458b48ffed793be8 8b4cd889068949d8 8b4ce05d8b48e865
    00002ad027bc7aa0: c3c9f8758b4cf06d 0000000000841f0f 89fffffea9e8f631 0000441f0fd9ebc3
    Last optimized methods:
    No methods optimized.
    Thread:
    "JDWP Transport Listener: dt_soc" id=10 idx=0x30 tid=18640 lastJavaFrame=0xfffffffffffffffc
    Stack 0: start=0x40ea7000, end=0x40ee9000, guards=0x40eac000 (ok), forbidden=0x40eaa000
    Thread Stack Trace:
    at jvmtiIStrdup+35(jvmtimemory.c:111)@0x2ad027bc7a63
    at get_name_and_signatures+110(jvmticlass.c:931)@0x2ad027bb10bf
    at jvmti_GetFieldName+611(jvmticlass.c:283)@0x2ad027bb2404
    at fieldSignature+108()@0x2aaaaac27bdd
    -- Java stack --
    Memory usage report:
    Total mapped 3530424KB (reserved=2192956KB)
    - Java heap 1572864KB (reserved=1060772KB)
    - GC tables 52620KB
    - Thread stacks 32156KB (#threads=84)
    - Compiled code 1048576KB (used=37710KB)
    - Internal 1416KB
    - OS 298768KB
    - Other 192248KB
    - Classblocks 18688KB (malloced=18313KB #46446)
    Not tracing sites.
    - Java class data 312064KB (malloced=310392KB #215032 in 46446 classes)
    Not tracing sites.
    - Native memory tracking 1024KB (malloced=153KB #10)
    Not tracing sites.
    Set the env variable TRACE_ALLOC_SITES=1 or use the print_memusage switch
    trace_alloc_sites=true to enable alloc site tracing.
    * If you see this dump, please go to *
    * http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html *
    * for troubleshooting information. *
    ===== END DUMP ===============================================================
    /scratch/xxxxxxxx/view_storage/xxxxxxxx_fixcommit/.jdev_user_home/system11.1.1.5.37.59.86/DefaultDomain/bin/startWebLogic.sh: line 180: 18628 Aborted ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy ${JAVA_OPTIONS} ${PROXY_SETTINGS} ${SERVER_CLASS}
    Debugger connection to debuggee process has been lost.
    [Server Instance IntegratedWebLogicServer is shutting down.  All applications currently running will be terminated and undeployed.]

    Hi DH,
    This is a known issue to the engineering team and a future release will include a fix for this. Unfortunately, at this point there is no work around available.
    I will recommend that you keep an eye on our release notes page to get more updates on it - Release notes | Adobe Muse CC
    - Abhishek Maurya

  • Aperture crashes with the following error:  Exception Type:  EXC_BAD_ACCESS

    Aperture is crashing constantly on me when building previews. If I disable previews at load time by canceling the task, it sometimes stays up and running. It seems as if the issue is related to a bad master image and the preview creation for that image. I can't find the image and don't know of any tools that will help me identify it. I also tried to eliminate the bad image by loading one project at a time and can't seem to find it. I also eliminated the individual projects one by one without luck.I finally tried to rebuild the DB, do a consistency check, and load from vault. The rebuild and CC fail and crash in a similar manner when 75-90% complete.
    This is a major issue because all of my photography is locked in numerous vaults (all bad) and the master DB. I'm about ready to switch to Lightroom because Apple support doesn't help (I'm over 3 months).
    Running Aperture 2.1.2 and the error log is below.
    Process: Aperture [416]
    Path: /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier: com.apple.Aperture
    Version: 2.1.2 (2.1.2)
    Build Info: Aperture-810100300~3
    Code Type: X86 (Native)
    Parent Process: launchd [84]
    Date/Time: 2008-10-27 20:06:45.517 -0400
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00000000237ee000
    Crashed Thread: 21
    Please help, this is killing me.
    Eric

    Aperture is crashing constantly on me when building previews. If I disable previews at load time by canceling the task, it sometimes stays up and running. It seems as if the issue is related to a bad master image and the preview creation for that image. I can't find the image and don't know of any tools that will help me identify it. I also tried to eliminate the bad image by loading one project at a time and can't seem to find it. I also eliminated the individual projects one by one without luck.I finally tried to rebuild the DB, do a consistency check, and load from vault. The rebuild and CC fail and crash in a similar manner when 75-90% complete.
    This is a major issue because all of my photography is locked in numerous vaults (all bad) and the master DB. I'm about ready to switch to Lightroom because Apple support doesn't help (I'm over 3 months).
    Running Aperture 2.1.2 and the error log is below.
    Process: Aperture [416]
    Path: /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier: com.apple.Aperture
    Version: 2.1.2 (2.1.2)
    Build Info: Aperture-810100300~3
    Code Type: X86 (Native)
    Parent Process: launchd [84]
    Date/Time: 2008-10-27 20:06:45.517 -0400
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00000000237ee000
    Crashed Thread: 21
    Please help, this is killing me.
    Eric

  • After I installed Lion OS, my mac has been crashing with the following message.

    Interval Since Last Panic Report:  38342 sec
    Panics Since Last Report:          4
    Anonymous UUID:                    B997CC08-BD38-425F-82A0-827B5C4D51AA
    Sat Oct 15 16:02:36 2011
    panic(cpu 1 caller 0xffffff80002c266d): Kernel trap at 0xffffff80005577a4, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000008, CR3: 0x0000000000100000, CR4: 0x0000000000000660
    RAX: 0x0000000000000000, RBX: 0x0000000000000008, RCX: 0x0000000000000020, RDX: 0xffffff8003b75790
    RSP: 0xffffff807887af10, RBP: 0xffffff807887af10, RSI: 0xffffff800b5ed760, RDI: 0x0000000000000008
    R8:  0xffffff807887aee8, R9:  0xffffff80008d8d40, R10: 0x0000000000002710, R11: 0xffffff80002d8220
    R12: 0x0000000000000246, R13: 0xffffff807887af10, R14: 0x0000000000000001, R15: 0xffffff807887b020
    RFL: 0x0000000000010282, RIP: 0xffffff80005577a4, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000000000000008, Error code: 0x0000000000000000, Faulting CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff807887abd0 : 0xffffff8000220702
    0xffffff807887ac50 : 0xffffff80002c266d
    0xffffff807887adf0 : 0xffffff80002d7a1d
    0xffffff807887ae10 : 0xffffff80005577a4
    0xffffff807887af10 : 0xffffff7f8186142b
    0xffffff807887af60 : 0xffffff8000344daa
    0xffffff807887b070 : 0xffffff80003c331d
    0xffffff807887b2e0 : 0xffffff80003cae99
    0xffffff807887b380 : 0xffffff80003cb38e
    0xffffff807887b570 : 0xffffff80003c85b7
    0xffffff807887bbc0 : 0xffffff80003bda3e
    0xffffff807887bc10 : 0xffffff80003bf585
    0xffffff807887bdb0 : 0xffffff80003bf6fd
    0xffffff807887bdd0 : 0xffffff8000361f90
    0xffffff807887be00 : 0xffffff8000346860
    0xffffff807887be90 : 0xffffff8000341221
    0xffffff807887bec0 : 0xffffff8000345b86
    0xffffff807887bf60 : 0xffffff8000340e79
    0xffffff807887bfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.eltima.ElmediaPlayer.kext(1.0)[B9CBA7AD-5027-7325-7145-E860E49C0C58]@0xffff ff7f81860000->0xffffff7f81862fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11C74
    Kernel version:
    Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64
    Kernel UUID: 59275DFA-10C0-30B3-9E26-F7B5DFB1A432
    System model name: MacBookPro5,4 (Mac-F22587A1)
    System uptime in nanoseconds: 17593566646205
    last loaded kext at 13642661130876: com.apple.iokit.IOAVBFamily          1.0.0d22 (addr 0xffffff7f80878000, size 36864)
    last unloaded kext at 13702669586573: com.apple.iokit.IOEthernetAVBController          1.0.0d5 (addr 0xffffff7f80873000, size 20480)
    loaded kexts:
    com.symantec.kext.fw          1.0.3f5
    com.symantec.kext.filesecurity          1.3.3f65
    com.eltima.ElmediaPlayer.kext          1.0
    com.symantec.kext.pf          4.1.1f13
    com.symantec.kext.internetSecurity          1.3.2f5
    com.apple.filesystems.smbfs          1.7.0
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AGPM          100.12.42
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.1.3f7
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.1
    com.apple.driver.AppleMikeyDriver          2.1.3f7
    com.apple.GeForce          7.1.2
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.0.1
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AirPort.Brcm4331          512.20.18
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.nvenet          2.0.17
    com.apple.driver.AppleUSBEHCI          4.5.0
    com.apple.driver.AppleUSBOHCI          4.4.5
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          167.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.1.3f7
    com.apple.driver.AppleHDAController          2.1.3f7
    com.apple.iokit.IOHDAFamily          2.1.3f7
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          4.0.1f4
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.nvidia.nv50hal          7.1.2
    com.apple.NVDAResman          7.1.2
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.1f4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.1f4
    com.apple.iokit.IOBluetoothFamily          4.0.1f4
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.1
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.1
    com.apple.iokit.IO80211Family          411.1
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IOUSBUserClient          4.5.3
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOUSBFamily          4.5.3
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.100.98.75.18)
    Bluetooth: Version 4.0.1f4, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2250BH FFS G1, 250.06 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8217, 0x06110000 / 5

    Most likely culprit is the  com.eltima.ElmediaPlayer.kext(1.0)
    Others are these:
    com.symantec.kext.fw          1.0.3f5
    com.symantec.kext.filesecurity          1.3.3f65
    com.eltima.ElmediaPlayer.kext          1.0
    com.symantec.kext.pf          4.1.1f13
    com.symantec.kext.internetSecurity          1.3.2f5
    See:
    What is a kernel panic,
    Technical Note TN2063: Understanding and Debugging Kernel Panics,
    Mac OS X Kernel Panic FAQ,
    Resolving Kernel Panics, and
    Tutorial: Avoiding and eliminating Kernel panics for more details.

  • Muse crashed with the following message:

    I was adjusting the slider that sets the position of the bottom of the page when it crashed.  Not sure it was the cause mind you.

    Hi DH,
    This is a known issue to the engineering team and a future release will include a fix for this. Unfortunately, at this point there is no work around available.
    I will recommend that you keep an eye on our release notes page to get more updates on it - Release notes | Adobe Muse CC
    - Abhishek Maurya

  • Hashtables: What on earth is wrong with the following code!?

    I'm loosing my mind here:
    [jdk1.4.2]
    //random code...
            Hashtable threads = new Hashtable(20);
            threads.put(portNum, ipThread); //portNum is of type int
                                            //ipThread is of type ThreadX, ThreadX extends Thread
    //other code...
            ThreadX t;
            t = (ThreadX)threads.get(packet.getPort());  //packet.getPort() returns an INTAnd the compiler returns this:
    path>javac *.java
    IPServer.java:58: cannot resolve symbol
    symbol : method put (int,ThreadX)
    location: class java.util.Hashtable
    threads.put(destinationPort, ipThread);
    ^
    IPServer.java:67: cannot resolve symbol
    symbol : method get (int)
    location: class java.util.Hashtable
    t = (ThreadX)threads.get(packet.getPort());
    ^
    2 errors
    Thanks ahead of time.

    From the JDK 1.4.2 documentation
    "This class implements a hashtable, which maps keys to values. Any non-null object can be used as a key or as a value.
    To successfully store and retrieve objects from a hashtable, the objects used as keys must implement the hashCode method and the equals method. "
    I assumed from that an int or double or any other primitive, which implements both the hashCode and equals method, would work.

Maybe you are looking for

  • Can't send mail with WiFi on-ok with only 3G running

    Using AT&T 3G network, Time Warner RoadRunner via Airport Express. I can download ok with both wifi and 3G running. But when I try to send, the msg just sits in th Outbox. IPhone 4 with latest OS. I'm using MS Entourage on my iMac as POP server.  I c

  • Max. no. of values can be uploaded to variable

    Hi All, Does any body knows what is the mx. no. of values can be uploaded for variable of type user entry/selection option. Using selection option we can upload values of variable from flat file/clip board right Im on BW 3.1c excel 2000 GUI 640 Thank

  • Should iPhone remember connection to a "closed network?"

    I chose to keep my network closed by configuring my Airport Extreme to not broadcast it's network name. Laptops have no trouble remember the settings for my closed network after just one configuration. I just got my new iPhone connected to my Airport

  • Data in Customer Group Field according to the sales area

    I have two sales area, i.e. 1000,10,10 (area1) and 1000,20,10. (area2) configured in the sap. i want that when user creates a customer for area1, then he get different data in list in "customer group field" in sales area in sales tab i.e. group1, gro

  • Problems with IISProxy Module (IIS and EP6.0 on different servers)

    Hi I am trying to configure IIS 6, I have followed all the instructions outlined in the document "Installing the IIS Proxy Module" and followed the note 715303. When i try to access the the link http://ep6idc91.***.com I get the under construction ma