JVM crashed when applet is loaded in browser

when applet is loaded in browser after some time JVM crashedwith hs error log.
i am using
JRE 1.6.0_10,
1GB RAM,
XP SP3,
IE6
Error log
# An unexpected error has been detected by Java Runtime Environment:
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d02bd1d, pid=6032, tid=4772
# Java VM: Java HotSpot(TM) Client VM (11.0-b15 mixed mode windows-x86)
# Problematic frame:
# C [awt.dll+0x2bd1d]
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

It appears from the following statement that a native code process failed when called by the jvm.
The crash happened outside the Java Virtual Machine in native code.Not much more can be said. The cause does not appear to Java code.

Similar Messages

  • ActionPerformed method not working when applet is loaded in browser window.

    Hey there guys. I need urgent help from anybody who has experience in deploying websites whose code is in java.
    I am having two problems as mentioned below...
    first, I have made a simple login screen using java swing and JApplet. there is a single button to login. the action performed for this button accesses a private method to check the username and password which are there in atext file. the applet is working perfectly in appletviewer but when i load the applet in a Internet Explorer window using HTML's Applet tag, the button is giving no response at all even when i enter the correct username and password.
    I guess it is either not calling the private function that is checking the username and password from the tes=xt file or it can not access the file. Please help as soon as possible as this is related to my college project.
    I am attaching the code herewith. Suggestions to improve the coding are also welcome.
    the second problem is that while writing my second program for generating a form which registers a user the html is not at all loading the applet into the browser and also if im trying to access a file to write all the details into the console is showing numerous amount of error after i press the button which i can't not understand. the only thing i can understand is that it is related to file access permissions. If anybody could put some light on the working of worker threads and thread safe activities of SwingUtilities.invokeandWait method it would be really appreciable.
    import java.io.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.plaf.*;
    <applet code = "UserLogin" width = 300 height = 150>
    </applet>
    public class UserLogin extends JApplet implements ActionListener, KeyListener {
         private JLabel lTitle;
         private JLabel lUsername, lPassword;
         private JTextField tUsername;
         private JPasswordField tPassword;
         private JButton bLogin;
         private JLabel lLinkRegister, lLinkForgot;
         private JLabel lEmpty = new JLabel(" ", JLabel.CENTER);
         private JPanel panel1, panel2;
         public void init() {
              try {
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                   SwingUtilities.invokeAndWait(new Runnable() {
                        public void run() {
                             LoginGUI();
              catch(Exception e) {
                   e.printStackTrace();
         public void start() {
              setVisible(true);
         public void stop() {
              setVisible(false);
         private void LoginGUI() {
              super.setSize(300, 150);
              super.setBackground(Color.white);
              lTitle = new JLabel("<HTML><BODY><FONT FACE = \"COURIER NEW\" SIZE = 6 COLOR = BLUE>Login</FONT></BODY></HTML>", JLabel.CENTER);
              lUsername = new JLabel("Username : ", JLabel.CENTER);
              lPassword = new JLabel("Password : ", JLabel.CENTER);
              tUsername = new JTextField(15);
              tPassword = new JPasswordField(15);
              bLogin = new JButton("LOGIN");
    //          bLogin.setEnabled(false);
              bLogin.addActionListener(this);
              bLogin.addKeyListener(this);
              panel2 = new JPanel();
              GridBagLayout gbag = new GridBagLayout();
              GridBagConstraints gbc = new GridBagConstraints();
              panel2.setLayout(gbag);
              panel2.addKeyListener(this);
              gbc.anchor = GridBagConstraints.CENTER;
              panel2.setMinimumSize(new Dimension(300, 200));
              panel2.setMaximumSize(panel2.getMinimumSize());
              panel2.setPreferredSize(panel2.getMinimumSize());
              gbc.gridx = 1;
              gbc.gridy = 1;
              gbag.setConstraints(lUsername,gbc);
              panel2.add(lUsername);
              gbc.gridx = 2;
              gbc.gridy = 1;
              gbag.setConstraints(tUsername,gbc);
              panel2.add(tUsername);
              gbc.gridx = 1;
              gbc.gridy = 2;
              gbag.setConstraints(lPassword,gbc);
              panel2.add(lPassword);
              gbc.gridx = 2;
              gbc.gridy = 2;
              gbag.setConstraints(tPassword,gbc);
              panel2.add(tPassword);
              gbc.gridx = 2;
              gbc.gridy = 3;
              gbag.setConstraints(lEmpty,gbc);
              panel2.add(lEmpty);
              gbc.gridx = 2;
              gbc.gridy = 4;
              gbag.setConstraints(bLogin,gbc);
              panel2.add(bLogin);
              panel1 = new JPanel(new BorderLayout());
              panel1.add(lTitle, BorderLayout.NORTH);
              panel1.add(panel2, BorderLayout.CENTER);
              add(panel1);
              setVisible(true);
         public void keyReleased(KeyEvent ke) {}
         public void keyTyped(KeyEvent ke) {}
         public void keyPressed(KeyEvent ke) {
              if(ke.getKeyCode() == KeyEvent.VK_ENTER){
                   String username = tUsername.getText();
                   String password = new String(tPassword.getPassword());
                   if(username.length() == 0 || password.length() == 0) {
                        JOptionPane.showMessageDialog(new JFrame(),"You must enter a username and password to login", "Error", JOptionPane.ERROR_MESSAGE);
                   else {
                        boolean flag = checkUsernamePassword(username, password);
                        if(flag)
                             JOptionPane.showMessageDialog(new JFrame(),"Username and Password Accepted", "Access Granted", JOptionPane.INFORMATION_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(new JFrame(),"Username or password Incorrect", "Access Denied", JOptionPane.INFORMATION_MESSAGE);
         public void actionPerformed(ActionEvent ae) {
              String gotCommand = ae.getActionCommand();
              if(gotCommand.equals("LOGIN")) {
                   String username = tUsername.getText();
                   String password = new String(tPassword.getPassword());
                   if(username.length() == 0 || password.length() == 0) {
                        JOptionPane.showMessageDialog(new JFrame(),"You must enter a username and password to login", "Error", JOptionPane.ERROR_MESSAGE);
                   else {
                        boolean flag = checkUsernamePassword(username, password);
                        if(flag)
                             JOptionPane.showMessageDialog(new JFrame(),"Username and Password Accepted", "Access Granted", JOptionPane.INFORMATION_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(new JFrame(),"Username or password Incorrect", "Access Denied", JOptionPane.INFORMATION_MESSAGE);
         private boolean checkUsernamePassword(String username, String password) {
              String user = null, pswd = null;
              try {
                   FileInputStream fin = new FileInputStream("@data\\userpass.txt");
                   DataInputStream din = new DataInputStream(fin);
                   BufferedReader brin = new BufferedReader(new InputStreamReader(din));
                   user = (String) brin.readLine();
                   pswd = (String) brin.readLine();
              catch(IOException ioe) {
                   ioe.printStackTrace();
              if(username.equals(user) && password.equals(pswd))
                   return true;
              else
                   return false;
    }PLEASE HELP ME GUYS......

    RockAsh wrote:
    Hey Andrew, first of all sorry for that shout, it was un-intentional as i am new to posting topics on forums and didn't new that this kind of writing is meant as shouting. Cool.
    Secondly thank you for taking interest in my concern.No worries.
    Thirdly, as i mentioned before, I am reading i file for checking of username and password. the file is named as "userpass.txt" and is saved in the directory named "@data" which is kept in the same directory in which my class file resides.OK - server-side. That makes some sense, and makes things easier. The problem with your current code is that the applet will be looking for that directory on the end user's local file system. Of course the file does not exist there, so the applet will fail unless the the end user is using the same machine as the server is coming from.
    To get access to a resource on the server - the place the applet lives - requires an URL. In applets, URLs are relatively easy to form. It might be something along the lines of
    URL urlToPswrd = new URL(getCodeBase(), "@data/userpass.txt");
    InputStream is = urlToPswrd.openStream();
    DataInputStream din = new DataInputStream(is);
    So the problem is that it is reading the file and showing the specific output dialog box when i run it through appletviewer.. Huhh. What version of the SDK are you using? More recent applet viewers should report security exceptions if the File exists.
    ..but the same is not happening when i launch the applet in my browser window using the code as written belowHave you discovered how to open the Java Console in the browser yet? It is important.
    Also the answer to your second question
    Also, the entire approach to storing/restoring the password is potentially wrong. For instance, where is it supposed to be stored, on the server, or on the client?is that, as of now it is just my college project so all the data files and the username and password wiles will be stored on my laptop only i.e. on the client only. no server involved.OK, but understand that an applet ultimately does not make much sense unless deployed through a server. And the entire server/client distinction becomes very important, since that code would be searching for a non-existent file on the computer of the end user.

  • JVM crashed when attempting to load native binaries on SUSE

    Hello!
    We have a java application that calls at some point C++ code in form of specific OS binaries. We tested for RedHat and SUSE - for the first OS it worked fine but for SUSE I got:
    {color:#ff0000}#
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGFPE (0x8) at pc=0xf7f4a1fb, pid=21443, tid=4149328800
    # JRE version: 6.0_14-b08
    # Java VM: Java HotSpot(TM) Client VM (14.0-b16 mixed mode linux-x86 )
    # Problematic frame:
    # C [ld-linux.so.2+0x91fb]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    T H R E A D
    Current thread (0x08059000): JavaThread "main" [_thread_in_native, id=21448, stack(0xf749b000,0xf751c000)]
    siginfo:si_signo=SIGFPE: si_errno=0, si_code=1 (FPE_INTDIV), si_addr=0xf7f4a1fb
    Registers:
    EAX=0x0df0d414, EBX=0xf7f5bff4, ECX=0x093522b0, EDX=0x00000000
    ESP=0xf7517b84, EBP=0xf7517be0, ESI=0x0935245c, EDI=0xf7517c6c
    EIP=0xf7f4a1fb, CR2=0xf7f33100, EFLAGS=0x00010246
    Top of Stack: (sp=0xf7517b84)
    0xf7517b84: ea91ab8b dc5cdb74 00000009 f7f04164
    0xf7517b94: dc5ccb9c 0df0d414 dc5cdb74 f7f4e389
    0xf7517ba4: 00000008 093522b0 dc5cb3ec dc5cdafc
    0xf7517bb4: dc5d4030 00000000 00000000 09053344
    0xf7517bc4: f7f5bff4 f7517ca0 dc5d3fb6 f7517c6c
    0xf7517bd4: f7f5bff4 0935245c f7517c6c f7517c80
    0xf7517be4: f7f4a587 f7517c6c 09352408 00000000
    0xf7517bf4: 00000000 00000001 00000000 00000000
    Instructions: (pc=0xf7f4a1fb)
    0xf7f4a1eb: 8b 8a 94 01 00 00 8b 45 b8 89 4d d4 89 d1 31 d2
    0xf7f4a1fb: f7 b1 6c 01 00 00 8b 81 70 01 00 00 8b 3c 90 85
    Stack: [0xf749b000,0xf751c000], sp=0xf7517b84, free space=498k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ld-linux.so.2+0x91fb]
    C [ld-linux.so.2+0x9587]
    C [ld-linux.so.2+0xabff]
    C [ld-linux.so.2+0x11471]
    C [ld-linux.so.2+0xd3a6]
    C [ld-linux.so.2+0x10cb9]
    C [libdl.so.2+0xe4d]
    C [ld-linux.so.2+0xd3a6]
    C [libdl.so.2+0x12fc]
    C [libdl.so.2+0xd84] dlopen+0x44
    V [libjvm.so+0x3237c9]
    V [libjvm.so+0x288819]
    C [libjava.so+0xbcac] Java_java_lang_ClassLoader_00024NativeLibrary_load+0x6c
    j java.lang.ClassLoader$NativeLibrary.load(Ljava/lang/String;)V+0
    j java.lang.ClassLoader.loadLibrary0(Ljava/lang/Class;Ljava/io/File;)Z+300
    j java.lang.ClassLoader.loadLibrary(Ljava/lang/Class;Ljava/lang/String;Z)V+127
    j java.lang.Runtime.load0(Ljava/lang/Class;Ljava/lang/String;)V+57
    j java.lang.System.load(Ljava/lang/String;)V+7
    j com.boss.media.util.DllUtils.LoadNativeDll(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;+404
    j com.boss.media.engine.StreamingEngine.getInstance(Ljava/lang/String;)Lcom/boss/media/engine/StreamingEngine;+9
    {color:#000000}
    Seems the crash is producing when Suse's ld-linux.so attempts to load our binaries.{color}
    {color}{color:#000000}Does anyone have any idea on what is wrong here?
    Thank you very much
    With best regards,
    Sorin
    {color}

    We tested for RedHat and SUSE - for the first OS it worked fine but for SUSE I got:Either the standard pointer problems leading to a spurious error or some subtle OS difference.
    SIGFPEThat is a pretty specific signal. If the C++ code is not mucking around with numerics then it would suggest a pointer problem. If numerics are involved then that would be the first place to start (noting again that pointer problems can cause spurious errors.)

  • Weird JVM crash when showing DirectoryChooser (DirectoryChooser.showDialog)

    Hello,
    I'm seeing a weird JVM crash when showing a DirectoryChooser by calling DirectoryChooser.showDialog().
    My environment:
    Mac OS X 10.8.2 Mountain Lion
    Java SE 7 1.7.0_06
    Error Output:
    2012-09-25 11:01:02.433 java[4682:707] unrecognized type is -2
    2012-09-25 11:01:02.433 java[4682:707] *** Assertion failure in -[NSEvent _initWithCGSEvent:eventRef:], /SourceCache/AppKit/AppKit-1187.34/AppKit.subproj/NSEvent.m:1348
    2012-09-25 11:01:02.434 java[4682:707] An uncaught exception was raised
    2012-09-25 11:01:02.434 java[4682:707] Invalid parameter not satisfying: cgsEvent.type > 0 && cgsEvent.type <= kCGSLastEventType
    2012-09-25 11:01:02.435 java[4682:707] (
         0   CoreFoundation                      0x00007fff8fc080a6 __exceptionPreprocess + 198
         1   libobjc.A.dylib                     0x00007fff8d75e3f0 objc_exception_throw + 43
         2   CoreFoundation                      0x00007fff8fc07ee8 +[NSException raise:format:arguments:] + 104
         3   Foundation                          0x00007fff849b16a2 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 189
         4   AppKit                              0x00007fff8529f56c -[NSEvent _initWithCGSEvent:eventRef:] + 2782
         5   AppKit                              0x00007fff855203ea +[NSEvent eventWithCGEvent:] + 243
         6   libglass.dylib                      0x00000001a20aa02f listenTouchEvents + 31
         7   CoreGraphics                        0x00007fff873e2115 processEventTapData + 150
         8   CoreGraphics                        0x00007fff873e1f68 _CGYPostEventTapData + 189
         9   CoreGraphics                        0x00007fff873e726a _XPostEventTapData + 107
         10  CoreGraphics                        0x00007fff873e7362 CGYEventTap_server + 106
         11  CoreGraphics                        0x00007fff873e2056 eventTapMessageHandler + 30
         12  CoreFoundation                      0x00007fff8fb77410 __CFMachPortPerform + 288
         13  CoreFoundation                      0x00007fff8fb772d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
         14  CoreFoundation                      0x00007fff8fb77019 __CFRunLoopDoSource1 + 153
         15  CoreFoundation                      0x00007fff8fbaa19f __CFRunLoopRun + 1775
         16  CoreFoundation                      0x00007fff8fba96b2 CFRunLoopRunSpecific + 290
         17  Foundation                          0x00007fff84a3f89e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
         18  libglass.dylib                      0x00000001a20958c4 +[GlassApplication enterNestedEventLoopWithEnv:] + 132
         19  libglass.dylib                      0x00000001a20994f3 -[DialogDispatcher runModal] + 163
         20  Foundation                          0x00007fff84a31220 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 212
         21  Foundation                          0x00007fff84a310c8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 131
         22  libglass.dylib                      0x00000001a209a549 Java_com_sun_glass_ui_mac_MacCommonDialogs__1showFolderChooser + 681
         23  ???                                 0x000000010fa57db1 0x0 + 4557471153
    2012-09-25 11:01:02.436 java[4682:707] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: cgsEvent.type > 0 && cgsEvent.type <= kCGSLastEventType'
    *** First throw call stack:
         0   CoreFoundation                      0x00007fff8fc080a6 __exceptionPreprocess + 198
         1   libobjc.A.dylib                     0x00007fff8d75e3f0 objc_exception_throw + 43
         2   CoreFoundation                      0x00007fff8fc07ee8 +[NSException raise:format:arguments:] + 104
         3   Foundation                          0x00007fff849b16a2 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 189
         4   AppKit                              0x00007fff8529f56c -[NSEvent _initWithCGSEvent:eventRef:] + 2782
         5   AppKit                              0x00007fff855203ea +[NSEvent eventWithCGEvent:] + 243
         6   libglass.dylib                      0x00000001a20aa02f listenTouchEvents + 31
         7   CoreGraphics                        0x00007fff873e2115 processEventTapData + 150
         8   CoreGraphics                        0x00007fff873e1f68 _CGYPostEventTapData + 189
         9   CoreGraphics                        0x00007fff873e726a _XPostEventTapData + 107
         10  CoreGraphics                        0x00007fff873e7362 CGYEventTap_server + 106
         11  CoreGraphics                        0x00007fff873e2056 eventTapMessageHandler + 30
         12  CoreFoundation                      0x00007fff8fb77410 __CFMachPortPerform + 288
         13  CoreFoundation                      0x00007fff8fb772d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
         14  CoreFoundation                      0x00007fff8fb77019 __CFRunLoopDoSource1 + 153
         15  CoreFoundation                      0x00007fff8fbaa19f __CFRunLoopRun + 1775
         16  CoreFoundation                      0x00007fff8fba96b2 CFRunLoopRunSpecific + 290
         17  Foundation                          0x00007fff84a3f89e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
         18  libglass.dylib                      0x00000001a20958c4 +[GlassApplication enterNestedEventLoopWithEnv:] + 132
         19  libglass.dylib                      0x00000001a20994f3 -[DialogDispatcher runModal] + 163
         20  Foundation                          0x00007fff84a31220 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 212
         21  Foundation                          0x00007fff84a310c8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 131
         22  libglass.dylib                      0x00000001a209a549 Java_com_sun_glass_ui_mac_MacCommonDialogs__1showFolderChooser + 681
         23  ???                                 0x000000010fa57db1 0x0 + 4557471153
    libc++abi.dylib: terminate called throwing an exceptionI tried to bring up the DirectoryChooser from a simple HelloWorld program, but can't reproduce the crash.
    Does anyone know how to fix this crash?
    Thanks.
    Edited by: 925616 on Sep 25, 2012 11:16 AM

    Looks like a bug which has been fixed for:
    Java SE 7 1.7.0_10
    You can test out a preview build here:
    http://jdk7.java.net/download.html
    http://javafx-jira.kenai.com/browse/RT-24110
    "Mac: FileChooser sometimes crashes the JVM on Mac OS X 10.8"

  • I recently started using an iPad. I up loaded several apps. Evernote, cloudon, Goodreader, Drop Box and lots of others. It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.  Help

    I recently started using an iPad. I up loaded several apps. Evernote, cloudon, Goodreader, Drop Box and lots of others.
    It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.
    Is there a "hitch" in my "giddy up?"
    Help.
    Process:         iPhoto [345]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [183]
    Date/Time:       2013-04-26 13:53:18.305 -0700
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          405039 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  318933 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      5073147D-D214-4BD3-B7FA-9A9E6A158ABA
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000c8fc0000
    VM Regions Near 0xc8fc0000:
        CG backing stores      00000000c8ea6000-00000000c8f19000 [  460K] rw-/rw- SM=SHM 
    --> CG backing stores      00000000c8fc0000-00000000c92f7000 [ 3292K] r--/rw- SM=SHM 
        Submap                 00000000ffff0000-00000000ffff2000          r-x/r-x process-only submap
    Application Specific Information:
    objc[345]: garbage collection is OFF
    Performing @selector(doSaveAsPDF:) from sender NSMenuItem 0x6da8c240
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreGraphics        0x93976aec blt_pattern_blend_XXXX32 + 686
    1   com.apple.CoreGraphics        0x93976def blt_bitmap_blend_AXXX32 + 105
    2   com.apple.CoreGraphics        0x9355894c argb32_mark_pixelshape + 19824
    3   com.apple.CoreGraphics        0x93485293 argb32_mark + 279
    4   com.apple.CoreGraphics        0x9349c915 argb32_image + 1037
    5   libRIP.A.dylib                0x90afec75 ripd_Mark + 279
    6   libRIP.A.dylib                0x90afcc67 ripl_BltImage + 1368
    7   libRIP.A.dylib                0x90afc497 ripc_RenderImage + 269
    8   libRIP.A.dylib                0x90b08a8c ripc_DrawImages + 6467
    9   com.apple.CoreGraphics        0x935593be CGContextDrawImages + 239
    10  com.apple.coreui              0x94680a79 CUIPenCG::DrawImages(void*, CGRect const*, CGImage**, CGRect const*, unsigned long) + 45
    11  com.apple.coreui              0x94671fc5 CUIRenderer::DrawWindowFrameDark(CUIDescriptor const*) + 4531
    12  com.apple.coreui              0x9465ce0d CUIRenderer::Draw(CGRect, CGContext*, __CFDictionary const*, __CFDictionary const**) + 5701
    13  com.apple.coreui              0x9467dde5 CUIDraw + 206
    14  com.apple.AppKit              0x912a52e4 _NSDrawThemeBackground + 1429
    15  com.apple.AppKit              0x9145edeb -[NSThemeFrame _drawUnifiedToolbar:] + 874
    16  com.apple.AppKit              0x9145e7f3 -[NSThemeFrame _drawTitleBar:] + 673
    17  com.apple.AppKit              0x912a11cf -[NSThemeFrame _drawFrameInterior:clip:] + 125
    18  com.apple.AppKit              0x912a0dd9 -[NSThemeFrame drawFrame:] + 119
    19  com.apple.AppKit              0x9145e515 -[NSFrameView drawRect:] + 765
    20  com.apple.AppKit              0x9145dc5f -[NSThemeFrame drawRect:] + 107
    21  com.apple.AppKit              0x9126f6c9 -[NSView _drawRect:clip:] + 3717
    22  com.apple.AppKit              0x9129eae6 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1958
    23  com.apple.AppKit              0x9126d026 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 708
    24  com.apple.AppKit              0x9126c627 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 259
    25  com.apple.AppKit              0x91267caa -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4817
    26  com.apple.AppKit              0x91260bd9 -[NSView displayIfNeeded] + 1365
    27  com.apple.AppKit              0x9138081b -[NSThemeFrame handleSetFrameCommonRedisplay] + 233
    28  com.apple.AppKit              0x913220b8 -[NSWindow _setFrameCommon:display:stashSize:] + 2253
    29  com.apple.AppKit              0x913217e6 -[NSWindow setFrame:display:] + 71
    30  com.apple.AppKit              0x913c5049 -[NSWindow _setFrameAfterMove:] + 496
    31  com.apple.AppKit              0x913c4e3f -[NSWindow _windowMovedToRect:] + 261
    32  com.apple.AppKit              0x9195152d -[NSWindow _getPositionFromServer] + 100
    33  com.apple.AppKit              0x919542a8 -[NSWindow _initFromGlobalWindow:inRect:styleMask:] + 350
    34  com.apple.RemoteViewServices  0x94640ff9 -[NSRemoteWindowController _remoteHostDidGrantRights:] + 335
    35  com.apple.RemoteViewServices  0x946409a4 __58-[NSRemoteWindowController _handleReplySetupSharedWindow:]_block_invoke_0 + 43
    36  com.apple.CoreGraphics        0x935c740b _WindowRightsGrantOfferedNotificationHandler + 678
    37  com.apple.CoreGraphics        0x93400a3b CGSPostLocalNotification + 218
    38  com.apple.CoreGraphics        0x934cdcfd notifyDatagramHandler + 265
    39  com.apple.CoreGraphics        0x934cda25 CGSDispatchDatagramsFromStream + 316
    40  com.apple.CoreGraphics        0x934cd594 snarfEvents + 481
    41  com.apple.CoreGraphics        0x934cd247 CGSGetNextEventRecordInternal + 127
    42  com.apple.CoreGraphics        0x93520180 CGEventCreateNextEvent + 40
    43  com.apple.HIToolbox           0x9b5a744e _ZL38PullEventsFromWindowServerOnConnectionjh + 69
    44  com.apple.CoreFoundation      0x9585ad0a __CFMachPortPerform + 346
    45  com.apple.CoreFoundation      0x9585ab91 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 49
    46  com.apple.CoreFoundation      0x9585a7bb __CFRunLoopDoSource1 + 155
    47  com.apple.CoreFoundation      0x95893e01 __CFRunLoopRun + 2193
    48  com.apple.CoreFoundation      0x958931dc CFRunLoopRunSpecific + 332
    49  com.apple.CoreFoundation      0x958a3f01 CFRunLoopRun + 129
    50  com.apple.RemoteViewServices  0x9463b7c8 -[NSRemoteSavePanel runModal] + 322
    51  com.apple.RemoteViewServices  0x9463ef05 -[NSRemoteSavePanel runModalForDirectory:file:types:] + 110
    52  com.apple.RemoteViewServices  0x9463ec94 -[NSRemoteSavePanel runModalForDirectory:file:] + 55
    53  com.apple.print.framework.Print.Private 0x1990afa3 AskUserForFile + 420
    54  com.apple.print.framework.Print.Private 0x1991977d 0x198f7000 + 141181
    55  com.apple.print.framework.Print.Private 0x1991ea91 0x198f7000 + 162449
    56  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    57  com.apple.AppKit              0x91329663 -[NSApplication sendAction:to:from:] + 232
    58  com.apple.AppKit              0x9141ccaf -[NSMenuItem _corePerformAction] + 536
    59  com.apple.AppKit              0x9141c92c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 171
    60  com.apple.AppKit              0x9141bfb5 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    61  com.apple.AppKit              0x916f7ef7 -[NSMenu performActionForItemAtIndex:] + 65
    62  com.apple.AppKit              0x916f7f2a -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    63  com.apple.AppKit              0x916fc15b -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    64  com.apple.AppKit              0x91562670 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 172
    65  com.apple.AppKit              0x91392246 NSSLMMenuEventHandler + 452
    66  com.apple.HIToolbox           0x9b71cc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    67  com.apple.HIToolbox           0x9b598313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    68  com.apple.HIToolbox           0x9b597790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    69  com.apple.HIToolbox           0x9b5ac571 SendEventToEventTarget + 76
    70  com.apple.HIToolbox           0x9b71d0d0 _ZL18SendHICommandEventmPK9HICommandmmhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 482
    71  com.apple.HIToolbox           0x9b71d13a SendMenuCommandWithContextAndModifiers + 70
    72  com.apple.HIToolbox           0x9b78898d SendMenuItemSelectedEvent + 275
    73  com.apple.HIToolbox           0x9b5e8d79 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 129
    74  com.apple.HIToolbox           0x9b778752 _ZL19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1898
    75  com.apple.HIToolbox           0x9b778a20 _HandlePopUpMenuSelection7 + 639
    76  com.apple.AppKit              0x91565aa2 _NSSLMPopUpCarbonMenu3 + 4532
    77  com.apple.AppKit              0x9198ab4c _NSPopUpCarbonMenu3 + 107
    78  com.apple.AppKit              0x91563754 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOpti ons:] + 425
    79  com.apple.AppKit              0x91787b78 -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 610
    80  com.apple.AppKit              0x91327243 -[NSControl mouseDown:] + 943
    81  com.apple.AppKit              0x912f0dcd -[NSWindow sendEvent:] + 7533
    82  com.apple.AppKit              0x91289f77 -[NSApplication sendEvent:] + 4788
    83  com.apple.iLifeKit            0x0201dc9b -[iLifeKit sendEvent:] + 55
    84  com.apple.iPhoto              0x0012c344 0xac000 + 525124
    85  com.apple.AppKit              0x914f1662 -[NSApplication _modalSession:sendEvent:] + 550
    86  com.apple.AppKit              0x914f122c -[NSApplication _realDoModalLoop:peek:] + 638
    87  com.apple.AppKit              0x914ec481 -[NSApplication _doModalLoop:peek:] + 69
    88  com.apple.AppKit              0x914f0f08 -[NSApplication runModalForWindow:] + 258
    89  com.apple.AppKit              0x91794a93 -[NSPrintPanel runModalWithPrintInfo:] + 621
    90  com.apple.AppKit              0x917929ec -[NSConcretePrintOperation runOperation] + 333
    91  com.apple.iPhoto              0x00363141 0xac000 + 2847041
    92  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    93  com.apple.AppKit              0x91329663 -[NSApplication sendAction:to:from:] + 232
    94  com.apple.AppKit              0x91329540 -[NSControl sendAction:to:] + 102
    95  com.apple.AppKit              0x91329443 -[NSCell _sendActionFrom:] + 160
    96  com.apple.AppKit              0x91328800 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2295
    97  com.apple.AppKit              0x913aba95 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 501
    98  com.apple.AppKit              0x91327243 -[NSControl mouseDown:] + 943
    99  com.apple.AppKit              0x912f0dcd -[NSWindow sendEvent:] + 7533
    100 com.apple.AppKit              0x91289f77 -[NSApplication sendEvent:] + 4788
    101 com.apple.iLifeKit            0x0201dc9b -[iLifeKit sendEvent:] + 55
    102 com.apple.iPhoto              0x0012c344 0xac000 + 525124
    103 com.apple.AppKit              0x9121bb21 -[NSApplication run] + 1007
    104 com.apple.AppKit              0x914acac5 NSApplicationMain + 1054
    105 com.apple.iPhoto              0x000bbc99 0xac000 + 64665
    106 com.apple.iPhoto              0x000bb2e5 0xac000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x9a596b5e __select_nocancel + 10
    1   libdispatch.dylib             0x96b4ecbd _dispatch_mgr_invoke + 642
    2   libdispatch.dylib             0x96b4d853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock             0x023e748f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   com.apple.CoreFoundation      0x958fb1aa -[NSObject performSelector:] + 58
    8   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    14  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    15  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    16  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    17  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x9a595e12 __accept + 10
    1   com.apple.iPhoto              0x004a424d 0xac000 + 4162125
    2   com.apple.iPhoto              0x004ee651 0xac000 + 4466257
    3   com.apple.iPhoto              0x004ee5be 0xac000 + 4466110
    4   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x9a596b42 __select + 10
    1   com.apple.CoreFoundation      0x958e1e15 __CFSocketManager + 1557
    2   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    3   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation          0x9970fbe8 -[NSCondition wait] + 304
    4   com.apple.iPhoto              0x000fda64 0xac000 + 334436
    5   com.apple.iPhoto              0x000fd672 0xac000 + 333426
    6   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    7   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    8   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    17  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    18  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    19  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    20  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x9279e3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore 0x9279e11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore 0x9279df2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component 0x9736a16a 0x96d7d000 + 6213994
    7   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    8   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 14:: CVDisplayLink
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo           0x97f120cd CVDisplayLink::runIOThread() + 945
    4   com.apple.CoreVideo           0x97f11d05 _ZL13startIOThreadPv + 160
    5   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    6   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 15:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x9940182a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component 0x9748c467 0x96d7d000 + 7402599
    4   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99459f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x997403c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation          0x997067d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation          0x997066a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore           0x01dace12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore           0x01dabefa -[XTThread run:] + 412
    8   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    9   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    10  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    11  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x005acdd1 0xac000 + 5246417
    4   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    5   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    7   com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    8   com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    9   com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    10  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    11  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    12  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    13  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    14  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x00175872 0xac000 + 825458
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 19:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib        0x9a594c76 semaphore_timedwait_trap + 10
    1   libdispatch.dylib             0x96b50a55 _dispatch_semaphore_wait_slow + 274
    2   libdispatch.dylib             0x96b50ab4 dispatch_semaphore_wait + 36
    3   com.apple.RemoteViewServices  0x9463a725 __54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0345 + 79
    4   libdispatch.dylib             0x96b4cfbd _dispatch_call_block_and_release + 15
    5   libdispatch.dylib             0x96b4e01c _dispatch_worker_thread2 + 231
    6   libsystem_c.dylib             0x99457b24 _pthread_wqthread + 346
    7   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 22:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x005acdd1 0xac000 + 5246417
    4   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    5   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    6   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    7   com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    8   com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    9   com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    10  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    11  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    12  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    13  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    14  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x00175872 0xac000 + 825458
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib        0x9a59683e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99459e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x9940a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.iPhoto              0x001bb758 0xac000 + 1111896
    4   com.apple.CoreFoundation      0x958f5a9d __invoking___ + 29
    5   com.apple.CoreFoundation      0x958f59d9 -[NSInvocation invoke] + 137
    6   com.apple.RedRock             0x0240385b -[RKInvoker _invokeTarget:] + 33
    7   com.apple.RedRock             0x024145f4 -[RKInvoker _invokeTargetWithPool:] + 68
    8   com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    9   com.apple.proxtcore           0x01db5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    10  com.apple.CoreFoundation      0x958f2d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore           0x01dae22c -[XTSubscription postMessage:] + 191
    12  com.apple.proxtcore           0x01dadaef -[XTDistributor distributeMessage:] + 681
    13  com.apple.proxtcore           0x01dad313 -[XTThread handleMessage:] + 515
    14  com.apple.proxtcore           0x01dabf10 -[XTThread run:] + 434
    15  com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    16  com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    17  libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    18  libsystem_c.dylib             0x994596de thread_start + 34
    Thread 25:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib        0x9a596bb2 __semwait_signal + 10
    1   libsystem_c.dylib             0x9940a7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib             0x9940a558 usleep$UNIX2003 + 60
    3   com.apple.AppKit              0x914646da -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation          0x9970de25 -[NSThread main] + 45
    5   com.apple.Foundation          0x9970ddd5 __NSThread__main__ + 1582
    6   libsystem_c.dylib             0x99455ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x994596de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 28:
    0   libsystem_kernel.dylib        0x9a59702e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99457ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x994596fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000540  ebx: 0x15675480  ecx: 0x00000150  edx: 0x00000004
      edi: 0x0000ffff  esi: 0xc8fc0000  ebp: 0xc009f508  esp: 0xc009f460
       ss: 0x00000023  efl: 0x00010246  eip: 0x93976aec   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xc8fc0000
    Logical CPU: 0
    Binary Images:
       0xac000 -   0xd98feb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf2a000 -  0x100afe7  org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1056000 -  0x105efff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10cf000 -  0x12abffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x133a000 -  0x133fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1347000 -  0x1376ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x139b000 -  0x13c2ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13d6000 -  0x13faffb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1411000 -  0x141cfff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1427000 -  0x143cffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1448000 -  0x1474ffb  com.apple.DiscRecordingUI (6.0.4 - 6040.4.1) <F3EDDD79-611F-3ECC-9B78-0AB8BAC0D446> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1490000 -  0x1492fff  com.apple.ExceptionHandling (1.5 - 10) <6CA9446C-7EF9-35EE-BDF2-AA8D51E93E9E> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x149b000 -  0x14a6ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14b2000 -  0x184bff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1948000 -  0x1bd9ff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1cb5000 -  0x1d4cff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1da8000 -  0x1e10ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1e52000 -  0x1f50ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x1f99000 -  0x1fc4ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x1fde000 -  0x2049fff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x208e000 -  0x22b6ff7  com.apple.prokit (7.2.3 - 1823) <0FEDF2D7-F31A-36F2-91A9-C03877B0CB46> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x23c4000 -  0x28f0ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2aee000 -  0x2b04ffb  com.apple.AOSAccounts (1.0.2 - 1.0.71) <13763832-1B2B-32E8-95BC-C23A627E6DD4> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2b19000 -  0x2b53ff3  com.apple.Ubiquity (1.1 - 210.2) <F8426ABA-BB3F-3A48-BF4E-9A0F6C12634F> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x2b6e000 -  0x2b6eff6  com.apple.SafariDAVNotifier (1.1.1 - 1) <DE95A56E-E2C8-3D96-B628-4DC6FA6CDD39> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2b74000 -  0x2b95ff7  com.apple.ChunkingLibrary (1.0 - 127.2) <8C1C8488-71E4-3C13-AF75-95CF06C040A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x2ba1000 -  0x2ba3fff  com.apple.LibraryRepair (1.0 - 1) <8D2DE423-2226-395A-9D90-3C43911F8613> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x2bab000 -  0x2c05fff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications

    It crashes when I down load pictures and then try to use them. Converting a jpg to a pdf usually triggers a crash.
    Are you using the "Print to PDF" dialogue to convert your jpegs to pdf?
    In addition to OT's test, you might also check, if using a different "Theme" for printing will avoid the crash:
    14  com.apple.AppKit               0x912a52e4 _NSDrawThemeBackground + 1429
    15  com.apple.AppKit               0x9145edeb -[NSThemeFrame
    You crashlog shows, that iPhoto crashes, when trying to draw the "Print" theme background. There could be a problem wit the installed themes. Can you convert any jpegs to pdf, not only the jpegs downloaded from your iPad?
    Léonie

  • JVM crash when adding method to class

    Hello,
    I am getting some kind of problem with the virtual machine. The JVM crashes when making a class (with new). It happened when I was adding some functionality to the class, I worked my way backwards and discovered it crashes when I add any new methods, if I comment them out again everything works, adding a method by any name causes to crash.
    I went in debug to find out where it was happening, and it happens on this line:
    public PerspectiveActionToolBarHeader createPerspectiveActionToolBarHeader() {
         PerspectiveActionToolBarHeader ret = null;
         ret = new PerspectiveActionToolBarHeader(this); // << here
         return ret;
    }The PerspectiveActionToolBarHeader is the class where adding methods causes it to fail. For example, it has the method
    public Container getContainer() {
         return this;
    }and works, but if I add:
    public void anything(){} it causes a crash on the new PerspectiveActionToolBarHeader(this);
    When stepped into with the debugger it goes to the (source not found) ClassNotFoundException and eventually before the crash the (stack?) looks like this:
    Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available     
    MaldiSoftwareOptionsUIEnsemble(PerspectiveUIEnsemble).createPerspectiveActionToolBarHeader() line: 72
    and the debugger describes the class just before the crash:
    Launcher$AppClassLoader (id=44)     
    arg0     "saiman.uiobjnew.PerspectiveToolBarButton" (id=51) << has just changed
    and the log file (not sure how much to copy here!):
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ILLEGAL_INSTRUCTION (0xc000001d) at pc=0x005c0001, pid=15504, tid=20112
    # JRE version: 6.0_24-b07
    # Java VM: Java HotSpot(TM) Client VM (19.1-b02 mixed mode windows-x86 )
    # Problematic frame:
    # C 0x005c0001
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x011ca000): JavaThread "main" [_thread_in_vm, id=20112, stack(0x01140000,0x01190000)]
    siginfo: ExceptionCode=0xc000001d
    Registers:
    EAX=0x13e13248, EBX=0x6da0daa8, ECX=0x13e13250, EDX=0x13e131f8
    ESP=0x0118f93c, EBP=0x0118f9a0, ESI=0x011ca9b0, EDI=0x011ca9ac
    EIP=0x005c0001, EFLAGS=0x00010206
    Register to memory mapping:
    EAX=0x13e13248
    {method}
    - klass: {other class}
    EBX=0x6da0daa8
    0x6da0daa8 is pointing to unknown location
    ECX=0x13e13250
    {method}
    - klass: {other class}
    EDX=0x13e131f8
    {constMethod}
    - klass: {other class}
    - method: 0x13e13248 {method} 'flipVisible' '(I)V' in 'saiman/uiobjnew/PerspectiveActionToolBarHeader'
    - exceptions: 0x13bf11e8
    ESP=0x0118f93c
    0x0118f93c is pointing into the stack for thread: 0x011ca000
    "main" prio=6 tid=0x011ca000 nid=0x4e90 runnable [0x0118f000]
    java.lang.Thread.State: RUNNABLE
    EBP=0x0118f9a0
    0x0118f9a0 is pointing into the stack for thread: 0x011ca000
    "main" prio=6 tid=0x011ca000 nid=0x4e90 runnable [0x0118f000]
    java.lang.Thread.State: RUNNABLE
    ESI=0x011ca9b0
    0x011ca9b0 is pointing to unknown location
    EDI=0x011ca9ac
    0x011ca9ac is pointing to unknown location
    Top of Stack: (sp=0x0118f93c)
    0x0118f93c: 6d94272d 011ca370 13e17d40 011ca000
    0x0118f94c: 011ca000 01a30950 011ca748 011ca9b4
    0x0118f95c: 011cab3c 0118fb28 011c6748 011ca348
    0x0118f96c: 011ca370 011ca73c 6da0daa8 011ca350
    0x0118f97c: 011ca370 0118f9cc 011ca9a8 0118f9c8
    0x0118f98c: 011ca788 011ca370 011ca9b0 011ca000
    0x0118f99c: 13e17d40 0118f9cc 6d943009 00000910
    0x0118f9ac: 011ca9ac 00000001 011ca000 011ca000
    Instructions: (pc=0x005c0001)
    0x005bfff1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ff
    0x005c0001: ff ff 7f 00 00 00 00 00 00 00 00 ff ff ff ff 00
    Stack: [0x01140000,0x01190000], sp=0x0118f93c, free space=318k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x005c0001
    V [jvm.dll+0x153009]
    V [jvm.dll+0xdecdb]
    V [jvm.dll+0xe1887]
    V [jvm.dll+0xe1c46]
    V [jvm.dll+0xec09a]
    j saiman.uiobjnew.PerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+2
    j saiman.mv.ModelViewPerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.addButtons()V+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+21
    j saiman.mv.ModelViewPerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.uiobjnew.SoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.wmaldi.MaldiSoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.newuiimpl.MassSpectrumMainFrameImpl.main([Ljava/lang/String;)V+173
    v ~StubRoutines::call_stub
    V [jvm.dll+0xf0ab9]
    V [jvm.dll+0x1837d1]
    V [jvm.dll+0xf0b3d]
    V [jvm.dll+0xfa0d6]
    V [jvm.dll+0x101cde]
    C [javaw.exe+0x2155]
    C [javaw.exe+0x8614]
    C [kernel32.dll+0x51194]
    C [ntdll.dll+0x5b3f5]
    C [ntdll.dll+0x5b3c8]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j saiman.uiobjnew.PerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+2
    j saiman.mv.ModelViewPerspectiveUIEnsemble.createPerspectiveActionToolBarHeader()Lsaiman/uiobjnew/PerspectiveActionToolBarHeader;+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.addButtons()V+1
    j saiman.uiobjnew.PerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+21
    j saiman.mv.ModelViewPerspectiveUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.uiobjnew.SoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.wmaldi.MaldiSoftwareOptionsUIEnsemble.<init>(Lsaiman/uiobjnew/MultiPerspectiveFrame;)V+2
    j saiman.newuiimpl.MassSpectrumMainFrameImpl.main([Ljava/lang/String;)V+173
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x01b05400 JavaThread "AWT-Windows" daemon [_thread_in_native, id=19680, stack(0x18560000,0x185b0000)]
    0x01b04800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=19516, stack(0x18140000,0x18190000)]
    0x01b04000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=20064, stack(0x18040000,0x18090000)]
    0x01b03c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=20276, stack(0x17ff0000,0x18040000)]
    0x01aeb000 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=16832, stack(0x17fa0000,0x17ff0000)]
    0x01aea000 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=16360, stack(0x17ef0000,0x17f40000)]
    0x01ae8000 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=20084, stack(0x17ea0000,0x17ef0000)]
    0x01ade400 JavaThread "Attach Listener" daemon [_thread_blocked, id=19772, stack(0x17d90000,0x17de0000)]
    0x01add400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=20192, stack(0x17d40000,0x17d90000)]
    0x01ab2800 JavaThread "Finalizer" daemon [_thread_blocked, id=17344, stack(0x17cf0000,0x17d40000)]
    0x01aabc00 JavaThread "Reference Handler" daemon [_thread_blocked, id=19964, stack(0x17ca0000,0x17cf0000)]
    =>0x011ca000 JavaThread "main" [_thread_in_vm, id=20112, stack(0x01140000,0x01190000)]
    Other Threads:
    0x01aa7c00 VMThread [stack: 0x011d0000,0x01220000] [id=19144]
    0x01b17400 WatcherThread [stack: 0x180f0000,0x18140000] [id=12792]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 4928K, used 768K [0x03bf0000, 0x04140000, 0x09140000)
    eden space 4416K, 5% used [0x03bf0000, 0x03c30380, 0x04040000)
    from space 512K, 100% used [0x040c0000, 0x04140000, 0x04140000)
    to space 512K, 0% used [0x04040000, 0x04040000, 0x040c0000)
    tenured generation total 10944K, used 1858K [0x09140000, 0x09bf0000, 0x13bf0000)
    the space 10944K, 16% used [0x09140000, 0x09310948, 0x09310a00, 0x09bf0000)
    compacting perm gen total 12288K, used 9598K [0x13bf0000, 0x147f0000, 0x17bf0000)
    the space 12288K, 78% used [0x13bf0000, 0x1454fb70, 0x1454fc00, 0x147f0000)
    No shared spaces configured.
    Edited by: hanvyj on 07-Jun-2011 02:39
    Edited by: hanvyj on 07-Jun-2011 02:43

    I think I may have stumbled across the answer, It seems that the abstract class PerspectiveToolBar implements
    the interface with the method public Container getContainer() but does not declare it, this should be fine because the method is abstract but it crashes. When I add the method public abstract Container getContainer(); to the abstract sub-class there is no error. I'm going to try make a small compilable example to see if I can reproduce it.
    edit its actually only one of the two interface methods, and not getContainer(), but another one. If anyone is interested here is the interface:
    public interface IMassSpectrometerPassableControlContainer
         Container getContainer();
         void reloadWidgetsOnVisible(boolean visible);
    }and it works only if there is "public abstract void reloadWidgetsOnVisible(boolean visible);" in the abstract class PerspectiveToolBar implementing IMassSpectrometerPassableControlContainer.
    I tried to reproduce it, but I can't get another class to repeat the behaviour, so I don't think I can post a bug report on it. Here is my attempt anyway:
    import javax.swing.JToolBar;
    * Class     Test.java
    * Date:     7 Jun 2011
    * @author     tofuser
    public class Test extends Subclass
         public static void main(String args[])
              System.out.println("in main method");
              Test t = new Test();
              t.interfaceMethod();
         @Override
         public void interfaceMethod()
              System.out.println("interface method");
    abstract class Subclass extends JToolBar implements Interface
         private static final long serialVersionUID = 1L;
         //this line is where it breaks in my code, including it works
         //public abstract void interfaceMethod();
    interface Interface
         public abstract void interfaceMethod();
    }Edited by: hanvyj on 07-Jun-2011 03:56

  • Crashes when I attempt to clear browser history;temp fix:I use IObit Security to clean browsing history,cannot clean it all,cleans most,I am then able to clear the rest of my history thru Firefox;I thought this info would help solve the problem

    Crashes when I attempt to clear browser history;temp fix:I use IObit Security to clean browsing history,cannot clean it all,cleans most,I am then able to clear the rest of my history thru Firefox;I thought this info would help solve the problem

    Crap thought that text was all the characters I was allotted, not just the title.
    Anyway I wouldn't have even posted this if you guys would have allowed me to reply to the already existing thread I found through google. Said about 20 or so people had the same problem and no one found the contributor's answer useful, including myself.
    Anyway, I use Firefox, because it is one of two (other being internet explorer) that Trend Micro's security package includes protection with. Same with spyware blaster which I also use but Trend Micro is the deal breaker. Also I like Firefox 4 and your ad blocker is better than google chrome's. However if I continue to have problems with clearing my browser history it is back to Opera and Google Chrome for me. IObit Security supports both of them, it also seems to be the best security system I have ever come across, I will just pay for their subscription and stop using Trend Micro.
    This is a very big problem I hope it is being addressed. Only addon I have is your ad blocker. Also this is completely on your end, not ours. I am the perfect test, my computer is brand new, and by brand new I mean I just started using it the other day, the same day my firefox browser kept crashing as I attempted to clear my browsing history.
    Windows 7, 8GBs RAM, AMD athlon II quad core 2.90 GHz
    Can't even clear an hours worth of browsing history without firefox crashing.

  • Itunes crashes when my ipod loads up

    I just bought a new 80Gb classic ipod today. I'm using Itunes 7.6.1.9 and it crashes when my ipod loads up. I've tried uninstalling and reinstalling itunes and it hasn't solved my problem
    Does anyone have any ideas why this keeps happening.

    Not sure whether it is the problem of your computer or the iPod. Try to connect your iPod with antoher computer with latest iTunes preinstalled. If it works then find a way to deal with your computer

  • Browser closing when applet is loaded

    Hi,
    As you can see from the forum list i'm having soooooooo much problems with my applets!
    Please can some one point me in the right direction!
    When my applet loads the browser tells me that the main class is loaded but then closes with for no apparent reason!
    Does anyone know why?
    Regards
    Richard

    It appears from the following statement that a native code process failed when called by the jvm.
    The crash happened outside the Java Virtual Machine in native code.Not much more can be said. The cause does not appear to Java code.

  • 64 bit JVM Crash  when loading shared library

    I wrote a simple code to test loading of 64 bit shared library in linux. My JVM crashes on System.loadLibrary method.
    JAVA CODE
    import java.awt.Dimension;
    import javax.swing.JFrame;
    public class TestJNI extends JFrame{
            public native void init();
            static{
                    System.loadLibrary("testJNI");
            public static void main(String ...args){
                    TestJNI test = new TestJNI();
                    test.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                    test.setSize(new Dimension(500,500));
                    test.setVisible(true);
                    System.out.println("Before init");
                    //test.init();
                    System.out.println("After init");
    } Header file created using javah
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class TestJNI */
    #ifndef _Included_TestJNI
    #define _Included_TestJNI
    #ifdef __cplusplus
    extern "C" {
    #endif
    #undef TestJNI_FOCUS_TRAVERSABLE_UNKNOWN
    #define TestJNI_FOCUS_TRAVERSABLE_UNKNOWN 0L
    #undef TestJNI_FOCUS_TRAVERSABLE_DEFAULT
    #define TestJNI_FOCUS_TRAVERSABLE_DEFAULT 1L
    #undef TestJNI_FOCUS_TRAVERSABLE_SET
    #define TestJNI_FOCUS_TRAVERSABLE_SET 2L
    #undef TestJNI_TOP_ALIGNMENT
    #define TestJNI_TOP_ALIGNMENT 0.0f
    #undef TestJNI_CENTER_ALIGNMENT
    #define TestJNI_CENTER_ALIGNMENT 0.5f
    #undef TestJNI_BOTTOM_ALIGNMENT
    #define TestJNI_BOTTOM_ALIGNMENT 1.0f
    #undef TestJNI_LEFT_ALIGNMENT
    #define TestJNI_LEFT_ALIGNMENT 0.0f
    #undef TestJNI_RIGHT_ALIGNMENT
    #define TestJNI_RIGHT_ALIGNMENT 1.0f
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID -7644114512714619750LL
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 4613797578919906343LL
    #undef TestJNI_INCLUDE_SELF
    #define TestJNI_INCLUDE_SELF 1L
    #undef TestJNI_SEARCH_HEAVYWEIGHTS
    #define TestJNI_SEARCH_HEAVYWEIGHTS 1L
    #undef TestJNI_OPENED
    #define TestJNI_OPENED 1L
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 4497834738069338734LL
    #undef TestJNI_DEFAULT_CURSOR
    #define TestJNI_DEFAULT_CURSOR 0L
    #undef TestJNI_CROSSHAIR_CURSOR
    #define TestJNI_CROSSHAIR_CURSOR 1L
    #undef TestJNI_TEXT_CURSOR
    #define TestJNI_TEXT_CURSOR 2L
    #undef TestJNI_WAIT_CURSOR
    #define TestJNI_WAIT_CURSOR 3L
    #undef TestJNI_SW_RESIZE_CURSOR
    #define TestJNI_SW_RESIZE_CURSOR 4L
    #undef TestJNI_SE_RESIZE_CURSOR
    #define TestJNI_SE_RESIZE_CURSOR 5L
    #undef TestJNI_NW_RESIZE_CURSOR
    #define TestJNI_NW_RESIZE_CURSOR 6L
    #undef TestJNI_NE_RESIZE_CURSOR
    #define TestJNI_NE_RESIZE_CURSOR 7L
    #undef TestJNI_N_RESIZE_CURSOR
    #define TestJNI_N_RESIZE_CURSOR 8L
    #undef TestJNI_S_RESIZE_CURSOR
    #define TestJNI_S_RESIZE_CURSOR 9L
    #undef TestJNI_W_RESIZE_CURSOR
    #define TestJNI_W_RESIZE_CURSOR 10L
    #undef TestJNI_E_RESIZE_CURSOR
    #define TestJNI_E_RESIZE_CURSOR 11L
    #undef TestJNI_HAND_CURSOR
    #define TestJNI_HAND_CURSOR 12L
    #undef TestJNI_MOVE_CURSOR
    #define TestJNI_MOVE_CURSOR 13L
    #undef TestJNI_NORMAL
    #define TestJNI_NORMAL 0L
    #undef TestJNI_ICONIFIED
    #define TestJNI_ICONIFIED 1L
    #undef TestJNI_MAXIMIZED_HORIZ
    #define TestJNI_MAXIMIZED_HORIZ 2L
    #undef TestJNI_MAXIMIZED_VERT
    #define TestJNI_MAXIMIZED_VERT 4L
    #undef TestJNI_MAXIMIZED_BOTH
    #define TestJNI_MAXIMIZED_BOTH 6L
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 2673458971256075116LL
    #undef TestJNI_EXIT_ON_CLOSE
    #define TestJNI_EXIT_ON_CLOSE 3L
    * Class:     TestJNI
    * Method:    init
    * Signature: ()V
    JNIEXPORT void JNICALL Java_TestJNI_init
      (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endifC code TestJNI.c
    #include "TestJNI.h"
    #include <stdio.h>
    JNIEXPORT void JNICALL Java_TestJNI_init
      (JNIEnv *env, jobject ob){
      printf("TESTING JNI CALL");
    }gcc options are as follows to get the shared library:
    gcc -fPIC -pthread -g -Wall -D_REENTRANT -I/vobs/3p/jdk1.6.0_10/linux/include/linux -I/vobs/3p/jdk1.6.0_10/linux/include/ -c TestJNI.c -o TestJNI.o
    gcc -z defs -pthread -D_REENTRANT -Wl,-soname,libnative.so -shared -o libtestJNI.so TestJNI.o -lcAny help is appreciated. I am not sure what i am doing wrong here.
    Running the same code on a 32 bit jvm with a 32 bit shared library works.

    Hi,
    I was also having a problem under 64 bit, Now I am certain that if ur Java code makes a call to the DLL, make sure that DLL is compiled under 64 bit compiler and not 32 bit compiler. This is the mistake I made and the JVM was throwing unsatisfied link error. Now this DLL (compiled under 64 bit) could call a 32 bit dll, I dont think that should be a problem.
    Hope it helps.
    Subu

  • Sun.applet.appletPanel.run() is invoked twice when applet is loaded.

    When I am loading my applet in the browser, sun.applet.appletPanel.run() function is invoked 2 times according to JProfiler.
    How can we solve this problem to reduce the number of calls to one???
    TIA
    Ashish

    Anyone having slightest of idea about this problem please reply....

  • Browsers crash when trying to load lava flash isn't recognized

    Whenever i try to load a page with flash it shows that i need to install the latest version even though i have the current version installed. Whenever i try and load a page with java, the java coffee cup showing refresh shows up and the browser crashes. I have windows 7 installed also and it uses java and flash flawlessly the error message is as follows
    Process: Safari [5921]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.3 (6531.9)
    Build Info: WebBrowser-65310900~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [103]
    Date/Time: 2009-10-09 19:38:26.729 -0400
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Interval Since Last Report: 16868 sec
    Crashes Since Last Report: 3
    Per-App Interval Since Last Report: 5328 sec
    Per-App Crashes Since Last Report: 3
    Anonymous UUID: 18FD4E61-646E-4B5B-8499-8311420CC3FE
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 10
    Application Specific Information:
    abort() called
    * Terminating app due to uncaught exception 'JavaNativeException', reason: 'java.lang.ClassFormatError: Unknown constant tag 79 in class file sun/security/x509/X509CertImpl'
    * Call stack at first throw:
    0 CoreFoundation 0x00007fff85c615a4 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff84252313 objcexceptionthrow + 45
    2 CoreFoundation 0x00007fff85cb8af9 -[NSException raise] + 9
    3 JavaPluginCocoa 0x000000011adf8ccd registerNatives + 311
    4 JavaPluginCocoa 0x000000011adf9db9 getVMInitArgs + 3590
    5 JavaPluginCocoa 0x000000011adf9f5d getVMInitArgs + 4010
    6 Foundation 0x00007fff8281df65 _NSThread__main_ + 1429
    7 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    8 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff85bfdce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff85bfd03f CFRunLoopRunSpecific + 575
    4 com.apple.HIToolbox 0x00007fff87976c4e RunCurrentEventLoopInMode + 333
    5 com.apple.HIToolbox 0x00007fff87976a53 ReceiveNextEventCommon + 310
    6 com.apple.HIToolbox 0x00007fff8797690c BlockUntilNextEventMatchingListInMode + 59
    7 com.apple.AppKit 0x00007fff8476d520 _DPSNextEvent + 718
    8 com.apple.AppKit 0x00007fff8476ce89 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9 com.apple.Safari 0x000000010000bcf0 0x100000000 + 48368
    10 com.apple.AppKit 0x00007fff84732a7d -[NSApplication run] + 395
    11 com.apple.AppKit 0x00007fff8472b798 NSApplicationMain + 364
    12 com.apple.Safari 0x0000000100001d0c 0x100000000 + 7436
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff887dfb16 kevent + 10
    1 libSystem.B.dylib 0x00007fff887e1a19 dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff887e16d6 dispatch_queueinvoke + 195
    3 libSystem.B.dylib 0x00007fff887e11f6 dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff887e0b28 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff887e09c5 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff888019c6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff88805801 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff8341ef89 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff8341acea WebCore::IconDatabase::iconDatabaseSyncThread() + 170
    4 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff85bfdce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff85bfd03f CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x0000000100025673 0x100000000 + 153203
    5 com.apple.Safari 0x0000000100025603 0x100000000 + 153091
    6 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff85bfdce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff85bfd03f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8289d51f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff8281df65 _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff8880a9f2 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff85c1f252 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 6: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff888019c6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff88805801 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff82188750 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001213ef 0x100000000 + 1184751
    4 com.apple.Safari 0x000000010004441b 0x100000000 + 279579
    5 com.apple.Safari 0x00000001000442b7 0x100000000 + 279223
    6 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff887e094a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff887e0d5c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff887e09c5 start_wqthread + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff887e094a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff887e0d5c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff887e09c5 start_wqthread + 13
    Thread 9: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff85bfdce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff85bfd03f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff82858a94 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff82858973 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x0000000100035795 0x100000000 + 219029
    7 com.apple.Foundation 0x00007fff8281df65 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 10 Crashed:
    0 libSystem.B.dylib 0x00007fff8883a1de _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x00007fff8883a0e0 nanosleep$NOCANCEL + 129
    2 libSystem.B.dylib 0x00007fff88896ac6 usleep$NOCANCEL + 57
    3 libSystem.B.dylib 0x00007fff888b607c abort + 93
    4 libstdc++.6.dylib 0x00007fff81a1d5d2 _tcf0 + 0
    5 libobjc.A.dylib 0x00007fff84255f49 objcterminate + 100
    6 libstdc++.6.dylib 0x00007fff81a1bae1 _cxxabiv1::_terminate(void (*)()) + 11
    7 libstdc++.6.dylib 0x00007fff81a1bb16 _cxxabiv1::_unexpected(void (*)()) + 0
    8 libstdc++.6.dylib 0x00007fff81a1bbfc _gxx_exception_cleanup(_Unwind_ReasonCode, UnwindException*) + 0
    9 libobjc.A.dylib 0x00007fff842523b2 object_getIvar + 0
    10 com.apple.CoreFoundation 0x00007fff85cb8af9 -[NSException raise] + 9
    11 com.apple.JavaPluginCocoa16 0x000000011adf8ccd registerNatives + 311
    12 com.apple.JavaPluginCocoa16 0x000000011adf9db9 getVMInitArgs + 3590
    13 com.apple.JavaPluginCocoa16 0x000000011adf9f5d getVMInitArgs + 4010
    14 com.apple.Foundation 0x00007fff8281df65 _NSThread__main_ + 1429
    15 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    16 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 11: Java: Exception Handler Thread
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libSystem.B.dylib 0x00007fff888443c8 machmsgserver + 597
    3 libclient.dylib 0x000000011cc07f01 JNICreateJavaVMImpl + 45787
    4 libclient.dylib 0x000000011cc07ecd JNICreateJavaVMImpl + 45735
    5 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    6 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 12: Java: Gang worker#0 (Parallel GC Threads)
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc07323 JNICreateJavaVMImpl + 42749
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e81 JNICreateJavaVMImpl + 41563
    7 libclient.dylib 0x000000011cc1b3ad jio_vsnprintf + 251
    8 libclient.dylib 0x000000011cc1b30a jio_vsnprintf + 88
    9 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    10 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    11 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 13: Java: Gang worker#1 (Parallel GC Threads)
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc07323 JNICreateJavaVMImpl + 42749
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e81 JNICreateJavaVMImpl + 41563
    7 libclient.dylib 0x000000011cc1b3ad jio_vsnprintf + 251
    8 libclient.dylib 0x000000011cc1b30a jio_vsnprintf + 88
    9 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    10 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    11 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 14: Java: Concurrent Mark-Sweep GC Thread
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc07598 JNICreateJavaVMImpl + 43378
    3 libclient.dylib 0x000000011cc20b31 jio_vsnprintf + 22655
    4 libclient.dylib 0x000000011cc0731c JNICreateJavaVMImpl + 42742
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e81 JNICreateJavaVMImpl + 41563
    7 libclient.dylib 0x000000011cd29cb3 JVM_Available + 261541
    8 libclient.dylib 0x000000011cd29c10 JVM_Available + 261378
    9 libclient.dylib 0x000000011cc20992 jio_vsnprintf + 22240
    10 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    11 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    12 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 15: Java: VM Thread
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc07598 JNICreateJavaVMImpl + 43378
    3 libclient.dylib 0x000000011cc20b31 jio_vsnprintf + 22655
    4 libclient.dylib 0x000000011cc0731c JNICreateJavaVMImpl + 42742
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e81 JNICreateJavaVMImpl + 41563
    7 libclient.dylib 0x000000011cc882cb JVM_Lseek + 152435
    8 libclient.dylib 0x000000011cc880f9 JVM_Lseek + 151969
    9 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    10 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    11 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 16: Java: Reference Handler
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc988c4 JVM_MonitorWait + 3976
    5 libclient.dylib 0x000000011cc97c22 JVM_MonitorWait + 742
    6 libclient.dylib 0x000000011cc979e7 JVM_MonitorWait + 171
    7 ??? 0x000000011e0126a8 0 + 4798359208
    8 ??? 0x000000011e00681a 0 + 4798310426
    9 ??? 0x000000011e00681a 0 + 4798310426
    10 ??? 0x000000011e0013f1 0 + 4798288881
    11 libclient.dylib 0x000000011cc89491 JVM_Lseek + 156985
    12 libclient.dylib 0x000000011cc89289 JVM_Lseek + 156465
    13 libclient.dylib 0x000000011cc974d3 JVM_InternString + 1459
    14 libclient.dylib 0x000000011cc973c8 JVM_InternString + 1192
    15 libclient.dylib 0x000000011cc97331 JVM_InternString + 1041
    16 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    17 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    18 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    19 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    20 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 17: Java: Finalizer
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc988c4 JVM_MonitorWait + 3976
    5 libclient.dylib 0x000000011cc97c22 JVM_MonitorWait + 742
    6 libclient.dylib 0x000000011cc979e7 JVM_MonitorWait + 171
    7 ??? 0x000000011e0126a8 0 + 4798359208
    8 ??? 0x000000011e00681a 0 + 4798310426
    9 ??? 0x000000011e006973 0 + 4798310771
    10 ??? 0x000000011e006973 0 + 4798310771
    11 ??? 0x000000011e0013f1 0 + 4798288881
    12 libclient.dylib 0x000000011cc89491 JVM_Lseek + 156985
    13 libclient.dylib 0x000000011cc89289 JVM_Lseek + 156465
    14 libclient.dylib 0x000000011cc974d3 JVM_InternString + 1459
    15 libclient.dylib 0x000000011cc973c8 JVM_InternString + 1192
    16 libclient.dylib 0x000000011cc97331 JVM_InternString + 1041
    17 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    18 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    19 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    20 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    21 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 18: Java: Surrogate Locker Thread (CMS)
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc07323 JNICreateJavaVMImpl + 42749
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e0a JNICreateJavaVMImpl + 41444
    7 libclient.dylib 0x000000011cca6798 JVM_IsPrimitiveClass + 5612
    8 libclient.dylib 0x000000011cca6429 JVM_IsPrimitiveClass + 4733
    9 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    10 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    11 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    12 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    13 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 19: Java: Signal Dispatcher
    0 libSystem.B.dylib 0x00007fff887c6db6 semaphorewaittrap + 10
    1 libclient.dylib 0x000000011cca701c JVM_IsPrimitiveClass + 7792
    2 libclient.dylib 0x000000011cca6ec1 JVM_IsPrimitiveClass + 7445
    3 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    4 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    5 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    6 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 20: Java: CompilerThread0
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc07323 JNICreateJavaVMImpl + 42749
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e0a JNICreateJavaVMImpl + 41444
    7 libclient.dylib 0x000000011ccaa795 JVM_IsPrimitiveClass + 21993
    8 libclient.dylib 0x000000011cca7df0 JVM_IsPrimitiveClass + 11332
    9 libclient.dylib 0x000000011cca7cbb JVM_IsPrimitiveClass + 11023
    10 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    11 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    12 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    13 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    14 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 21: Java: CompilerThread1
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc07323 JNICreateJavaVMImpl + 42749
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e0a JNICreateJavaVMImpl + 41444
    7 libclient.dylib 0x000000011ccaa795 JVM_IsPrimitiveClass + 21993
    8 libclient.dylib 0x000000011cca7df0 JVM_IsPrimitiveClass + 11332
    9 libclient.dylib 0x000000011cca7cbb JVM_IsPrimitiveClass + 11023
    10 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    11 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    12 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    13 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    14 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 22: Java: Low Memory Detector
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc07323 JNICreateJavaVMImpl + 42749
    5 libclient.dylib 0x000000011cc07072 JNICreateJavaVMImpl + 42060
    6 libclient.dylib 0x000000011cc06e81 JNICreateJavaVMImpl + 41563
    7 libclient.dylib 0x000000011ccaaf35 JVM_IsPrimitiveClass + 23945
    8 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    9 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    10 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    11 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    12 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 23: Java: VM Periodic Task Thread
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc07598 JNICreateJavaVMImpl + 43378
    3 libclient.dylib 0x000000011ccabb35 JVM_IsPrimitiveClass + 27017
    4 libclient.dylib 0x000000011ccab82e JVM_IsPrimitiveClass + 26242
    5 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    6 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 24: Java: AWT-Shutdown
    0 libSystem.B.dylib 0x00007fff887c6d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff887c73ed mach_msg + 59
    2 libclient.dylib 0x000000011cc074e3 JNICreateJavaVMImpl + 43197
    3 libclient.dylib 0x000000011cc073b8 JNICreateJavaVMImpl + 42898
    4 libclient.dylib 0x000000011cc988c4 JVM_MonitorWait + 3976
    5 libclient.dylib 0x000000011cc97c22 JVM_MonitorWait + 742
    6 libclient.dylib 0x000000011cc979e7 JVM_MonitorWait + 171
    7 ??? 0x000000011e0126a8 0 + 4798359208
    8 ??? 0x000000011e00681a 0 + 4798310426
    9 ??? 0x000000011e00681a 0 + 4798310426
    10 ??? 0x000000011e006cf4 0 + 4798311668
    11 ??? 0x000000011e0013f1 0 + 4798288881
    12 libclient.dylib 0x000000011cc89491 JVM_Lseek + 156985
    13 libclient.dylib 0x000000011cc89289 JVM_Lseek + 156465
    14 libclient.dylib 0x000000011cc974d3 JVM_InternString + 1459
    15 libclient.dylib 0x000000011cc973c8 JVM_InternString + 1192
    16 libclient.dylib 0x000000011cc97331 JVM_InternString + 1041
    17 libclient.dylib 0x000000011cc971cf JVM_InternString + 687
    18 libclient.dylib 0x000000011cc96e7f JVM_StartThread + 1215
    19 libclient.dylib 0x000000011cc06d30 JNICreateJavaVMImpl + 41226
    20 libSystem.B.dylib 0x00007fff887fff66 pthreadstart + 331
    21 libSystem.B.dylib 0x00007fff887ffe19 thread_start + 13
    Thread 10 crashed with X86 Thread State (64-bit):
    rax: 0x000000000000003c rbx: 0x000000011cbf8920 rcx: 0x000000011cbf88d8 rdx: 0x0000000000000001
    rdi: 0x0000000000000c03 rsi: 0x0000000000000000 rbp: 0x000000011cbf8910 rsp: 0x000000011cbf88d8
    r8: 0x0000000000000000 r9: 0x0000000000989680 r10: 0x0000000000000001 r11: 0x0000000000000246
    r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x000000011c820d20 r15: 0x000000011c81e780
    rip: 0x00007fff8883a1de rfl: 0x0000000000000247 cr2: 0x0000000047b4a00c
    Binary Images:
    0x100000000 - 0x10024ffff com.apple.Safari 4.0.3 (6531.9) <85520F41-6D13-C548-9D3F-A3013EFB1D8D> /Applications/Safari.app/Contents/MacOS/Safari
    0x1175f0000 - 0x1175f0fff com.apple.JavaPluginCocoa 13.0.0 (13.0.0) <02EA2DA9-59AB-9A18-EE03-6A7147EAE31D> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x118250000 - 0x118254ff7 libFontRegistryUI.dylib ??? (???) <EB462473-8DC9-5F16-4592-8F1D743C779A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x11825a000 - 0x11825bfff ATSHI.dylib ??? (???) <9BC80E39-A52B-D3C2-4C3C-3CA209BA35FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x119ff0000 - 0x119ff7ff7 com.apple.JavaVM 13.0.0 (13.0.0) <D98F6BC3-5901-F2E4-BA32-054953E7E877> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x11adf2000 - 0x11adfeff7 com.apple.JavaPluginCocoa16 13.0.0 (13.0.0) <462924DA-C05B-5DFC-3663-816F0605A934> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x11bc62000 - 0x11bc6bff7 JavaNativeFoundation ??? (???) <8AB1FD95-2A2F-7B91-3A8D-93CEE21A8679> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFou ndation.framework/Versions/A/JavaNativeFoundation
    0x11bc74000 - 0x11bc7cfff libdeploy.jnilib ??? (???) <D9D74537-FCF4-9560-ABB9-F5C74CE5A283> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib
    0x11bc85000 - 0x11bc8dfff libverify.dylib ??? (???) <F7DF1D4C-52F0-0D81-AFA4-3609352B3390> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libverify. dylib
    0x11bc93000 - 0x11bcb2ff7 libjava.jnilib ??? (???) <9BBA0384-8C8B-4A13-0229-3E76B54FF906> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libjava.jn ilib
    0x11c991000 - 0x11c99efff libzip.jnilib ??? (???) <93780E94-5045-622E-DB72-07E984F90FD1> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libzip.jni lib
    0x11cbfb000 - 0x11d11efff libclient.dylib ??? (???) <DD9CDE76-DDCA-56EA-1FC3-11449E9AE6BB> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libclient. dylib
    0x11d4f1000 - 0x11d4f7ff7 com.apple.java.JavaRuntimeSupport 13.0.0 (13.0.0) <C94D20CD-59E7-BF65-1342-A2E99ADE7A2E> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaRuntimeSu pport.framework/Versions/A/JavaRuntimeSupport
    0x130418000 - 0x1305e3fff libawt.jnilib ??? (???) <0D2FB85B-647B-80A2-3FCF-9820AD592C87> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libawt.jni lib
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80161000 - 0x7fff8026afff com.apple.MediaToolbox 0.420.17 (420.17) <31834AB2-1BFF-92D5-A8D2-21B0AE51FA98> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff8027a000 - 0x7fff802befef com.apple.ImageCaptureCore 1.0 (1.0) <29A6CF83-B5C2-9730-D71D-825AEC8657F5> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff802d5000 - 0x7fff802fbfe7 libJPEG.dylib ??? (???) <52ACD177-F101-BEF5-E7CC-9131F8372D0A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff802fc000 - 0x7fff80358fff libGLU.dylib ??? (???) <AA2D37B3-8B7C-6772-F8BA-7364284C55FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff80359000 - 0x7fff80368fff com.apple.NetFS 3.2 (3.2) <61E3D8BE-A529-20BF-1A11-026EC774820D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8037d000 - 0x7fff803fbfef com.apple.audio.CoreAudio 3.2.0 (3.2) <51E4AA76-3A8A-2B78-95D2-582501421A4E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff803fc000 - 0x7fff808f4ff7 com.apple.VideoToolbox 0.420.17 (420.17) <E034AA6E-A1E4-BB8F-5AFA-F5C354DDD889> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff808f5000 - 0x7fff808f5ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff808f6000 - 0x7fff8092dff7 libssl.0.9.8.dylib ??? (???) <2D7FAEF9-A3CD-9F80-7CDE-852D3C93AEDB> /usr/lib/libssl.0.9.8.dylib
    0x7fff8092e000 - 0x7fff80935ff7 com.apple.DisplayServicesFW 2.1 (2.1) <2C039CF5-8AF8-6DA3-3C77-566B22EFB172> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff80966000 - 0x7fff809c8fe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff80a3c000 - 0x7fff8112e5d7 com.apple.CoreGraphics 1.535.5 (???) <6599C41F-2D50-5E04-44E4-44FA90E022B5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff81228000 - 0x7fff81249fff libresolv.9.dylib ??? (???) <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff8124a000 - 0x7fff81259fef com.apple.opengl 1.6.3 (1.6.3) <6318A188-B43D-E82F-C157-2E76331227BD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8125a000 - 0x7fff81364ff7 com.apple.MeshKitIO 1.0 (49.0) <66600E25-66F9-D31A-EA47-E81518FF6DDA> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff8137e000 - 0x7fff8149cff7 com.apple.PubSub 1.0.4 (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff81509000 - 0x7fff8162bff7 com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <3CA3B481-9627-6F36-F2B8-C2763DEEB128> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8162c000 - 0x7fff8167bff7 libTIFF.dylib ??? (???) <E11A75A8-223C-8B5E-7F62-821F9ADE8821> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8167c000 - 0x7fff8167cff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8167d000 - 0x7fff816aefff libGLImage.dylib ??? (???) <4F318A3E-20C1-D846-2B36-62451A3241F7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff816af000 - 0x7fff8173bfef SecurityFoundation ??? (???) <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8173c000 - 0x7fff81777ff7 com.apple.CoreMediaIOServices 101.0 (715) <7B93206A-FEC5-FCC3-3587-91E3CEC61797> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff81778000 - 0x7fff8177afff com.apple.print.framework.Print 6.0 (237) <70DA9755-5DC1-716B-77E2-E42C5DAB85A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff81840000 - 0x7fff8191aff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8191b000 - 0x7fff819d0fff com.apple.ink.framework 1.3 (104) <9B552E27-7E3F-6767-058A-C998E8F78692> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff819d1000 - 0x7fff81a4efef libstdc++.6.dylib ??? (???) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff81a4f000 - 0x7fff81abbff7 com.apple.CorePDF 1.0 (1.0) <8D76B569-F938-6337-533A-5C8A69B005DA> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff81ac4000 - 0x7fff81e58ff7 com.apple.QuartzCore 1.6.0 (226.0) <66E14771-C5F0-1415-0B7B-C45EE00C51A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81e59000 - 0x7fff81f70fef libxml2.2.dylib ??? (???) <6D4C196C-B061-CBCD-AAFD-A21736A8425C> /usr/lib/libxml2.2.dylib
    0x7fff81f71000 - 0x7fff820defe7 com.apple.QTKit 7.6.3 (1584) <6D02A542-5202-4022-2050-5BE01F70D225> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff820e4000 - 0x7fff8217efe7 com.apple.ApplicationServices.ATS 4.0 (???) <76009EB5-037B-8A08-5AB5-18DA59559509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8217f000 - 0x7fff82303fff com.apple.JavaScriptCore 6531 (6531.5) <8C470ACB-1A45-71FC-673D-34EA3F5EF0DC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff82304000 - 0x7fff823bdfff libsqlite3.dylib ??? (???) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff823ce000 - 0x7fff824b2ff7 com.apple.DesktopServices 1.5.1 (1.5.1) <65D7E707-DBCA-5752-78EC-351DC88F3AE8> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff824b3000 - 0x7fff824f6fff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff82532000 - 0x7fff827b6fff com.apple.security 6.0 (36910) <F7431448-BC2E-835D-E7A2-E47E0A5CB984> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff827c0000 - 0x7fff827c0ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff827c1000 - 0x7fff82808fef com.apple.QuickLookFramework 2.0 (327.0) <E15E267E-D462-2AD0-DB03-A54E0F94452F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff82809000 - 0x7fff8280cff7 libCoreVMClient.dylib ??? (???) <3A41933A-5174-7516-37E0-8E06365BF3DA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8280d000 - 0x7fff82a8efe7 com.apple.Foundation 6.6 (751) <CCE98C5C-DFEA-6C80-A014-A5985437072E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff82a8f000 - 0x7fff82a95ff7 IOSurface ??? (???) <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff82a96000 - 0x7fff82aa1ff7 com.apple.speech.recognition.framework 3.10.10 (3.10.10) <7E2A89FC-0F18-1CCC-472E-AD0E2BC2DD4C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff82aa2000 - 0x7fff82ae8fe7 libvDSP.dylib ??? (???) <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff82af7000 - 0x7fff82b08fff SyndicationUI ??? (???) <6B116A70-EA2D-1A61-2C27-35B1CFDFBBD6> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff82b09000 - 0x7fff82b5afe7 com.apple.HIServices 1.8.0 (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff82b5b000 - 0x7fff82b66fff com.apple.CrashReporterSupport 10.6 (237) <7B22FB86-33C7-A775-2F13-0D3356E2B971> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff82cd0000 - 0x7fff82ce1fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff82ce2000 - 0x7fff82ceffff libCSync.A.dylib ??? (???) <D97C8D7E-2CA3-9495-0C41-004CE47BC5DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff82cf0000 - 0x7fff82d31ff7 com.apple.SystemConfiguration 1.10 (1.10) <E3FF1FC8-C760-2047-F954-0D283DD0F714> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff82d32000 - 0x7fff82d7cff7 com.apple.Metadata 10.6.0 (507.1) <AA0DF8E0-9B5B-2377-9B20-884919E28994> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff82d7d000 - 0x7fff82fe7ff7 com.apple.QuartzComposer 4.0 (156.6) <4E43D357-4A18-5D16-02E8-14324A5B9302> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff830c0000 - 0x7fff831fdfef com.apple.WebKit 6531 (6531.9) <17A680A1-FE75-81E5-952A-047E5FA96F66> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff831fe000 - 0x7fff8329efff com.apple.LaunchServices 360.3 (360.3) <02FFE657-CC7A-5266-F06E-8732E28F70A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff8329f000 - 0x7fff832bdff7 libPng.dylib ??? (???) <6A0E35B8-2E33-7C64-2B53-6F47F628DE7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff832fd000 - 0x7fff83381fff com.apple.print.framework.PrintCore 6.0 (312) <1F747E69-924D-8C5B-F318-C4828CC6E85D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8338b000 - 0x7fff833c6fe7 com.apple.CoreMedia 0.420.17 (420.17) <E299556E-6930-DC30-DA23-88B812AF63CA> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff833c7000 - 0x7fff8340aff7 libRIP.A.dylib ??? (???) <8D7113D2-71A7-A205-D2D0-2DB0F37FFBB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8340b000 - 0x7fff8340bff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff83418000 - 0x7fff83e3bfe7 com.apple.WebCore 6531 (6531.9) <6DEBA397-4369-A8B1-1757-40FD454F6B51> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff83ead000 - 0x7fff83eb1ff7 libCGXType.A.dylib ??? (???) <50EB4AB0-0B25-E5DC-FC9E-12268B51F02F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff83eb2000 - 0x7fff83f1aff7 com.apple.MeshKitRuntime 1.0 (49.0) <580F1945-540B-1E68-0341-A6ADAD78397E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff83f1b000 - 0x7fff83f68ff7 libauto.dylib ??? (???) <8658DB85-C611-1212-44E5-5B2539018FA0> /usr/lib/libauto.dylib
    0x7fff84188000 - 0x7fff84188ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff84189000 - 0x7fff84189ff7 com.apple.Carbon 150 (152) <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff841d8000 - 0x7fff84209fef libTrueTypeScaler.dylib ??? (???) <3F30259E-9EB0-18D2-B0F3-7B8A9625574E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff84249000 - 0x7fff842fffe7 libobjc.A.dylib ??? (???) <261D97A3-225B-8A00-56AA-F9F27973063F> /usr/lib/libobjc.A.dylib
    0x7fff84300000 - 0x7fff84366fe7 com.apple.AppleVAFramework 4.6.2 (4.6.2) <3DA57727-EAD1-A199-4093-54CC4698A109> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff84367000 - 0x7fff845a0fe7 com.apple.imageKit 2.0 (1.0) <F579694D-9FA0-6365-45CD-E380C2EB2573> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff845a1000 - 0x7fff845a6fff libGIF.dylib ??? (???) <0C112067-95FE-B9BC-C70C-64A46A277F34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff845f2000 - 0x7fff846f7fe7 libGLProgrammability.dylib ??? (???) <EDEC71CB-5F5B-7F55-47F4-19E953E3BE61> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff846f8000 - 0x7fff8470efff com.apple.MultitouchSupport.framework 200.20 (200.20) <96B8C66E-D84D-863B-CB1D-F7E005569706> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8470f000 - 0x7fff84728fff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff84729000 - 0x7fff8511dfe7 com.apple.AppKit 6.6.1 (1038.2) <C17AD2AC-8639-D20F-CD99-36EEC619A5F0> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8511e000 - 0x7fff85132ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff85133000 - 0x7fff8515bfff com.apple.DictionaryServices 1.1 (1.1) <D57BA55A-4CC5-5C17-8077-AEEA27A01C7A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8515c000 - 0x7fff8515cff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff851c3000 - 0x7fff85253fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff85284000 - 0x7fff8533fff7 libFontParser.dylib ??? (???) <8926E1B0-6D1E-502A-5028-1DCC57F6D6FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff85340000 - 0x7fff853f4fef com.apple.ColorSync 4.6.0 (4.6.0) <080BEDDE-E7A4-F88D-928B-7501574A157B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff853f5000 - 0x7fff85419ff7 com.apple.CoreVideo 1.6.0 (43.0) <FF5F0EEF-56BE-24DD-C8FA-CB41F126E6A8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8541a000 - 0x7fff85449ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff8544a000 - 0x7fff85680fef com.apple.AddressBook.framework 5.0 (862) <06928F7A-AFEC-7C7F-E1EC-D99983588C00> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff85681000 - 0x7fff8568fff7 libkxld.dylib ??? (???) <823B6BE6-E952-3B3C-3633-8F4D6C4606A8> /usr/lib/system/libkxld.dylib
    0x7fff85690000 - 0x7fff856a5fff com.apple.LangAnalysis 1.6.5 (1.6.5) <D4956302-5A2D-2AFD-C143-6287F1313196> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff856a6000 - 0x7fff856e3fff com.apple.LDAPFramework 2.0 (120.1) <0F7DF87D-6A08-02AF-790B-76294FCE8916> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff856e4000 - 0x7fff85773fff com.apple.PDFKit 2.5 (2.5) <7849E675-4289-6FEA-E314-063E91A4B07F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff857a5000 - 0x7fff857fafef com.apple.framework.familycontrols 2.0 (2.0) <2520A455-5487-1964-C5D9-D284699D2537> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff857fb000 - 0x7fff85842ff7 com.apple.coreui 0.2 (112) <E64F7594-7829-575F-666A-0B16875FC644> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff85843000 - 0x7fff858c5fef com.apple.QuickLookUIFramework 2.0 (327.0) <B9850E11-3F04-100F-0122-B4AD6222A43F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff85bab000 - 0x7fff85badfff libRadiance.dylib ??? (???) <77F285E0-5D5E-A0B0-A89E-9332D6AB2867> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff85bae000 - 0x7fff85bb1ff7 com.apple.securityhi 4.0 (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff85bb2000 - 0x7fff85d25fef com.apple.CoreFoundation 6.6 (550) <04EC0CC2-6CE4-4EE0-03B9-6C5109398CB1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff85d26000 - 0x7fff85d29fff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff85d2a000 - 0x7fff86534fe7 libBLAS.dylib ??? (???) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff865a9000 - 0x7fff865bbfe7 libsasl2.2.dylib ??? (???) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff8660a000 - 0x7fff8661dfff libGL.dylib ??? (???) <D452ADC0-04B1-E24F-03E6-717E58E1D659> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff86692000 - 0x7fff866cdfef com.apple.AE 496 (496) <6AFD62E0-DD92-4F04-A73A-90224D80593D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8670e000 - 0x7fff8691aff7 com.apple.RawCamera.bundle 2.2.1 (477) <B4DD9D3B-CD05-5ACE-6808-BEC5660D805C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff869ad000 - 0x7fff869c3fff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff869c4000 - 0x7fff86a90fff com.apple.CFNetwork 454.4 (454.4) <E7721AD8-3177-8749-60F7-5EF323E6492B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff86a91000 - 0x7fff86a92fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff86af2000 - 0x7fff86bbdfe7 ColorSyncDeprecated.dylib ??? (???) <03DA3BF0-1293-8947-A8B6-5E599F5B5DC7> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff86bbe000 - 0x7fff86bbfff7 com.apple.audio.units.AudioUnit 1.6 (1.6) <7A51FBCE-7907-28A0-B2D2-CAADA78F2913> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff86be1000 - 0x7fff86be5ff7 libmathCommon.A.dylib ??? (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff86c97000 - 0x7fff86cadfef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff86cf9000 - 0x7fff86d24ff7 libxslt.1.dylib ??? (???) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff87065000 - 0x7fff87222fff libicucore.A.dylib ??? (???) <224721C0-EC21-94D0-6484-66C603C34CBE> /usr/lib/libicucore.A.dylib
    0x7fff87223000 - 0x7fff87332ff7 libcrypto.0.9.8.dylib ??? (???) <A2DA70D0-02AE-89FA-1CDA-B3CA986CAE6D> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff87333000 - 0x7fff874edfef com.apple.ImageIO.framework 3.0.0 (3.0.0) <D5594E10-F805-F816-10E9-F95753BE18CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff87517000 - 0x7fff8764fff7 com.apple.CoreData 102 (246) <0502CBD8-513E-C19A-3562-20EC35535D71> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8765b000 - 0x7fff87698ff7 libFontRegistry.dylib ??? (???) <43ADB89E-036B-9D8F-CC4B-CE6B6BCC5AB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff87699000 - 0x7fff876e2ff7 com.apple.securityinterface 4.0 (36981) <F14235A2-8320-1A71-24FE-EB22008483E9> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff876e3000 - 0x7fff87792fef edu.mit.Kerberos 6.5.8 (6.5.8) <A9C16B72-A1F8-3DDE-7772-E7635774CA6E> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff87793000 - 0x7fff877d3fef com.apple.QD 3.31 (???) <0FA2713A-99BD-A96B-56AF-7DB0AB4927AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff877d4000 - 0x7fff877d9ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff877dc000 - 0x7fff877fdff7 com.apple.opencl 11 (11) <A53E07FB-AD2F-9F3E-EC00-7DCC7DDE2F90> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff877fe000 - 0x7fff87803fff libGFXShared.dylib ??? (???) <C386DB22-A0AA-D826-ACBA-25E82B480D05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff87804000 - 0x7fff8781fff7 com.apple.openscripting 1.3 (???) <DFBFBFD3-90C0-0710-300C-1A7210CB3713> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff87820000 - 0x7fff8789dfef com.apple.backup.framework 1.1 (1.0) <35E2F1B1-C301-EFF7-F222-964D1A6ABE09> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff87949000 - 0x7fff87c46fef com.apple.HIToolbox 1.6.0 (???) <870B39B2-55BD-9C82-72EB-2E3470BD0E14> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff87c77000 - 0x7fff87c7dff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff87c7e000 - 0x7fff87c9efef com.apple.DirectoryService.Framework 3.6 (621) <925EE208-03B2-B24A-3686-57EAFBDA5ADF> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff87c9f000 - 0x7fff87ca0fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff87ca1000 - 0x7fff87ca7fff libCGXCoreImage.A.dylib ??? (???) <D113DB65-BB37-5499-8825-E6AE8AB1F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff87ca8000 - 0x7fff87fdafef com.apple.CoreServices.CarbonCore 859.1 (859.1) <5712C4C1-B18B-88EE-221F-DA04A8EDA029> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff87fdb000 - 0x7fff88056ff7 com.apple.ISSupport 1.9.1 (49) <EF46DFEE-3B41-97C1-1BE6-A19A1786B85F> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff88057000 - 0x7fff8849afef libLAPACK.dylib ??? (???) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8849b000 - 0x7fff884a2fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff884a3000 - 0x7fff88520fe7 com.apple.CoreText 3.0.0 (???) <51175014-9F0C-7E96-FB6F-3DC5E446B92E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff88521000 - 0x7fff885ddff7 com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff88693000 - 0x7fff886c8ff7 libcups.2.dylib ??? (???) <1FE99C26-B845-F508-815A-5B2CF2CA5337> /usr/lib/libcups.2.dylib
    0x7fff886c9000 - 0x7fff886dafef libz.1.dylib ??? (???) <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff886db000 - 0x7fff886dcff7 com.apple.TrustEvaluationAgent 1.0 (1) <4B6B7853-EDAC-08B7-3324-CA9A3802FAE2> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff886dd000 - 0x7fff88716ff7 com.apple.MeshKit 1.0 (49.0) <7587A7F2-DF5D-B8B2-A6A8-1389CF28BC51> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff88717000 - 0x7fff88774fef com.apple.framework.IOKit 2.0 (???) <65AA6170-12E3-BFB5-F982-E0C433610A1F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff88775000 - 0x7fff88775ff7 com.apple.vecLib 3.5 (vecLib 3.5) <5B072584-9579-F54F-180E-5D425B37E85C> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff88776000 - 0x7fff887c5ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff887c6000 - 0x7fff88984ff7 libSystem.B.dylib ??? (???) <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib
    0x7fff88985000 - 0x7fff889effe7 libvMisc.dylib ??? (???) <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib
    Model: MacBook2,1, BootROM MB21.00A5.B07, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.13f3
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), Atheros 5416: 2.0.19.4
    Bluetooth: Version 2.2.1f7, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en3
    Serial ATA Device: FUJITSU MHY2080BH, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021a, 0x1d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000

    if anyone can help me understand this i have fixed the flash portion of my problem but java still crashes the computer when trying to load.

  • Firefox crashes when applet + XSLTProcessor are running

    a 66K .xsl file run through firefox when a dummy java applet is loaded (libnpjp2.so 1.6.0_29) crashes my firefox (8.0.1) on Ubuntu 10.0.4
    You need to run it with my .xsl and .xml files. ('''sorry''' about cut and paste but have no access to file sharing sites - strict proxy!)

    '''% gdb firefox-bin -c core'''
    GNU gdb (GDB) 7.1-ubuntu
    Copyright (C) 2010 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law. Type "show copying"
    and "show warranty" for details.
    This GDB was configured as "i486-linux-gnu".
    For bug reporting instructions, please see:
    <http://www.gnu.org/software/gdb/bugs/>...
    Reading symbols from /home/49356/firefox-8.0.1/firefox-bin...(no debugging symbols found)...done.
    [New Thread 23897]
    [New Thread 23990]
    Reading symbols from /home/49356/jre1.6.0_29/lib/i386/libnpjp2.so...(no debugging symbols found)...done.
    Loaded symbols for /home/49356/jre1.6.0_29/lib/i386/libnpjp2.so
    Reading symbols from /home/49356/jre1.6.0_29/lib/i386/client/libjvm.so...(no debugging symbols found)...done.
    Loaded symbols for /home/49356/jre1.6.0_29/lib/i386/client/libjvm.so
    Core was generated by `./firefox-bin'.
    Program terminated with signal 11, Segmentation fault.
    #0 0x08050a17 in free ()
    (gdb) bt
    #0 0x08050a17 in free ()
    #1 0x00000000 in ?? ()
    (gdb) quit

  • JVM Crash When Using JNI and COM

    I'm trying to call a DLL compiled from VB6 source code that I do not have access to. The VB6 code simply retrieves data from a DB2 database using ADO and my client code grabs that data and marshals it to my Java code. I'm attempting to achieve this using JNI and COM (without a third-party bridge). It works 75% of the time, but the other 25% of the time, the JVM crashes with the usual Hotspot crash log containing an access violation exception. However, I don't know what in my C++ code (VC++ 8) could be causing this except for passing a "wild" pointer to the code lying underneath the COM object interface. If that is the case, I don't know how I am doing that.
    The Java code that is calling my native method is running on Tomcat 5.5.25 and just to be safe, I am not allowing multiple threads to concurrently call the method in my JNI DLL (though I realize that this will kill performance). Once I can get past this problem, I'll do the COM interfacing on a worker thread in my native code so I don't screw up CoInitialize and CoUninitialize calls in the case the same thread is concurrently executing multiple calls to my native code.
    I've noticed that in most cases, the JVM crashes during my call to the pClsAccount->OpenConnection method. However, my DLL isn't what is listed on the top of the call stack, which is why I suspect the passing of a wild pointer, though I'm just taking a guess at that. Does anyone have an idea as to what's going on ?
    JNIEXPORT jobject JNICALL Java_CustomerInfo_nGetCustomerAccountInfo(JNIEnv *env, jobject customerInfo, jstring accountNumber, jstring iniFileName)
    jboolean isCopy;
    // Account info class and instance to be instantiated
    jclass accountInfoCls = NULL;
    jobject accountInfoObj = NULL;
    // The constructor ID of the accountInfoCls
    jmethodID ctorID = NULL;
    // Pointer to the interface for the ClsAccount COM object
    _clsAccount *pClsAccount = NULL;
    HRESULT hr;
    BSTR bstrIniFileName(L"");
    try
    const char *nativeAccountNumber = NULL;
    if (accountNumber != NULL)
    nativeAccountNumber = env->GetStringUTFChars(accountNumber, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "accountNumber passed in was null !");
    return NULL;
    // Initialization
    variantt varConnectionSucceeded = variantt(false);
    variantt varGetAccountInfoSucceeded = variantt(false);
    variantt varAccountNumber = variantt(nativeAccountNumber);
    bstrt bstrLastPaymentDate = bstrt();
    bstrt bstrLastErrorMessage = bstrt();
    bstrt bstrLastErrorNumber = bstrt();
    jlong jTotalDue = NULL;
    jlong jEstablishedDueDay = NULL;
    jlong jLastPaymentAmount = NULL;
    jstring jLastPaymentDate = NULL;
    jstring jLastErrorMessage = NULL;
    jstring jLastErrorNumber = NULL;
    jthrowable jException = NULL;
    const char *chLastPaymentDate = NULL;
    const char *chLastErrorMessage = NULL;
    const char *chLastErrorNumber = NULL;
    long long totalDue;
    long long lastPaymentAmount;
    long establishedDueDateDay;
    //Convert string from Java string to C string to VB string
    const char *nativeIniFileName = NULL;
    if (iniFileName != NULL)
    nativeIniFileName = env->GetStringUTFChars(iniFileName, &isCopy);
    else
    jclass newExcCls;
    env->ExceptionDescribe();
    env->ExceptionClear();
    newExcCls = env->FindClass("java/lang/IllegalArgumentException");
    env->ThrowNew(newExcCls, "iniFileName passed in was null");
    return NULL;
    bstrIniFileName = comutil::ConvertStringToBSTR(nativeIniFileName);
    CoInitialize(NULL);
    // Create an instance of the COClass with the interface over it
    hr = CoCreateInstance(__uuidof(clsAccount), NULL, CLSCTX_INPROC_SERVER, __uuidof(_clsAccount), (void **)&pClsAccount);
    if (hr == S_OK)
    varConnectionSucceeded.boolVal = pClsAccount->OpenConnection(&bstrIniFileName);
    &#12288;
    if (varConnectionSucceeded.boolVal == -1)
    varGetAccountInfoSucceeded.boolVal = pClsAccount->GetAccountPaymentInformation(&(varAccountNumber.GetVARIANT()));
    env->ReleaseStringUTFChars(accountNumber, nativeAccountNumber);
    // Extract all available account information from the ClsAccount object
    if (varGetAccountInfoSucceeded.boolVal == -1)
    totalDue = pClsAccount->TotalDue.int64;
    establishedDueDateDay = pClsAccount->EstablishedDueDateDay;
    lastPaymentAmount = pClsAccount->LastPaymentAmount.int64;
    bstrLastPaymentDate = pClsAccount->LastPaymentDate;
    chLastPaymentDate = comutil::ConvertBSTRToString(bstrLastPaymentDate.GetBSTR());
    jTotalDue = (jlong)totalDue;
    jEstablishedDueDay = (jlong)establishedDueDateDay;
    jLastPaymentAmount = (jlong)lastPaymentAmount;
    jLastPaymentDate = env->NewStringUTF(chLastPaymentDate);
    delete[] chLastPaymentDate;
    pClsAccount->CloseConnection();
    // Populate error fields if any errors occur
    bstrLastErrorMessage = pClsAccount->LastErrMessage;
    chLastErrorMessage = comutil::ConvertBSTRToString(bstrLastErrorMessage.GetBSTR());
    bstrLastErrorNumber = pClsAccount->LastErrNumber;
    chLastErrorNumber = comutil::ConvertBSTRToString(bstrLastErrorNumber.GetBSTR());
    jLastErrorMessage = env->NewStringUTF(chLastErrorMessage);
    jLastErrorNumber = env->NewStringUTF(chLastErrorNumber);
    delete[] chLastErrorMessage;
    delete[] chLastErrorNumber;
    const char* clsName = "com/nuance/merchantsmutual/businessentities/CustomerAccountInfo";
    // Find the Java class and the ID of its constructor
    accountInfoCls = env->FindClass(clsName);
    ctorID = env->GetMethodID(accountInfoCls, "<init>", "(JJJLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    //Release all resources associated with the ClsAccount instance
    pClsAccount->Release();
    //Instantiate the class with the given parameters
    accountInfoObj = env->NewObject(accountInfoCls, ctorID, jTotalDue, jEstablishedDueDay, jLastPaymentAmount, jLastPaymentDate, jLastErrorMessage, jLastErrorNumber);
    jException = env->ExceptionOccurred();
    if (jException != NULL)
    env->ExceptionDescribe();
    env->ExceptionClear();
    else if (hr == REGDB_E_CLASSNOTREG)
    cout << "COM class not registered" << endl;
    else if ( hr == CLASS_E_NOAGGREGATION)
    cout << "COM class can't be aggregated" << endl;
    else if (hr == E_NOINTERFACE)
    cout << "No interface for COM class clsAccount" << endl;
    else if (hr == E_POINTER)
    cout << "*ppv pointer was NULL !" << endl;
    else
    cout << "Error occurred while creating COM object. HR is [" << hr << "]" << endl;
    // Free the BSTR because a new one was returned with a call to comutil::ConvertStringToBSTR
    SysFreeString(bstrIniFileName);
    // Release the string when it's no longer needed. MUST call if string won't be used
    // anymore or else a memory leak will occur
    env->ReleaseStringUTFChars(iniFileName, nativeIniFileName);
    CoUninitialize();
    &#12288;
    catch (_com_error &e)
    cout << "Encountered an exception in GetCustomerAccountInfo: Error was " << e.ErrorMessage();
    pClsAccount->Release();
    catch (...)
    pClsAccount->Release();
    return accountInfoObj;
    Edited by: Cthulhu76 on Jan 5, 2010 9:18 AM

    0x49202400 JavaThread "ContainerBackgroundProcessor[StandardEngine[Catalina]]" daemon [_thread_blocked, id=5340, stack(0x49bf0000,0x49c40000)]
    0x48a7e800 JavaThread "Thread-1" [_thread_in_native, id=5976, stack(0x48f00000,0x48f50000)]
    0x48a0dc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3072, stack(0x48c60000,0x48cb0000)]
    0x48a09000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4988, stack(0x48c10000,0x48c60000)]
    0x48a07c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=3124, stack(0x48bc0000,0x48c10000)]
    0x48a07000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2572, stack(0x48b70000,0x48bc0000)]
    0x489f5c00 JavaThread "Finalizer" daemon [_thread_blocked, id=5752, stack(0x48b20000,0x48b70000)]
    0x489f4c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2596, stack(0x48ad0000,0x48b20000)]
    0x003c6000 JavaThread "main" [_thread_in_native, id=4252, stack(0x00820000,0x00870000)]
    Other Threads:
    0x489f0400 VMThread [stack: 0x48a80000,0x48ad0000] [id=5624]
    0x48a18800 WatcherThread [stack: 0x48cb0000,0x48d00000] [id=1192]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 36288K, used 12762K [0x02940000, 0x050a0000, 0x07800000)
    eden space 32256K, 34% used [0x02940000, 0x0343af58, 0x048c0000)
    from space 4032K, 37% used [0x04cb0000, 0x04e2ba28, 0x050a0000)
    to space 4032K, 0% used [0x048c0000, 0x048c0000, 0x04cb0000)
    tenured generation total 483968K, used 7518K [0x07800000, 0x250a0000, 0x42940000)
    the space 483968K, 1% used [0x07800000, 0x07f57958, 0x07f57a00, 0x250a0000)
    compacting perm gen total 14080K, used 14016K [0x42940000, 0x43700000, 0x46940000)
    the space 14080K, 99% used [0x42940000, 0x436f0320, 0x436f0400, 0x43700000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040f000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\bin\tomcat5.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\MSVCRT.dll
    0x7c8d0000 - 0x7d0cf000      C:\WINDOWS\system32\SHELL32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x76290000 - 0x762ad000      C:\WINDOWS\system32\IMM32.DLL
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
    0x6d7c0000 - 0x6da10000      C:\Program Files\Java\jre1.6.0_07\bin\client\jvm.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x6d270000 - 0x6d278000      C:\Program Files\Java\jre1.6.0_07\bin\hpi.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d770000 - 0x6d77c000      C:\Program Files\Java\jre1.6.0_07\bin\verify.dll
    0x6d310000 - 0x6d32f000      C:\Program Files\Java\jre1.6.0_07\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Program Files\Java\jre1.6.0_07\bin\zip.dll
    0x6d570000 - 0x6d583000      C:\Program Files\Java\jre1.6.0_07\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\system32\mswsock.dll
    0x5f270000 - 0x5f2ca000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x4a6a0000 - 0x4a6ac000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\CustomerInfoProxy.dll
    0x77670000 - 0x777a9000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCP80.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_E6967989\MSVCR80.dll
    0x777b0000 - 0x77833000      C:\WINDOWS\system32\CLBCatQ.DLL
    0x77010000 - 0x770d6000      C:\WINDOWS\system32\COMRes.dll
    0x77b90000 - 0x77b98000      C:\WINDOWS\system32\VERSION.dll
    0x75da0000 - 0x75e5d000      C:\WINDOWS\system32\SXS.DLL
    0x75e60000 - 0x75e87000      C:\WINDOWS\system32\apphelp.dll
    0x4dc30000 - 0x4dc5e000      C:\WINDOWS\system32\msctfime.ime
    0x4b0d0000 - 0x4b395000      C:\WINDOWS\system32\xpsp2res.dll
    0x71bb0000 - 0x71bb9000      C:\WINDOWS\system32\WSOCK32.dll
    0x4bbe0000 - 0x4bbea000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\ClearTranProxy.dll
    0x745e0000 - 0x7489e000      C:\WINDOWS\system32\msi.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\NETAPI32.dll
    0x4bc50000 - 0x4bc6c000      C:\WINDOWS\system32\DBNETLIB.DLL
    0x71f60000 - 0x71f64000      C:\WINDOWS\system32\security.dll
    0x76c90000 - 0x76cb7000      C:\WINDOWS\system32\msv1_0.dll
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\system32\crypt32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    0x4bcf0000 - 0x4bcff000      C:\Program Files\Common Files\System\Ole DB\SQLOLEDB.RLL
    0x4a8a0000 - 0x4a8aa000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MIGI.DLL
    0x73570000 - 0x736c2000      C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib\MSVBVM60.DLL
    0x4a950000 - 0x4a9e2000      C:\Program Files\Common Files\System\ado\msado15.dll
    0x74a50000 - 0x74a6a000      C:\WINDOWS\system32\MSDART.DLL
    0x4c850000 - 0x4c8c9000      C:\Program Files\Common Files\System\Ole DB\oledb32.dll
    0x4dbb0000 - 0x4dbc1000      C:\Program Files\Common Files\System\Ole DB\OLEDB32R.DLL
    VM Arguments:
    jvm_args: -Dcatalina.home=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Dcatalina.base=C:\Program Files\Apache Software Foundation\Tomcat 5.5 -Djava.endorsed.dirs=C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\endorsed -Djava.io.tmpdir=C:\Program Files\Apache Software Foundation\Tomcat 5.5\temp -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\logging.properties -Djava.library.path=C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\MMI\WEB-INF\lib vfprintf -Xms512m -Xmx1024m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_07
    [error occurred during error reporting (printing environment variables), id 0xc0000005]
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 7 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b23) for windows-x86 JRE (1.6.0_07-b06), built on Jun 10 2008 01:14:11 by "java_re" with MS VC++ 7.1
    time: Mon Dec 28 15:24:00 2009
    elapsed time: 600 seconds

  • Java.lang.Class- getFields() results in JVM crash when called through JNI

    From a C++ application, I use Invocation APIs to create a JVM and call some Java methods using JNI
    I get a crash in jvm.dll with EXCEPTION_ACCESS_VIOLATION
    when I try to call "getFields" method of java.lang.Class in order to get the Fields of the java class
    This method call, should return a java/lang/reflect/Fields[] on success
    I am able to get the method ID of this method by using pEnv->GetMethodID(..)
    However, when I call this method using CallObjectMethod(..), HotSpt JVM crashes with access violation with the dump given below.
    Any clues on how to debug and find the problem?
    Or has anyone tried getting the fields of a Java class from C++ by calling reflection APIs uing JNI?
    Thanks in advance!
    Sample code
    jclass testerClass = pEnv->FindClass("com/test/Tester");
    jmethodID cid = pEnv->GetMethodID(testerClass,"<init>","()V");
    if(NULL == cid)
    pEnv->ExceptionDescribe();
    jobject testerObject = pEnv->NewObjectV(testerClass, mid);
    jmethodID mid = pEnv->GetMethodID(testerClass, "getClass",
                             "()Ljava/lang/Class;");
    jobject clsObj = (jobject)pEnv->CallObjectMethod(testerObject, mid);
    pEnv->ExceptionDescribe();
    jclass      jCls = pEnv->GetObjectClass(clsObj);
    jmethodID midGetFields = pEnv->GetMethodID(jCls, "getFields",
                                            "()[Ljava/lang/reflect/Field;");
    jobjectArray jobjArray = (jobjectArray)pEnv->CallObjectMethod(testerObject, midGetFields);
    pEnv->ExceptionDescribe();
    Crash dump
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x809E69F
    Function=JVM_FindSignal+0x11505
    Library=D:\Java\j2re1.4.2_03\bin\client\jvm.dll
    Current Java thread:
         at java.lang.Class.privateGetDeclaredFields(Unknown Source)
         at java.lang.Class.privateGetPublicFields(Unknown Source)
         at java.lang.Class.getFields(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00419000      E:\SC\SC12.1\SCApplications\SNMP\Bin\JNITester.exe
    0x77F50000 - 0x77FF7000      C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000      C:\WINDOWS\system32\kernel32.dll
    0x10000000 - 0x10023000      E:\SC\SC12.1\SCApplications\SNMP\Bin\JniUtils.dll
    0x00320000 - 0x00332000      E:\SnmpIpmNativeTestDriver\MTFStubHelper.dll
    0x00340000 - 0x0035B000      E:\SnmpIpmNativeTestDriver\MTFXMLFileAPI.dll
    0x12000000 - 0x122B1000      e:\sc\sc12.1\bin\xerces-c_2_2_0D.dll
    0x77DD0000 - 0x77E5D000      C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x78086000      C:\WINDOWS\system32\RPCRT4.dll
    0x10200000 - 0x1026C000      e:\sc\sc12.1\bin\MSVCRTD.dll
    0x102A0000 - 0x102B7000      e:\sc\sc12.1\bin\MSVCIRTD.dll
    0x5F800000 - 0x5F8E9000      e:\sc\sc12.1\bin\MFC42uD.DLL
    0x77C70000 - 0x77CB0000      C:\WINDOWS\system32\GDI32.dll
    0x77D40000 - 0x77DCC000      C:\WINDOWS\system32\USER32.dll
    0x5F700000 - 0x5F746000      e:\sc\sc12.1\bin\MFCD42uD.DLL
    0x5F500000 - 0x5F5C6000      e:\sc\sc12.1\bin\MFCO42uD.DLL
    0x10480000 - 0x104FE000      e:\sc\sc12.1\bin\MSVCP60D.dll
    0x15020000 - 0x15042000      e:\sc\sc12.1\bin\SCTraceLib.dll
    0x6D510000 - 0x6D58D000      C:\WINDOWS\System32\dbghelp.dll
    0x77C10000 - 0x77C63000      C:\WINDOWS\system32\msvcrt.dll
    0x77C00000 - 0x77C07000      C:\WINDOWS\system32\VERSION.dll
    0x00360000 - 0x0037D000      e:\sc\sc12.1\bin\SCFileManager.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\System32\PSAPI.DLL
    0x00420000 - 0x00580000      e:\sc\sc12.1\bin\BctCoreCL.dll
    0x5D920000 - 0x5D929000      C:\WINDOWS\System32\RPCNS4.dll
    0x71B20000 - 0x71B31000      C:\WINDOWS\system32\MPR.dll
    0x71C20000 - 0x71C6E000      C:\WINDOWS\System32\NETAPI32.dll
    0x71AB0000 - 0x71AC5000      C:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\System32\WS2HELP.dll
    0x15000000 - 0x15012000      e:\sc\sc12.1\bin\CTEventLog.dll
    0x773D0000 - 0x77BC2000      C:\WINDOWS\system32\SHELL32.dll
    0x70A70000 - 0x70AD4000      C:\WINDOWS\system32\SHLWAPI.dll
    0x771B0000 - 0x772D1000      C:\WINDOWS\system32\ole32.dll
    0x77120000 - 0x771AB000      C:\WINDOWS\system32\OLEAUT32.dll
    0x1F7A0000 - 0x1F7D6000      C:\WINDOWS\System32\ODBC32.dll
    0x77340000 - 0x773CB000      C:\WINDOWS\system32\COMCTL32.dll
    0x763B0000 - 0x763F5000      C:\WINDOWS\system32\comdlg32.dll
    0x08000000 - 0x08138000      D:\Java\j2re1.4.2_03\bin\client\jvm.dll
    0x76B40000 - 0x76B6C000      C:\WINDOWS\System32\WINMM.dll
    0x5FD00000 - 0x5FD0D000      C:\WINDOWS\System32\MFC42LOC.DLL
    0x71950000 - 0x71A34000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll
    0x1F840000 - 0x1F857000      C:\WINDOWS\System32\odbcint.dll
    0x5DAC0000 - 0x5DAC7000      C:\WINDOWS\System32\rdpsnd.dll
    0x00FE0000 - 0x00FE7000      D:\Java\j2re1.4.2_03\bin\hpi.dll
    0x01000000 - 0x0100E000      D:\Java\j2re1.4.2_03\bin\verify.dll
    0x01010000 - 0x01029000      D:\Java\j2re1.4.2_03\bin\java.dll
    0x01030000 - 0x0103D000      D:\Java\j2re1.4.2_03\bin\zip.dll
    0x76C90000 - 0x76CB2000      C:\WINDOWS\system32\imagehlp.dll
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 132K [0x15050000, 0x150f0000, 0x15530000)
    eden space 512K, 25% used [0x15050000, 0x15071250, 0x150d0000)
    from space 64K, 0% used [0x150d0000, 0x150d0000, 0x150e0000)
    to space 64K, 0% used [0x150e0000, 0x150e0000, 0x150f0000)
    tenured generation total 1408K, used 0K [0x15530000, 0x15690000, 0x19050000)
    the space 1408K, 0% used [0x15530000, 0x15530000, 0x15530200, 0x15690000)
    compacting perm gen total 4096K, used 964K [0x19050000, 0x19450000, 0x1d050000)
    the space 4096K, 23% used [0x19050000, 0x191410e0, 0x19141200, 0x19450000)
    Local Time = Wed Aug 25 21:06:44 2004
    Elapsed Time = 0
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_03-b02 mixed mode)

    You are right, I tried getting the java.lang.Class reference for the com.test.Tester by calling getClass() on com.test.Tester
    And using this jclass reference for java.lang.Class, I tried getting the method ID of getFields and eventually the Field[]
    Thanks for the help
    I have some more questions.
    Assumption - Using JNI, I got the fields array of com.test.Tester and I am iterating through the fields
    1.Assuming that the Tester class had an Integer field say m_nIntVal, then once I get the jobject equivalent of this Field in C++.
    Now I need to get the type of the field (I call the method java.lang.reflect.getType() from JNI)
    This gives me a jclass reference to it's type i.e java.lang.Integer
    2.I need to get the name of this type i.e I want to get the name of the type in a string as "java.lang.Integer"
    For this, on the jclass reference of java.lang.Integer got in Step 1, I call getClass() from JNI (to get the java.lang.Class) and then getName()
    Now, for calling getClass(), I need a temporary object reference corresponding to the jclass of java.lang.Integer, The problem is that Integer does not have a default constructor, so my call to create the jobject fails.
    But, since I do not know that I am constructing an Integer (remember that is what I am trying to find out - getType), I cant pass any values to constructor
    Now, how do I go about creating a jobject of Integer, without knowing that I am constructing that, as this does not have a default constructor without parameters
    Also, I tried using AllocObject to get the jobject and then tried to get the method ID of getClass(). Even this failed
    3. If the com.test.Tester class had a primitive "int" field, say m_nPrimitiveInt
    for which java provides a Class representation, I am able to get the jclass reference to the type of m_nPrimitiveInt
    Now, how do I get the name of the type as "int" in a string?
    Forllowing a similar procedure like in Step 2 fails when I try to pass the jclass reference to the type of m_nPrimitiveInt to the GetMethodID
    with the error FATAL ERROR in native method: JNI received a class argument that is not a class
    Can you tell me what is the way out?
    Thanks in advance,
    Also, can I mail you with some doubts that I have? If its ok, please contact me at [email protected]

Maybe you are looking for

  • Write to application log in user exit

    Hi all, I want to write a collection messages to the application log in user exit EBIA0003, user exit for transaction EA00, but I only can write one if I just use message eYYY(x) with lv_msgv1                                   lv_msgv2               

  • Weird behavior on Baseline date in MIR4

    Dear Expert, Using MIR4, I try to change the payment terms, the baseline date will automatically changed to system date, which is not following the rules on the payment terms setting. I have done a debug on this, and this process is executed somewher

  • View deposit on a BP

    Is there an easy way to tell if a BP has a deposit on account? We want to see in the marketing documents if there is a deposit on account for the BP. Or is a UDF with a formatted search the only way? Thanks

  • Manager Self Service - An exception occurred while processing your request.

    hi SAP Expert, when i go to the Manager Self-Service > Team, Budget, Planning, the page was showing the error below : Headcount Portal runtime error. An exception occurred while processing your request. Send the exception ID to your portal administra

  • JSF Data Table help

    I have the following dataTable columns Completed Status | Course |Period| YearCompleted | Course Name and Number| Institution | Credits | Grade | suppose there are 10 rows underneath this table. I want the user to fill all the fields except grade. I