Use of AffineTrasform in java2d

Hello, currently i have a program that draws lines from an array, that moves across the frame from right to left.
it appends the data on the left of the wave. HOWEVER i want it to append the new data at the head of the wave
so old data is moved to the left and new data is appended on the right hand side. pls does someone know
a flip function that i can use in the current program or anything else... code:
public class newUKC extends JPanel  {
    private static final long serialVersionUID = 0;
    private GeneralPath path = new GeneralPath();
    private int x = 180;
    private int y = 100;
    private int move = -2; //to shift line across the frame using 2D trasform
    int[] DepthArray = { 125, 130, 135, 112, 105, 100, 120, 130, 145, 140, 122, 125, 100, 90 };
    private AffineTransform at = new AffineTransform();       
    //constructor
    public newUKC() {
        path.moveTo(x,y);
        new Timer(1000, al).start();
    public int nextInt(int position){
         int index=0;     
         index = DepthArray[position];
         return index;
    ActionListener al = new ActionListener() {
         int i = 0;
         public void actionPerformed(ActionEvent evt) {                                       
              y = nextInt(i);
              //lines = new Line2D.Float(1,y,-getWidth()/4,getHeight()); 
              //test case
              if(y==90)
                   i=0;             
              i++; //increment through the array
              x -= 15; //move x by 20
              move -= 5; //moves frame to the left by 10
              path.lineTo(x,y);
              repaint();
    protected void paintComponent(Graphics g){
         super.paintComponent(g);
     drawLand((Graphics2D) g);
                drawVessel((Graphics2D) g);
     private void drawLand(Graphics2D g2D) {     
          at.setToIdentity();
                                at.translate(move,0);
                                g2D.transform(at);
          g2D.draw(path);
     //VESSEL
     private void drawVessel(Graphics2D g2D) {
          g2D.setColor(Color.gray);
          BasicStroke vesselpen = new BasicStroke(2F);
          g2D.setStroke(vesselpen);          
          GeneralPath vesselPath = new GeneralPath();
          vesselPath.moveTo(100.0f,42.0f);
          vesselPath.lineTo(103.0f,55.0f);
          vesselPath.lineTo(181.0f,50.0f);
          vesselPath.lineTo(191.0f,37.0f);
          vesselPath.closePath();
          at.setToIdentity();
        at.translate(-move,0);
        g2D.transform(at);
          g2D.setPaint(Color.gray);     
          g2D.fill(vesselPath);
          g2D.draw(vesselPath);
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                JComponent comp = new newUKC();
                comp.setPreferredSize(new Dimension(400, 200));
                JFrame f = new JFrame("UKC");
                f.getContentPane().add(comp);
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.pack();
                f.setLocationRelativeTo(null);
                f.setVisible(true);
}thanks

I see you're getting no bites here. Your problem has me wondering if you are looking at this in the wrong way (and anyone who understands this situation better than me -- please correct me if I'm wrong!), but I see this problem more of as a data problem than an imaging problem. To me, the issue is not how to manipulate the image so that it flips here or part of it moves over there. No, rather the issue is how to change the data that drives the image so that the image will do what I want. I don't see you using affine transformations or anything similar at all. Rather, you have a loop that advances the numbers in the array, the numbers which tell the paintComponent override where to draw the lines, but when those numbers reach a certain maximum (corresponding to the edge of the screen), they start over again at 0, and then begin increment once more with the next iteration of the loop. Again, I am certainly no graphics expert. Again, I would appreciate any corrections or vocalizations from those more experienced than me (i.e., most everyone else here).

Similar Messages

  • Swing, Java2d, JRE 6 Update N, Video Card/Driver

    Hello,
    I am developping a high-performance ui using Swing, SwingX and Java2D.
    I am using JRE 6 UPDATE N.
    I am looking for some information about what video card/driver would bring me the best performance solution on windows xp?
    (Hardware-accelerated graphics, etc).
    thank you,
    T

    I am looking for some information about what video card/driver would bring me the best performance solution on windows xp?
    (Hardware-accelerated graphics, etc).Nobody can answer this as it's too vague. In general, you can research video cards and their capabilities to see which is the fastest at this or that operation. Then you could search for drivers that work well on that card and OS configuration. But "the best" solution doesn't exist in such a general context. Since 1.4 of Java, Swing makes use of hardware acceleration. Whether DirectX is used or OpenGL is something you shouldn't care about. DirectX is preferred of course, but this won't come into play unless you're doing 3D stuff (I believe).

  • Alpha masks

    I searched everywhere for a tutorial explaining how to make an image with an aplha mask ( not uniform transparency ) Can you hel me?

    Do you mean making an image that is a mask, or making an image using a mask?
    To create an image that will be used as a mask, start with a new BufferedImage having an alpha channel (like TYPE_INT_ARGB). Then draw into that image using any of the Java2D primitives, employing transparency either in the color value or an AlphaComposite. Note that the actual color is not important, only the alpha value will be used.
    To then use that image as a mask, simply set an alpha composite type of "source in." After that, anything you draw into the image will be constrained by the alpha values of the image.
    For example, the following will create an image with a large letter "A" and draw another image into just the pixels occupied by the letter. Since a BufferedImage with an alpha channel is initialized to all transparent, only the visible pixels within the letter will be used to mask the second image.BufferedImage bi = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB);
    Graphics2D g = bi.createGraphics();
    Font f = new Font("sansserif", Font.BOLD, 140);
    g.setFont(f);
    g.setColor(Color.black);
    g.drawString("A", 0, 100);
    g.setComposite(AlphaComposite.SrcIn);
    g.drawImage(anotherInterestingImage, 0, 0, null);

  • 1.5 beta 2 openGL pipeline in fullscreen.

    Thanks for your interest:
    I used System.setProperty("sun.java2d.opengl","True"); to use the new openGL pipeline and found
    that I can run my game in windowed mode with unprecedented performance (accelerated text, primitive
    shapes, etc.) however, I get an error when in fullscreen mode:
    Exception in thread "main" java.lang.IllegalArgumentException: Invalid display mode
    at sun.awt.Win32GraphicsDevice.setDisplayMode(Unknown Source)
    (I didn't have this before I set the OpenGL flag to True)
    Here's how I have my app set up:WIDTH = 640
    HEIGHT = 480
    BIT_DEPTH = default
    REFRESH = DisplayMode.REFRESH_RATE_UNKNOWNI've querried to make sure these settings are OK for a valid 'DisplayMode': DEVICE = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
    DEVICE.setFullScreenWindow(FRAME);
    test_Graphics_Device(); // this is where I test for valid DisplayMode
    DEVICE.setDisplayMode(new DisplayMode(WIDTH, HEIGHT, BIT_DEPTH, REFRESH)); // this is where the error line is
    FRAME.createBufferStrategy(2);Any suggestions would be greatly appreciated!

    Make sure the DisplayMode object you pass into setDisplayMode() is 1 obtained from getDisplayModes().

  • Applet display problem

    Dear Sir/Madem,
         I have developed an applet which renders vector drawings from DXF format file. My applet is working fine in appletviewer as well as in Internet Explorer 5 when accessed locally. But when I try to access it from Webserver, just JApplet's GUI appears on the screen. It doesn't render drawing. It also doesn't show icons images of JButtons.
    My applet is accessing my drawing files and icon files for button,(both are on server) properly.
         I have useed jdk1.3.0, java2D API, JApplet ,JPanel as main
    drawing render area.
         Currently the applet resides at following address.
    http://www.samvid.com/WebCadViewer/ViewerDemo.html
         I have to fix the problem urgently.
         I appreciate your help / suggestion.
    Sanjay
    [email protected]

    are you sure about the image loading ?
    you should use something like that:
    (new ImageIcon(getClass().getClassLoader().getResource("image pathname"))).getImage()

  • Java instability corrupted system

    A few days ago, while on Facebook, I got an error of jave 7 17 instability. Before I could update to 7 21, my browser crashed and would not come back. System restore seems to have been blocked as it does not complete successfully.
    Java 7 21, as well as older versions, cannot be verified as installed. In the java advanced section, java for internet explorer and java quick start are both greyed out indicating they can't be used - clearly java is not being allowed to run.
    A day later, internet explorer began self launching to random websites much like a photo slide show. Under win vista, ie has been made such that it can't be uninstalled BUT, I did find were I could turn it off which stopped the self launch issue.
    Unfortunately, am retired and do not have an extra $50 for a fix - have tentatively determine I need to back up what I can and rebuild the system, a time consuming problem and one I would prefer to avoid.
    Any suggestions?

    Yes Dream.Kid
    You may edit or render the image using JAVA. In JAVA2D, it supports the Immediate-Mode Imaging with BufferedImage ( the image that you'd buffered it) which is a higher level of Push model, which uses JDK1.1 for image editing with ImageProducer and ImageConsumer, also ImageObserver. There is another model that JAVA2D supports-- Pull model, which is using BufferedImage and Raster to perform BufferedImageOp and RasterOp. This model could perform convolution for sharpening the image, edge detection and enhancement of the image, rescale it and etc.
    Hope this information help. By the way, all of these are low-level image editing. Hehe. You may refer to the toturial that you downloaded from the Internet.
    Good luck!!

  • Bounds bug in Java2D using LineBreakMeasurer

    I'm having big problems bounding() in Java2d with LineBreakMeasurer.
    Anyone have any ideas? The Rectangle drawn doesn't sit on the string like it should. The bounds method normally works ok. I think its maybe this bug..
    http://bugs.sun.com/bugdatabase/view...bug_id=4463424
    Anyone able to code me a workaround to this please?
    Font font = new Font(layMod.getBotName_fontName(), layMod.getBotName_fontWeight(),
    layMod.getBotName_fontSize());
    g2d.setColor(Color.BLACK);
    g2d.setFont(font);
    FontRenderContext frc= g2d.getFontRenderContext();
    TextLayout layout = new TextLayout("Some text", font, frc);
    AttributedString astr = new AttributedString("Some text");
    astr.addAttribute(TextAttribute.FONT, font);
    AttributedCharacterIterator paragraph = astr.getIterator();
    frc = g2d.getFontRenderContext();
    LineBreakMeasurer lineMeasurer = new LineBreakMeasurer(paragraph, new FontRenderContext(null, false, false));
    int paragraphStart = paragraph.getBeginIndex();
    int paragraphEnd = paragraph.getEndIndex();
    Dimension size = r2d.getBounds().getSize();
    float formatWidth = (float) size.width;
    float drawPosY = layMod.getBotName_y_position()*scalar;
    lineMeasurer.setPosition(paragraphStart);
    while (lineMeasurer.getPosition() < paragraphEnd) {
    layout = lineMeasurer.nextLayout(formatWidth);
    drawPosY += layout.getAscent();
    float drawPosX;
    if (layout.isLeftToRight()) {
    drawPosX = layMod.getBotName_x_position()*scalar;
    else {
    drawPosX = formatWidth - layout.getAdvance();
    layout.draw(g2d, drawPosX, drawPosY);
    drawPosY += layout.getDescent() +
    layout.getLeading();
    }

    I'm still stuck on this, I have some Text, which I want to test for a mouseclick eventually. I want to be able to draw a rectangle around the bounds of the text, and use this as my target area for testing for mouseclicks. The idea is to make the text draggable, but I can't seem to get beyond this rectangle not being drawn in the right place part of the problem!
    The articles were helpful, I've tried to relate them to my problems. But i'm stuck still!
    How to get the bounds of a piece of broken text created by LineBreakMeasurer and put a rectangle around them.
    Any advice incredibly appreciated.

  • Using java2D for first person shooter type of game

    i read that java2d uses opengl under the hood.. if so that will make it fast as java3D. can java2d be used to create first person shooter game with good performace compare to C/C++ ??
    discuss.

    Q: Could it be used to make Wolfenstein?
    A: Yes.
    Q: Could it keep step with the latest 3D game / engine.
    A: No.
    I heard there are a lot of crazy assembly level optimizations that gaming companies do to get the performance.

  • Can I use work java2D or JAI on AVI file?

    I'm learning about Motion Capture and wonder can I use java to import AVI file and cut it frame by frame.
    So I can processing it.

    You'd probably want to use JMF (Java Media Framework) to do this kind of manipulation. It's not easy to use, but it will allows you to manipulate an AVI file.

  • Building a speedometer using Java2D

    I am looking for suggestions on how to animate a speedometer needle. I am currenlty using Java 2D to build the speedometer and am looking for advice on the best way to move the needle as the speed increases.
    I have recently constructed a analog clock using lines for hands and I simply used sin and cos funtions to determine line positions as the time changed. Here I was wondering what the best method would be since a speedometer has more of a smooth movement to it. Wuol using some type of transform be better or are there other ways to do something like this?
    FYI I am relatively new to Swing and Java 2D so this is my second animation attempt.

    There's nothing built in that I know if, but what I was thinking is something that takes two speeds as parameters and animates the change slowly. This would probably have to go in a separate Thread, but here's the general idea:
    public void animateSpeedometer(double oldSpeed, double newSpeed){
       int animationTime = 1000;  //increase this for slower, smoother animation
       for(int i = 0; i < animationTime; i++){
          int currentSpeed = oldSpeed + newSpeed * i / animationTime;
          //draw the speedometer at currentSpeed
          repaint();
    }

  • Soccer animation using java2D

    Hi all,
    I am developing a soccer game for fun. I've already done a simple animation, with squares instead of players and a green screen with white lines as the field. Althouth this simplicity. The only technique I've used is double-buffering. The system runs a bit slow.
    I don't have many experience in java graphics. Which advice could you give me to get a good animation?
    I'm still trying to find how I am going to get the players to have a transparent background. I mean, if I draw a picture with the player, it is going to be a rectangle, but I would like to draw only the shape of the players.
    Any suggestion?

    I haven't really done any animation using Java. But, I do know that if you want to have some sort of transparency to your images (i.e. to show only the image of the soccer player), you won't be able to use JPEG's.
    You'll have to use a format that supports transparency like GIF's.

  • IE crashes after extended use of plug-in

    Hi all:
    After moving to v1.4.2 I've noticed that IE will throw an exception after extended use of the plug-in. By extended use I mean we navigate to applet pages and cycle through over and over (which by the way is part of the normal use of our web site).
    Our web site makes use of four different applets, one of which is a larger graphical applet that makes use of a large amount of memory. IE seems to consistely crash upon initialization of this larger applet (after repeated cycles) but not exclusively so. If we cycle between the three other applets without going to the larger one, IE will eventually crash, it just takes longer to do so. This leads me to think that memory is an issue here. Could there be a memory leak in 1.4.2?
    We've been able to reproduce this IE exception consistently on a Windows 2000 platform running IE v6.0.2800.1106 and with java plug-in versions 1.4.2, 1.4.2_02, and 1.4.2_03. IE crashes even faster when we do this test on Windows Me.
    I know there's got to be others of you out there that have seen this problem. Have any of you found good workarounds for this? Staying on version 1.4.1_06 is not possible for us because of the "zip file is closed" exception that is always thrown when you have caching turned on and you call Crypt.getInstance. Sun's workaround for this only works the first two times you use the applet in the browser session. The third or fourth time it always seems to produce the exception.
    I know this isn't a lot of information but any help would be greatly appreciated.
    The IE exception log is below.
    Steve
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_PRIV_INSTRUCTION (0xc0000096) occurred at PC=0x6D2FA457
    Function=[Unknown.]
    Library=C:\Program Files\Java\j2re1.4.2_02\bin\jpicom32.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at sun.plugin.services.WPlatformService.waitEvent(Native Method)
         at sun.plugin.viewer.frame.IExplorerEmbeddedFrame.destroy(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\iexplore.exe
    0x77F80000 - 0x77FFB000      C:\WINNT\system32\ntdll.dll
    0x78000000 - 0x78045000      C:\WINNT\system32\msvcrt.dll
    0x7C4E0000 - 0x7C599000      C:\WINNT\system32\KERNEL32.dll
    0x77E10000 - 0x77E75000      C:\WINNT\system32\USER32.dll
    0x77F40000 - 0x77F7C000      C:\WINNT\system32\GDI32.DLL
    0x70BD0000 - 0x70C35000      C:\WINNT\system32\SHLWAPI.dll
    0x7C2D0000 - 0x7C332000      C:\WINNT\system32\ADVAPI32.dll
    0x77D30000 - 0x77D9E000      C:\WINNT\system32\RPCRT4.DLL
    0x71700000 - 0x71849000      C:\WINNT\system32\SHDOCVW.dll
    0x007A0000 - 0x00824000      C:\WINNT\system32\comctl32.dll
    0x782F0000 - 0x78538000      C:\WINNT\system32\SHELL32.dll
    0x77A50000 - 0x77B3C000      C:\WINNT\system32\ole32.dll
    0x71160000 - 0x7125D000      C:\WINNT\system32\BROWSEUI.dll
    0x71960000 - 0x71972000      C:\WINNT\system32\browselc.dll
    0x775A0000 - 0x77626000      C:\WINNT\system32\CLBCATQ.DLL
    0x779B0000 - 0x77A4B000      C:\WINNT\system32\OLEAUT32.dll
    0x70200000 - 0x70295000      C:\WINNT\system32\WININET.dll
    0x77440000 - 0x774B8000      C:\WINNT\system32\CRYPT32.dll
    0x77430000 - 0x77440000      C:\WINNT\system32\MSASN1.DLL
    0x77840000 - 0x7787E000      C:\WINNT\system32\cscui.dll
    0x770C0000 - 0x770E3000      C:\WINNT\system32\CSCDLL.DLL
    0x10000000 - 0x10008000      C:\Program Files\Adobe\Acrobat 5.0\Reader\ActiveX\AcroIEHelper.ocx
    0x01A90000 - 0x01AA2000      C:\WINNT\system32\BHOManager.dll
    0x780C0000 - 0x78121000      C:\WINNT\system32\MSVCP60.dll
    0x1A400000 - 0x1A47A000      C:\WINNT\system32\urlmon.dll
    0x77820000 - 0x77827000      C:\WINNT\system32\VERSION.dll
    0x759B0000 - 0x759B6000      C:\WINNT\system32\LZ32.DLL
    0x718C0000 - 0x71944000      C:\WINNT\system32\shdoclc.dll
    0x70440000 - 0x704CF000      C:\WINNT\system32\mlang.dll
    0x75050000 - 0x75058000      C:\WINNT\system32\wsock32.dll
    0x75030000 - 0x75044000      C:\WINNT\system32\WS2_32.DLL
    0x75020000 - 0x75028000      C:\WINNT\system32\WS2HELP.DLL
    0x74FD0000 - 0x74FEE000      C:\WINNT\system32\msafd.dll
    0x75010000 - 0x75017000      C:\WINNT\System32\wshtcpip.dll
    0x774E0000 - 0x77513000      C:\WINNT\system32\RASAPI32.DLL
    0x774C0000 - 0x774D1000      C:\WINNT\system32\RASMAN.DLL
    0x77530000 - 0x77552000      C:\WINNT\system32\TAPI32.DLL
    0x77830000 - 0x7783E000      C:\WINNT\system32\RTUTILS.DLL
    0x75AB0000 - 0x75AB5000      C:\WINNT\system32\sensapi.dll
    0x7C0F0000 - 0x7C152000      C:\WINNT\system32\USERENV.DLL
    0x75170000 - 0x751BF000      C:\WINNT\system32\netapi32.dll
    0x7C340000 - 0x7C34F000      C:\WINNT\system32\SECUR32.DLL
    0x751C0000 - 0x751C6000      C:\WINNT\system32\NETRAP.DLL
    0x75150000 - 0x7515F000      C:\WINNT\system32\SAMLIB.DLL
    0x77950000 - 0x7797A000      C:\WINNT\system32\WLDAP32.DLL
    0x77980000 - 0x779A4000      C:\WINNT\system32\DNSAPI.DLL
    0x01F10000 - 0x02114000      C:\WINNT\system32\msi.dll
    0x61220000 - 0x6122B000      C:\Program Files\Microsoft Hardware\Mouse\MSH_ZWF.dll
    0x76620000 - 0x76631000      C:\WINNT\system32\MPR.DLL
    0x75160000 - 0x7516C000      C:\WINNT\System32\ntlanman.dll
    0x75210000 - 0x75225000      C:\WINNT\System32\NETUI0.DLL
    0x751D0000 - 0x75208000      C:\WINNT\System32\NETUI1.DLL
    0x76710000 - 0x76719000      C:\WINNT\system32\LINKINFO.DLL
    0x76FA0000 - 0x76FAF000      C:\WINNT\system32\ntshrui.dll
    0x773E0000 - 0x773F5000      C:\WINNT\system32\ATL.DLL
    0x1C000000 - 0x1C006000      C:\Program Files\AIM95\idlemon.dll
    0x782C0000 - 0x782CC000      C:\WINNT\System32\rnr20.dll
    0x77340000 - 0x77353000      C:\WINNT\system32\iphlpapi.dll
    0x77520000 - 0x77525000      C:\WINNT\system32\ICMP.DLL
    0x77320000 - 0x77337000      C:\WINNT\system32\MPRAPI.DLL
    0x773B0000 - 0x773DF000      C:\WINNT\system32\ACTIVEDS.DLL
    0x77380000 - 0x773A3000      C:\WINNT\system32\ADSLDPC.DLL
    0x77880000 - 0x7790E000      C:\WINNT\system32\SETUPAPI.DLL
    0x77360000 - 0x77379000      C:\WINNT\system32\DHCPCSVC.DLL
    0x777E0000 - 0x777E8000      C:\WINNT\System32\winrnr.dll
    0x777F0000 - 0x777F5000      C:\WINNT\system32\rasadhlp.dll
    0x63580000 - 0x6382C000      C:\WINNT\System32\mshtml.dll
    0x75E60000 - 0x75E7A000      C:\WINNT\system32\IMM32.DLL
    0x6B700000 - 0x6B790000      C:\WINNT\system32\jscript.dll
    0x6B600000 - 0x6B671000      C:\WINNT\system32\vbscript.dll
    0x75AC0000 - 0x75AE8000      C:\WINNT\system32\MSLS31.DLL
    0x70FB0000 - 0x70FEB000      C:\WINNT\System32\iepeers.dll
    0x77800000 - 0x7781E000      C:\WINNT\System32\WINSPOOL.DRV
    0x030C0000 - 0x0324D000      C:\WINNT\System32\macromed\flash\Flash.ocx
    0x77570000 - 0x775A0000      C:\WINNT\system32\WINMM.dll
    0x76B30000 - 0x76B6E000      C:\WINNT\system32\comdlg32.dll
    0x77560000 - 0x77568000      C:\WINNT\system32\wdmaud.drv
    0x77400000 - 0x77408000      C:\WINNT\system32\msacm32.drv
    0x77410000 - 0x77423000      C:\WINNT\system32\MSACM32.dll
    0x70F30000 - 0x70F9E000      C:\WINNT\System32\mshtmled.dll
    0x750A0000 - 0x750C8000      C:\WINNT\system32\NETMSG.DLL
    0x75D40000 - 0x75D46000      C:\WINNT\system32\msadp32.acm
    0x6D440000 - 0x6D450000      C:\Program Files\Java\j2re1.4.2_02\bin\npjpi142_02.dll
    0x695E0000 - 0x69609000      C:\WINNT\system32\OLEPRO32.DLL
    0x6D310000 - 0x6D327000      C:\Program Files\Java\j2re1.4.2_02\bin\jpiexp32.dll
    0x6D380000 - 0x6D398000      C:\Program Files\Java\j2re1.4.2_02\bin\jpishare.dll
    0x08000000 - 0x08138000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\client\jvm.dll
    0x04470000 - 0x04477000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\hpi.dll
    0x04490000 - 0x0449E000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\verify.dll
    0x044A0000 - 0x044B9000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\java.dll
    0x044C0000 - 0x044CD000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\zip.dll
    0x06950000 - 0x06A5F000      C:\Program Files\Java\j2re1.4.2_02\bin\awt.dll
    0x06A60000 - 0x06AB0000      C:\Program Files\Java\j2re1.4.2_02\bin\fontmanager.dll
    0x51000000 - 0x51044000      C:\WINNT\system32\ddraw.dll
    0x728A0000 - 0x728A6000      C:\WINNT\system32\DCIMAN32.dll
    0x5C000000 - 0x5C0C7000      C:\WINNT\system32\D3DIM700.DLL
    0x6D2F0000 - 0x6D304000      C:\Program Files\Java\j2re1.4.2_02\bin\jpicom32.dll
    0x078C0000 - 0x078CF000      C:\Program Files\Java\j2re1.4.2_02\bin\net.dll
    0x07AD0000 - 0x07AF2000      C:\Program Files\Java\j2re1.4.2_02\bin\dcpr.dll
    0x77920000 - 0x77943000      C:\WINNT\system32\imagehlp.dll
    0x72A00000 - 0x72A2D000      C:\WINNT\system32\DBGHELP.dll
    0x690A0000 - 0x690AB000      C:\WINNT\system32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 535K [0x10010000, 0x100b0000, 0x10770000)
    eden space 512K, 97% used [0x10010000, 0x1008d520, 0x10090000)
    from space 64K, 53% used [0x10090000, 0x10098860, 0x100a0000)
    to space 64K, 0% used [0x100a0000, 0x100a0000, 0x100b0000)
    tenured generation total 3236K, used 2689K [0x10770000, 0x10a99000, 0x16010000)
    the space 3236K, 83% used [0x10770000, 0x10a10628, 0x10a10800, 0x10a99000)
    compacting perm gen total 6144K, used 6102K [0x16010000, 0x16610000, 0x1a010000)
    the space 6144K, 99% used [0x16010000, 0x16605960, 0x16605a00, 0x16610000)
    Local Time = Fri Dec 05 15:09:45 2003
    Elapsed Time = 29
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_02-b03 mixed mode)

    I am also having problems with ie crashing with the use of java. mine crashes mostly when i try to enter a website like yahoo games and it crashes within a few seconds. here are some of my error reports. i do not know anything about java except that i need it to run on certain gaming websites.
    Unexpected Signal : EXCEPTION_ILLEGAL_INSTRUCTION (0xc000001d) occurred at PC=0x8222206
    Function=java.lang.Object.notifyAll()V (compiled Java code)
    Library=(N/A)
    Current Java thread:
         at java.lang.Object.notifyAll(Native Method)
         at a.a.d.d.i.a(Unknown Source)
         - locked <0x11afe248> (a a.a.d.d.i)
         at a.a.b.a.a.ye.run(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\IEXPLORE.EXE
    0x7C900000 - 0x7C9B0000      C:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C8F4000      C:\WINDOWS\system32\kernel32.dll
    0x77C10000 - 0x77C68000      C:\WINDOWS\system32\msvcrt.dll
    0x77D40000 - 0x77DD0000      C:\WINDOWS\system32\USER32.dll
    0x77F10000 - 0x77F56000      C:\WINDOWS\system32\GDI32.dll
    0x77F60000 - 0x77FD6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77DD0000 - 0x77E6B000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77760000 - 0x778CC000      C:\WINDOWS\system32\SHDOCVW.dll
    0x77A80000 - 0x77B14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77B20000 - 0x77B32000      C:\WINDOWS\system32\MSASN1.dll
    0x754D0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x76C30000 - 0x76C5E000      C:\WINDOWS\system32\WINTRUST.dll
    0x76C90000 - 0x76CB8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x77120000 - 0x771AC000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774E0000 - 0x7761C000      C:\WINDOWS\system32\ole32.dll
    0x5B860000 - 0x5B8B4000      C:\WINDOWS\system32\NETAPI32.dll
    0x771B0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x76F60000 - 0x76F8C000      C:\WINDOWS\system32\WLDAP32.dll
    0x77C00000 - 0x77C08000      C:\WINDOWS\system32\VERSION.dll
    0x773D0000 - 0x774D2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x7C9C0000 - 0x7D1D4000      C:\WINDOWS\system32\SHELL32.dll
    0x5D090000 - 0x5D127000      C:\WINDOWS\system32\comctl32.dll
    0x75F80000 - 0x7607C000      C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20012000      C:\WINDOWS\system32\browselc.dll
    0x77B40000 - 0x77B62000      C:\WINDOWS\system32\appHelp.dll
    0x76FD0000 - 0x7704F000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x00A20000 - 0x00AA8000      C:\WINDOWS\system32\shdoclc.dll
    0x5AD70000 - 0x5ADA8000      C:\WINDOWS\system32\UxTheme.dll
    0x77FE0000 - 0x77FF1000      C:\WINDOWS\system32\Secur32.dll
    0x77260000 - 0x772FE000      C:\WINDOWS\system32\urlmon.dll
    0x77A20000 - 0x77A74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661D000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77A13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x10000000 - 0x1000B000      C:\Program Files\Adobe\Acrobat 6.0\Reader\ActiveX\AcroIEHelper.dll
    0x00E90000 - 0x00F4B000      C:\Program Files\Spybot - Search & Destroy\SDHelper.dll
    0x5EDD0000 - 0x5EDE7000      C:\WINDOWS\system32\olepro32.dll
    0x01050000 - 0x01315000      C:\WINDOWS\system32\xpsp2res.dll
    0x01320000 - 0x0137A000      C:\PROGRA~1\iolo\SYSTEM~1\URLSTO~1.DLL
    0x75E90000 - 0x75F40000      C:\WINDOWS\system32\SXS.DLL
    0x75CF0000 - 0x75D81000      C:\WINDOWS\system32\mlang.dll
    0x71AD0000 - 0x71AD9000      C:\WINDOWS\system32\wsock32.dll
    0x71AB0000 - 0x71AC7000      C:\WINDOWS\system32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71A50000 - 0x71A8F000      C:\WINDOWS\system32\mswsock.dll
    0x662B0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71A90000 - 0x71A98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76EE0000 - 0x76F1C000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76E90000 - 0x76EA2000      C:\WINDOWS\system32\rasman.dll
    0x76EB0000 - 0x76EDF000      C:\WINDOWS\system32\TAPI32.dll
    0x76E80000 - 0x76E8E000      C:\WINDOWS\system32\rtutils.dll
    0x76B40000 - 0x76B6D000      C:\WINDOWS\system32\WINMM.dll
    0x77C70000 - 0x77C93000      C:\WINDOWS\system32\msv1_0.dll
    0x76D60000 - 0x76D79000      C:\WINDOWS\system32\iphlpapi.dll
    0x01500000 - 0x01522000      C:\Program Files\Panda Software\Panda Antivirus Platinum\enganche.dll
    0x722B0000 - 0x722B5000      C:\WINDOWS\system32\sensapi.dll
    0x06340000 - 0x06355000      C:\Program Files\Panda Software\Panda Antivirus Platinum\Firewall\SSSensor.dll
    0x7D1E0000 - 0x7D492000      C:\WINDOWS\system32\msi.dll
    0x769C0000 - 0x76A73000      C:\WINDOWS\system32\USERENV.dll
    0x76FC0000 - 0x76FC6000      C:\WINDOWS\system32\rasadhlp.dll
    0x76F20000 - 0x76F47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76FB0000 - 0x76FB8000      C:\WINDOWS\System32\winrnr.dll
    0x7D4A0000 - 0x7D783000      C:\WINDOWS\system32\mshtml.dll
    0x746C0000 - 0x746E7000      C:\WINDOWS\system32\msls31.dll
    0x746F0000 - 0x7471A000      C:\WINDOWS\system32\msimtf.dll
    0x74720000 - 0x7476B000      C:\WINDOWS\system32\MSCTF.dll
    0x76390000 - 0x763AD000      C:\WINDOWS\system32\IMM32.DLL
    0x75C50000 - 0x75CBE000      C:\WINDOWS\system32\jscript.dll
    0x66E50000 - 0x66E8F000      C:\WINDOWS\system32\iepeers.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x73300000 - 0x73367000      C:\WINDOWS\system32\vbscript.dll
    0x73DD0000 - 0x73ECE000      C:\WINDOWS\system32\MFC42.DLL
    0x029C0000 - 0x02B67000      C:\WINDOWS\system32\macromed\flash\Flash.ocx
    0x763B0000 - 0x763F9000      C:\WINDOWS\system32\comdlg32.dll
    0x72D20000 - 0x72D29000      C:\WINDOWS\system32\wdmaud.drv
    0x72D10000 - 0x72D18000      C:\WINDOWS\system32\msacm32.drv
    0x77BE0000 - 0x77BF5000      C:\WINDOWS\system32\MSACM32.dll
    0x77BD0000 - 0x77BD7000      C:\WINDOWS\system32\midimap.dll
    0x6BDD0000 - 0x6BE05000      C:\WINDOWS\system32\dxtrans.dll
    0x76B20000 - 0x76B31000      C:\WINDOWS\system32\ATL.DLL
    0x6D430000 - 0x6D43A000      C:\WINDOWS\system32\ddrawex.dll
    0x73760000 - 0x737A9000      C:\WINDOWS\system32\DDRAW.dll
    0x73BC0000 - 0x73BC6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6BE10000 - 0x6BE6A000      C:\WINDOWS\system32\dxtmsft.dll
    0x76200000 - 0x76271000      C:\WINDOWS\system32\mshtmled.dll
    0x767F0000 - 0x76817000      C:\WINDOWS\system32\schannel.dll
    0x0FFD0000 - 0x0FFF8000      C:\WINDOWS\system32\rsaenh.dll
    0x68100000 - 0x68124000      C:\WINDOWS\system32\dssenh.dll
    0x71D40000 - 0x71D5C000      C:\WINDOWS\system32\actxprxy.dll
    0x5E0C0000 - 0x5E0CD000      C:\WINDOWS\system32\pstorec.dll
    0x6D460000 - 0x6D470000      C:\Program Files\Java\j2re1.4.2_06\bin\npjpi142_06.dll
    0x6D330000 - 0x6D348000      C:\Program Files\Java\j2re1.4.2_06\bin\jpiexp32.dll
    0x6D3A0000 - 0x6D3B8000      C:\Program Files\Java\j2re1.4.2_06\bin\jpishare.dll
    0x08000000 - 0x08139000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\client\jvm.dll
    0x01CD0000 - 0x01CD7000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\hpi.dll
    0x01CF0000 - 0x01CFE000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\verify.dll
    0x01D00000 - 0x01D19000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\java.dll
    0x023F0000 - 0x023FD000      C:\PROGRA~1\Java\J2RE14~1.2_0\bin\zip.dll
    0x05D30000 - 0x05E42000      C:\Program Files\Java\j2re1.4.2_06\bin\awt.dll
    0x05E50000 - 0x05EA1000      C:\Program Files\Java\j2re1.4.2_06\bin\fontmanager.dll
    0x73940000 - 0x73A10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6D310000 - 0x6D324000      C:\Program Files\Java\j2re1.4.2_06\bin\jpicom32.dll
    0x6D480000 - 0x6D49D000      C:\Program Files\Java\j2re1.4.2_06\bin\RegUtils.dll
    0x062D0000 - 0x062DF000      C:\Program Files\Java\j2re1.4.2_06\bin\net.dll
    0x062E0000 - 0x06302000      C:\Program Files\Java\j2re1.4.2_06\bin\dcpr.dll
    0x5FF20000 - 0x5FF46000      C:\WINDOWS\system32\MSRATING.dll
    0x5FF50000 - 0x5FF61000      C:\WINDOWS\system32\msratelc.dll
    0x75E60000 - 0x75E73000      C:\WINDOWS\system32\cryptnet.dll
    0x4D4F0000 - 0x4D548000      C:\WINDOWS\system32\WINHTTP.dll
    0x07880000 - 0x078A4000      C:\Program Files\Java\j2re1.4.2_06\bin\jsound.dll
    0x07CB0000 - 0x07CCE000      C:\Program Files\Java\j2re1.4.2_06\bin\jpeg.dll
    0x59A60000 - 0x59B01000      C:\WINDOWS\system32\DBGHELP.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\system32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 4096K, used 860K [0x10010000, 0x10480000, 0x10770000)
    eden space 3648K, 13% used [0x10010000, 0x10089160, 0x103a0000)
    from space 448K, 83% used [0x103a0000, 0x103fdf10, 0x10410000)
    to space 448K, 0% used [0x10410000, 0x10410000, 0x10480000)
    tenured generation total 53748K, used 42262K [0x10770000, 0x13bed000, 0x16010000)
    the space 53748K, 78% used [0x10770000, 0x130b5a48, 0x130b5c00, 0x13bed000)
    compacting perm gen total 11264K, used 11147K [0x16010000, 0x16b10000, 0x1a010000)
    the space 11264K, 98% used [0x16010000, 0x16af2f38, 0x16af3000, 0x16b10000)
    Local Time = Wed Feb 02 20:28:08 2005
    Elapsed Time = 918
    # HotSpot Virtual Machine Error : EXCEPTION_ILLEGAL_INSTRUCTION
    # 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_06-b03 mixed mode)
    heres another:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d7055ba, pid=4008, tid=1456
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_01-b08 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0xc55ba]
    --------------- T H R E A D ---------------
    Current thread (0x02949c20): VMThread [id=1456]
    siginfo: ExceptionCode=0xc0000005, reading address 0xe101ea68
    Registers:
    EAX=0xe101ea68, EBX=0x0575a138, ECX=0x029e220c, EDX=0x6d763f3c
    ESP=0x0514fc04, EBP=0x0514fc1c, ESI=0x029e2204, EDI=0x02936ce0
    EIP=0x6d7055ba, EFLAGS=0x00010282
    Top of Stack: (sp=0x0514fc04)
    0x0514fc04: 6d6b2903 029e220c 02939fd0 6d7a6ba0
    0x0514fc14: 02939fd0 00002ac7 0514fc40 6d6acbb7
    0x0514fc24: 6d7a6ba0 02939fd0 6d7a6ba0 00000001
    0x0514fc34: 6d6ade1f 00000001 00000000 0514fc98
    0x0514fc44: 6d6ade2c 6d7a6ba0 6d7a6b80 00000001
    0x0514fc54: 02939fd0 00000000 00000000 00000001
    0x0514fc64: 00000001 00000000 00000000 00000000
    0x0514fc74: 00000000 000047c0 00000000 02930228
    Instructions: (pc=0x6d7055ba)
    0x6d7055aa: 00 e9 9b fd ff ff 8b 4c 24 04 8b 01 85 c0 74 09
    0x6d7055ba: 8b 00 83 e0 fc 74 02 89 01 c2 04 00 8b 4c 24 04
    Stack: [0x05050000,0x05150000), sp=0x0514fc04, free space=1023k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0xc55ba]
    V [jvm.dll+0x6cbb7]
    V [jvm.dll+0x6de2c]
    V [jvm.dll+0x6da0d]
    V [jvm.dll+0x70fd9]
    V [jvm.dll+0xfd71a]
    V [jvm.dll+0x6c816]
    V [jvm.dll+0x50460]
    V [jvm.dll+0x6c993]
    V [jvm.dll+0x117db0]
    V [jvm.dll+0x117887]
    V [jvm.dll+0x117a27]
    V [jvm.dll+0x1177bc]
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    VM_Operation (0x08f5fa3c): generation collection for allocation, mode: safepoint, requested by thread 0x085601c8
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x085601c8 JavaThread "Thread-6" [_thread_blocked, id=888]
    0x08560048 JavaThread "OldCommBridge[lobby]" [_thread_blocked, id=3244]
    0x058626a8 JavaThread "Thread-5" [_thread_blocked, id=3556]
    0x0868e1a8 JavaThread "AWT-EventQueue-2" [_thread_blocked, id=1764]
    0x057f8f60 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=3988]
    0x0871b458 JavaThread "Thread-3" [_thread_blocked, id=1924]
    0x08665980 JavaThread "thread applet-Poker4Applet" [_thread_blocked, id=2292]
    0x05857fe8 JavaThread "TimerQueue" daemon [_thread_blocked, id=468]
    0x05840760 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3068]
    0x0583e7f0 JavaThread "ConsoleWriterThread" daemon [_thread_blocked, id=3120]
    0x057cb3c8 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=3352]
    0x057b5cb0 JavaThread "traceMsgQueueThread" [_thread_blocked, id=2700]
    0x057aeec8 JavaThread "AWT-Windows" daemon [_thread_in_native, id=696]
    0x057aeae0 JavaThread "AWT-Shutdown" [_thread_blocked, id=3500]
    0x057a93d0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3204]
    0x02a06a08 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=924]
    0x02a05638 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2796]
    0x02a049c0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=832]
    0x029fbe90 JavaThread "Finalizer" daemon [_thread_blocked, id=3772]
    0x029faa00 JavaThread "Reference Handler" daemon [_thread_blocked, id=1252]
    0x0294a848 JavaThread "main" [_thread_in_native, id=3440]
    Other Threads:
    =>0x02949c20 VMThread [id=1456]
    0x02a07be0 WatcherThread [id=1080]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x0294a3a0/0x00000930] Threads_lock - owner thread: 0x02949c20
    [0x0294a520/0x0000096c] Heap_lock - owner thread: 0x085601c8
    Heap
    def new generation total 576K, used 64K [0x10010000, 0x100b0000, 0x10770000)
    eden space 512K, 0% used [0x10010000, 0x10010000, 0x10090000)
    from space 64K, 100% used [0x10090000, 0x100a0000, 0x100a0000)
    to space 64K, 0% used [0x100a0000, 0x100a0000, 0x100b0000)
    tenured generation total 6228K, used 3805K [0x10770000, 0x10d85000, 0x16010000)
    the space 6228K, 61% used [0x10770000, 0x10b27578, 0x10b34400, 0x10d85000)
    compacting perm gen total 10240K, used 10179K [0x16010000, 0x16a10000, 0x1a010000)
    the space 10240K, 99% used [0x16010000, 0x16a00f30, 0x16a01000, 0x16a10000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\IEXPLORE.EXE
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000      C:\WINDOWS\system32\GDI32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77760000 - 0x778cc000      C:\WINDOWS\system32\SHDOCVW.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x7c9c0000 - 0x7d1d4000      C:\WINDOWS\system32\SHELL32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\comctl32.dll
    0x75f80000 - 0x7607c000      C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20012000      C:\WINDOWS\system32\browselc.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x00a20000 - 0x00aa8000      C:\WINDOWS\system32\shdoclc.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\UxTheme.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77260000 - 0x772fe000      C:\WINDOWS\system32\urlmon.dll
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x10000000 - 0x1000b000      C:\Program Files\Adobe\Acrobat 6.0\Reader\ActiveX\AcroIEHelper.dll
    0x00e90000 - 0x00f4b000      C:\Program Files\Spybot - Search & Destroy\SDHelper.dll
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\olepro32.dll
    0x01050000 - 0x01315000      C:\WINDOWS\system32\xpsp2res.dll
    0x01320000 - 0x0137a000      C:\PROGRA~1\iolo\SYSTEM~1\URLSTO~1.DLL
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\wsock32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x014c0000 - 0x014e2000      C:\Program Files\Panda Software\Panda Antivirus Platinum\enganche.dll
    0x77c70000 - 0x77c93000      C:\WINDOWS\system32\msv1_0.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x7d1e0000 - 0x7d492000      C:\WINDOWS\system32\msi.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x06340000 - 0x06355000      C:\Program Files\Panda Software\Panda Antivirus Platinum\Firewall\SSSensor.dll
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x767f0000 - 0x76817000      C:\WINDOWS\system32\schannel.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x68100000 - 0x68124000      C:\WINDOWS\system32\dssenh.dll
    0x7d4a0000 - 0x7d783000      C:\WINDOWS\system32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\system32\msls31.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\system32\msimtf.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x75c50000 - 0x75cbe000      C:\WINDOWS\system32\jscript.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x66e50000 - 0x66e8f000      C:\WINDOWS\system32\iepeers.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x73300000 - 0x73367000      C:\WINDOWS\system32\vbscript.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x02f00000 - 0x030a7000      C:\WINDOWS\system32\macromed\flash\Flash.ocx
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x6bdd0000 - 0x6be05000      C:\WINDOWS\system32\dxtrans.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x6d430000 - 0x6d43a000      C:\WINDOWS\system32\ddrawex.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\DDRAW.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6be10000 - 0x6be6a000      C:\WINDOWS\system32\dxtmsft.dll
    0x75e60000 - 0x75e73000      C:\WINDOWS\system32\cryptnet.dll
    0x4d4f0000 - 0x4d548000      C:\WINDOWS\system32\WINHTTP.dll
    0x76200000 - 0x76271000      C:\WINDOWS\system32\mshtmled.dll
    0x71d40000 - 0x71d5c000      C:\WINDOWS\system32\actxprxy.dll
    0x6d590000 - 0x6d5a1000      C:\Program Files\Java\jre1.5.0_01\bin\npjpi150_01.dll
    0x6d400000 - 0x6d417000      C:\Program Files\Java\jre1.5.0_01\bin\jpiexp32.dll
    0x6d450000 - 0x6d468000      C:\Program Files\Java\jre1.5.0_01\bin\jpishare.dll
    0x6d640000 - 0x6d7c5000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\client\jvm.dll
    0x6d280000 - 0x6d288000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d610000 - 0x6d61c000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\PROGRA~1\Java\JRE15~1.0_0\bin\zip.dll
    0x6d000000 - 0x6d166000      C:\Program Files\Java\jre1.5.0_01\bin\awt.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d240000 - 0x6d27d000      C:\Program Files\Java\jre1.5.0_01\bin\fontmanager.dll
    0x6d1f0000 - 0x6d203000      C:\Program Files\Java\jre1.5.0_01\bin\deploy.dll
    0x6d5d0000 - 0x6d5ed000      C:\Program Files\Java\jre1.5.0_01\bin\RegUtils.dll
    0x6d3e0000 - 0x6d3f4000      C:\Program Files\Java\jre1.5.0_01\bin\jpicom32.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jre1.5.0_01\bin\net.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jre1.5.0_01\bin\nio.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_01 -Djavaplugin.nodotversion=150_01 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~1.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~1.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~1.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_01 -Djavaplugin.nodotversion=150_01 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~1.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE15~1.0_0\bin;C:\Program Files\Internet Explorer;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Panda Software\Panda Antivirus Platinum\;C:\Program Files\Support Tools\;.
    USERNAME=Mark
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 12 Stepping 0, AuthenticAMD
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047280k(464504k free), swap 2518976k(2127492k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_01-b08) for windows-x86, built on Dec 6 2004 19:51:00 by "java_re" with MS VC++ 6.0
    I am at my wits end trying to correct this problem. Any help would be appreciated. Thanks

  • Java Control Panel quit unexpectedly while using the libjvm.dylib plug-in.

    OS X Server1 0.8.4, Mac Mini (5,1), Java 7u25 (jre-7u25-macosx-x64.dmg).
    Tried removing and re-installing Java 7u25 directly from Oracle's site.  Also did a fix disk permissions, rebuilt caches, deleted java caches,  etc...  I can't simply get the Java control panel to launch.
    I have the same version running on my MacBook Air (OS X 10.8.4 w/ Java 7u25) with no issues.  Obviously something is differnet and I see a lot of complaints of various versions of Java 7 and OS X on different searches, yet no solutions.  I also tried re-installing the JavaForOSX2013-004.dmg patch, even though this shouldn't affect access to the control panel, but could block a plugin from running in the browser (which ultimately is what I'm trying to solve).
    I can't revert back to Apple's Java 6, as the Java application I'm trying to run requires Java 7.  Details of the latest crash:
    Process:         java [739]
    Path:            /usr/bin/java
    Identifier:      net.java.openjdk.cmd
    Version:         1.0 (1.0)
    Code Type:       X86-64 (Native)
    Parent Process:  bash [734]
    User ID:         501
    PlugIn Path:       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/server/libjvm.dylib
    PlugIn Identifier: libjvm.dylib
    PlugIn Version:    ??? (1)
    Date/Time:       2013-06-28 13:49:06.800 -0400
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          4229 sec
    Crashes Since Last Report:           -13
    Per-App Interval Since Last Report:  29 sec
    Per-App Crashes Since Last Report:   -13
    Anonymous UUID:                      989AE788-972D-C73F-D998-78290667FBE3
    Crashed Thread:  22  Java: Java2D Queue Flusher
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000003b0
    VM Regions Near 0x3b0:
    -->
        __TEXT                 000000010cf87000-000000010cf98000 [   68K] r-x/rwx SM=COW  /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java
    Application Specific Information:
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff9134a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff91349c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8f004233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8f009916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8f0090e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x00007fff8a201eb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x00007fff8a201c52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x00007fff8a201ae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff8c18e533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x00007fff8c18ddf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  libosxapp.dylib                         0x0000000166e70b56 -[NSApplicationAWT nextEventMatchingMask:untilDate:inMode:dequeue:] + 124
    11  com.apple.AppKit                        0x00007fff8c1851a3 -[NSApplication run] + 517
    12  libosxapp.dylib                         0x0000000166e709b9 +[NSApplicationAWT runAWTLoopWithApp:] + 156
    13  liblwawt.dylib                          0x0000000166dca13e -[AWTStarter starter:] + 1591
    14  com.apple.Foundation                    0x00007fff8e31c5ca __NSThreadPerformPerform + 225
    15  com.apple.CoreFoundation                0x00007fff8efe6b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    16  com.apple.CoreFoundation                0x00007fff8efe6455 __CFRunLoopDoSources0 + 245
    17  com.apple.CoreFoundation                0x00007fff8f0097f5 __CFRunLoopRun + 789
    18  com.apple.CoreFoundation                0x00007fff8f0090e2 CFRunLoopRunSpecific + 290
    19  java                                    0x000000010cf8e42d CreateExecutionEnvironment + 871
    20  java                                    0x000000010cf88bdc JLI_Launch + 1952
    21  java                                    0x000000010cf8e78a main + 101
    22  java                                    0x000000010cf88434 start + 52
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff9134c386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff862a1cbd pthread_join + 847
    2   java                                    0x000000010cf8da2d ContinueInNewThread0 + 102
    3   java                                    0x000000010cf89847 ContinueInNewThread + 201
    4   java                                    0x000000010cf8d790 JVMInit + 251
    5   java                                    0x000000010cf895c5 JLI_Launch + 4489
    6   java                                    0x000000010cf8e78a main + 101
    7   java                                    0x000000010cf8e0bf apple_main + 92
    8   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d465109 ObjectMonitor::wait(long long, bool, Thread*) + 627
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6158 0 + 4526399832
    9   ???                                     0x000000010dcb6158 0 + 4526399832
    10  ???                                     0x000000010dcb6158 0 + 4526399832
    11  ???                                     0x000000010dcb6158 0 + 4526399832
    12  ???                                     0x000000010dcb6333 0 + 4526400307
    13  ???                                     0x000000010dcb6158 0 + 4526399832
    14  ???                                     0x000000010dcb6158 0 + 4526399832
    15  ???                                     0x000000010dcb04f7 0 + 4526376183
    16  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    17  libjvm.dylib                            0x000000010d33f390 JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*) + 40
    18  libjvm.dylib                            0x000000010d4aec06 Reflection::invoke(instanceKlassHandle, methodHandle, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, Thread*) + 2514
    19  libjvm.dylib                            0x000000010d4aeed9 Reflection::invoke_constructor(oopDesc*, objArrayHandle, Thread*) + 417
    20  libjvm.dylib                            0x000000010d373b0e JVM_NewInstanceFromConstructor + 124
    21  ???                                     0x000000010dcc1f90 0 + 4526448528
    22  ???                                     0x000000010dcb6333 0 + 4526400307
    23  ???                                     0x000000010dcb6333 0 + 4526400307
    24  ???                                     0x000000010dcb69e1 0 + 4526402017
    25  ???                                     0x000000010dcb6333 0 + 4526400307
    26  ???                                     0x000000010dcb6333 0 + 4526400307
    27  ???                                     0x000000010dcb6333 0 + 4526400307
    28  ???                                     0x000000010dcb6333 0 + 4526400307
    29  ???                                     0x000000010dcb6333 0 + 4526400307
    30  ???                                     0x000000010dcb6158 0 + 4526399832
    31  ???                                     0x000000010dcb6158 0 + 4526399832
    32  ???                                     0x000000010dcb6158 0 + 4526399832
    33  ???                                     0x000000010dcb6158 0 + 4526399832
    34  ???                                     0x000000010dcb6158 0 + 4526399832
    35  ???                                     0x000000010dcb6158 0 + 4526399832
    36  ???                                     0x000000010dcb04f7 0 + 4526376183
    37  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    38  libjvm.dylib                            0x000000010d33f390 JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*) + 40
    39  libjvm.dylib                            0x000000010d35ae70 jni_invoke_static(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, Thread*) + 219
    40  libjvm.dylib                            0x000000010d3541c8 jni_CallStaticVoidMethod + 267
    41  java                                    0x000000010cf8a17e JavaMain + 2333
    42  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    43  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d2d921a GCTaskManager::get_task(unsigned int) + 56
    7   libjvm.dylib                            0x000000010d2da052 GCTaskThread::run() + 338
    8   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    9   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    4   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    5   libjvm.dylib                            0x000000010d562b00 VMThread::loop() + 444
    6   libjvm.dylib                            0x000000010d56261b VMThread::run() + 121
    7   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    8   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 8:: Java: Reference Handler
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d465109 ObjectMonitor::wait(long long, bool, Thread*) + 627
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6158 0 + 4526399832
    9   ???                                     0x000000010dcb04f7 0 + 4526376183
    10  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    11  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    12  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    13  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    14  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    15  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    16  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    17  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 9:: Java: Finalizer
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d465109 ObjectMonitor::wait(long long, bool, Thread*) + 627
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6333 0 + 4526400307
    9   ???                                     0x000000010dcb6333 0 + 4526400307
    10  ???                                     0x000000010dcb04f7 0 + 4526376183
    11  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    12  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    13  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    14  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    15  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    16  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    17  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    18  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    19  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 11:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff9134cd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff9181cdea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff9181c9ee _dispatch_mgr_thread + 54
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 13:: Java: Signal Dispatcher
    0   libsystem_kernel.dylib                  0x00007fff9134a6c2 semaphore_wait_trap + 10
    1   libjvm.dylib                            0x000000010d46ce57 check_pending_signals(bool) + 128
    2   libjvm.dylib                            0x000000010d469994 signal_thread_entry(JavaThread*, Thread*) + 57
    3   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    4   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    5   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    6   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 14:: Java: C2 CompilerThread0
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e5c6 Monitor::wait(bool, long, bool) + 222
    6   libjvm.dylib                            0x000000010d23d281 CompileQueue::get() + 153
    7   libjvm.dylib                            0x000000010d23dda2 CompileBroker::compiler_thread_loop() + 410
    8   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    9   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    10  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    11  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    12  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 15:: Java: C2 CompilerThread1
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e5c6 Monitor::wait(bool, long, bool) + 222
    6   libjvm.dylib                            0x000000010d23d281 CompileQueue::get() + 153
    7   libjvm.dylib                            0x000000010d23dda2 CompileBroker::compiler_thread_loop() + 410
    8   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    9   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    10  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    11  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    12  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 16:: Java: Service Thread
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46a98b os::PlatformEvent::park() + 173
    3   libjvm.dylib                            0x000000010d44dc10 ParkCommon(ParkEvent*, long long) + 42
    4   libjvm.dylib                            0x000000010d44e402 Monitor::IWait(Thread*, long long) + 160
    5   libjvm.dylib                            0x000000010d44e65f Monitor::wait(bool, long, bool) + 375
    6   libjvm.dylib                            0x000000010d4bd249 ServiceThread::service_thread_entry(JavaThread*, Thread*) + 109
    7   libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    8   libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    9   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    10  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    11  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d532d06 WatcherThread::run() + 328
    4   libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    5   libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff9134c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86219f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86219d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff862041d1 start_wqthread + 13
    Thread 21:: Java: traceMsgQueueThread
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d465113 ObjectMonitor::wait(long long, bool, Thread*) + 637
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6806 0 + 4526401542
    9   ???                                     0x000000010dcb04f7 0 + 4526376183
    10  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    11  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    12  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    13  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    14  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    15  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    16  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    17  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 22 Crashed:: Java: Java2D Queue Flusher
    0   libsystem_kernel.dylib                  0x00007fff9134c212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff86218b54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8625cdce abort + 143
    3   libjvm.dylib                            0x000000010d46e0d7 os::abort(bool) + 25
    4   libjvm.dylib                            0x000000010d55d020 VMError::report_and_die() + 2306
    5   libjvm.dylib                            0x000000010d46f7cb JVM_handle_bsd_signal + 1073
    6   libsystem_c.dylib                       0x00007fff8620594a _sigtramp + 26
    7   libGL.dylib                             0x00007fff911f78b5 glGetString + 15
    8   liblwawt.dylib                          0x0000000166dc069f Java_sun_java2d_opengl_OGLContext_getOGLIdString + 35
    9   ???                                     0x000000010dcc1f90 0 + 4526448528
    10  ???                                     0x000000010dcb6333 0 + 4526400307
    11  ???                                     0x000000010dcb6806 0 + 4526401542
    12  ???                                     0x000000010dcb04f7 0 + 4526376183
    13  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    14  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    15  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    16  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    17  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    18  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    19  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    20  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    21  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 23:: Java: AWT-Shutdown
    0   libsystem_kernel.dylib                  0x00007fff9134c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8621bfe9 _pthread_cond_wait + 869
    2   libjvm.dylib                            0x000000010d46baf7 os::PlatformEvent::park(long long) + 385
    3   libjvm.dylib                            0x000000010d465113 ObjectMonitor::wait(long long, bool, Thread*) + 637
    4   libjvm.dylib                            0x000000010d502407 ObjectSynchronizer::wait(Handle, long long, Thread*) + 203
    5   libjvm.dylib                            0x000000010d37b723 JVM_MonitorWait + 156
    6   ???                                     0x000000010dcc1f90 0 + 4526448528
    7   ???                                     0x000000010dcb6158 0 + 4526399832
    8   ???                                     0x000000010dcb6806 0 + 4526401542
    9   ???                                     0x000000010dcb04f7 0 + 4526376183
    10  libjvm.dylib                            0x000000010d33f5c3 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) + 557
    11  libjvm.dylib                            0x000000010d33faa2 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) + 258
    12  libjvm.dylib                            0x000000010d33fbdc JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) + 74
    13  libjvm.dylib                            0x000000010d376868 thread_entry(JavaThread*, Thread*) + 173
    14  libjvm.dylib                            0x000000010d531bd8 JavaThread::thread_main_inner() + 134
    15  libjvm.dylib                            0x000000010d5330ca JavaThread::run() + 440
    16  libjvm.dylib                            0x000000010d46e5f9 java_start(Thread*) + 173
    17  libsystem_c.dylib                       0x00007fff862177a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff862041e1 thread_start + 13
    Thread 22 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000166f920a8  rdx: 0x0000000000000000
      rdi: 0x0000000000009207  rsi: 0x0000000000000006  rbp: 0x0000000166f920d0  rsp: 0x0000000166f920a8
       r8: 0x00007fff74b56278   r9: 0x0000000166f92080  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x000000010d8011f0  r13: 0x000000011118eca8  r14: 0x0000000166f93000  r15: 0x000000010d4716bc
      rip: 0x00007fff9134c212  rfl: 0x0000000000000206  cr2: 0x00007fff74b4fff0
    Logical CPU: 0
    Binary Images:
           0x10cf87000 -        0x10cf97fff +java (1.0 - 1.0) <147BD4EA-EA9C-301B-8C8A-D9F271391735> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java
           0x10d0b5000 -        0x10d740fef +libjvm.dylib (1) <1B03A29F-0248-337E-8529-87706B48A7DE> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/server/libjvm.dylib
           0x10dc61000 -        0x10dc69fff +libverify.dylib (1) <C42EBBF2-FDE6-342B-9B75-7D91194E47C1> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libverify.dylib
           0x10dc6e000 -        0x10dc8ffef +libjava.dylib (1) <CEC400ED-E3D2-343D-8E19-587A4FF75CC2> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libjava.dylib
           0x10dca7000 -        0x10dcacfff +libzip.dylib (1) <89DD8E8C-F4A4-3E92-A2D6-CC8642447AC3> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libzip.dylib
           0x166560000 -        0x166569ff7  com.apple.java.JavaRuntimeSupport (14.8.0 - 14.8.0) <A08E8799-F5FF-3CBB-A753-FC2AF260ABEB> /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.frame work/JavaRuntimeSupport
           0x166578000 -        0x166582fff  JavaNativeFoundation (1) <F1FE02AF-1A2C-3EF7-9D1A-312FA21B51B9> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFou ndation.framework/Versions/A/JavaNativeFoundation
           0x16658d000 -        0x166592fff  com.apple.JavaVM (14.8.0 - 14.8.0) <83C8C2AB-E99D-39FF-80B4-90A7DEB1DAFB> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
           0x16659a000 -        0x16659ffff  JavaLaunching (1) <E89BD701-1C4E-3A44-8C32-6F81D2B53D13> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
           0x166c40000 -        0x166cacff7 +libawt.dylib (1) <614FC193-CE14-3B85-9F8B-33F92FBD6D92> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libawt.dylib
           0x166cf0000 -        0x166db5fff +libmlib_image.dylib (1) <95F6D0B2-3A92-305F-A6AE-822BC990901B> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libmlib_image.dylib
           0x166dbc000 -        0x166e2cff7 +liblwawt.dylib (1) <8004F9F2-4EDF-3FF4-8B40-12F06C5C97FA> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/lwawt/liblwawt.dylib
           0x166e6f000 -        0x166e75fff +libosxapp.dylib (1) <19D025A3-9368-319D-AA64-EF835D78A0FF> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libosxapp.dylib
           0x166e8b000 -        0x166e8dfff  com.apple.ExceptionHandling (1.5 - 10) <47FF83ED-0C07-308C-A375-2A2189DB1056> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
           0x1682f6000 -        0x168300fff +libjli.dylib (1) <9792ED7A-1BD0-3D84-B551-F5DA12537016> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jli/libjli.dylib
           0x168fe1000 -        0x168ff9ff7 +libdeploy.dylib (0) <7E7F2C41-877D-36FC-B982-DE5BB8F1685B> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libdeploy.dylib
           0x169007000 -        0x169010fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x16a8f0000 -        0x16a907fff +org.andymatuschak.Sparkle (1.5 Beta 6 - 313) <9253F8F7-250B-1114-7AE9-A10A54EB2298> /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Frameworks/Sparkle.framework/Versions /A/Sparkle
           0x16a920000 -        0x16a9f9ff7  libcrypto.0.9.7.dylib (106) <3E1B14DE-342B-318C-8F22-7B9CD88EE760> /usr/lib/libcrypto.0.9.7.dylib
           0x16ac56000 -        0x16ae14fff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x16ae4b000 -        0x16afbbfff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x16aff3000 -        0x16b3b0ff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <41C027A9-3329-340E-995A-6B66C54B7DAD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x16b4e0000 -        0x16b4edfff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x16b4f4000 -        0x16b51ffff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff6cb87000 -     0x7fff6cbbb93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff84946000 -     0x7fff84947fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff849e8000 -     0x7fff84a2bff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff84a2c000 -     0x7fff84aaeff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff84aaf000 -     0x7fff84ad7fff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff84ad8000 -     0x7fff84adafff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84b04000 -     0x7fff84c56fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff850e0000 -     0x7fff8517bfff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8521c000 -     0x7fff854c0ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff859d7000 -     0x7fff85a33ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff85a34000 -     0x7fff85a35ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff85a40000 -     0x7fff85a43ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff85a44000 -     0x7fff85a46fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff85a47000 -     0x7fff85a55ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff86203000 -     0x7fff862cfff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff862d0000 -     0x7fff862d4ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff862e4000 -     0x7fff8633efff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8633f000 -     0x7fff86340ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff86341000 -     0x7fff8636fff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff86370000 -     0x7fff8640afff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8640b000 -     0x7fff8641ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86420000 -     0x7fff86451ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff864dd000 -     0x7fff86517ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff86578000 -     0x7fff865cefff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff865db000 -     0x7fff86648ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86649000 -     0x7fff8664bff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8664c000 -     0x7fff86765fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff86790000 -     0x7fff8682eff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8685f000 -     0x7fff8695cff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff86a7f000 -     0x7fff8740f4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff87410000 -     0x7fff874d5ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8797b000 -     0x7fff8799aff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff879d8000 -     0x7fff879ffff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff87bcd000 -     0x7fff87ccffff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff87cd0000 -     0x7fff87cd4fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87cd5000 -     0x7fff87d01ff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff87de8000 -     0x7fff881dffff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff881e0000 -     0x7fff881eeff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff881ef000 -     0x7fff88210fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff88211000 -     0x7fff88251ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff885f2000 -     0x7fff887f2fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff887f4000 -     0x7fff888c6ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88b23000 -     0x7fff88b8cfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff88b91000 -     0x7fff88bbcfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff88bcb000 -     0x7fff88c17ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff88c18000 -     0x7fff88c39ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff88c3a000 -     0x7fff88c42ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88c47000 -     0x7fff88c54fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff88c84000 -     0x7fff88cb2fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff88cb3000 -     0x7fff88cb6fff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff88cb7000 -     0x7fff88cb7fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88cb8000 -     0x7fff88cc6fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff88d35000 -     0x7fff88d35fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff88e61000 -     0x7fff88e68fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff88e6b000 -     0x7fff88e82fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff88e83000 -     0x7fff89031fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89092000 -     0x7fff8909afff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8909b000 -     0x7fff890f5ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff890f6000 -     0x7fff890f8fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff890f9000 -     0x7fff89138ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89139000 -     0x7fff89147fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff89153000 -     0x7fff89158fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff891b6000 -     0x7fff891b7fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff891b8000 -     0x7fff89220fff  l

    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Troubleshooting Permission Issues
    Step by Step to Fix Your Mac

  • Access Violation when using java in windows terminal session

    Hi,
    we have 2 ms Windows Terminal Servers with Windows 2k3 Enterprise x64 (Intel). I installed Sun JRE version 6 update 5 for windows 64 bit. Everything is working properly when i am using the terminal server as priviledged user (i.e. domain administrator). But as restricted user the browser crashes instantly if I am trying to view a java applet in any browser. Java creates an error log on my desktop which I feel free to post here:
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7d8e6189, pid=9392, tid=5968
    # Java VM: Java HotSpot(TM) Client VM (10.0-b19 mixed mode, sharing windows-x86)
    # Problematic frame:
    # C [Secur32.dll+0x16189]
    # 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 (0x05d87400): JavaThread "main" [_thread_in_native, id=5968, stack(0x05b40000,0x05c40000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x00000000, EBX=0x05c38614, ECX=0x00000016, EDX=0x00000000
    ESP=0x05c383a8, EBP=0x05c38608, ESI=0x00000000, EDI=0x05c385a8
    EIP=0x7d8e6189, EFLAGS=0x00010246
    Top of Stack: (sp=0x05c383a8)
    0x05c383a8: 0055c5c6 00000000 00500028 00000002
    0x05c383b8: 000024b0 00000000 00001750 00000000
    0x05c383c8: 010e940e 00000000 00000000 00000000
    0x05c383d8: 00000021 c0000022 00000001 00000000
    0x05c383e8: 00000000 00000000 116e4bc8 00000000
    0x05c383f8: 00000000 00000000 00000000 00000000
    0x05c38408: 00000000 00000000 00000000 00000000
    0x05c38418: 00000000 00000000 00000000 00000000
    Instructions: (pc=0x7d8e6189)
    0x7d8e6179: 00 00 8b 85 f0 fd ff ff 6a 16 8b f0 59 8d 7d a0
    0x7d8e6189: f3 a5 8b 4d a4 89 48 04 8b 4d a8 89 48 08 66 8b
    Stack: [0x05b40000,0x05c40000], sp=0x05c383a8, free space=992k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [Secur32.dll+0x16189]
    C [Secur32.dll+0x19c78]
    C [deploy.dll+0x29e3]
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::StubRoutines (1)
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::StubRoutines (1)
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::Interpreter
    v ~BufferBlob::StubRoutines (1)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x09883400 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=1452, stack(0x09d30000,0x09e30000)]
    0x09870800 JavaThread "CacheCleanUpThread" daemon [_thread_blocked, id=1476, stack(0x09a70000,0x09b70000)]
    0x08956800 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=10004, stack(0x09730000,0x09830000)]
    0x08948800 JavaThread "AWT-Windows" daemon [_thread_in_native, id=7812, stack(0x095f0000,0x096f0000)]
    0x08946800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=408, stack(0x09370000,0x09470000)]
    0x0888e800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=876, stack(0x090e0000,0x091e0000)]
    0x08889c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=7148, stack(0x08fa0000,0x090a0000)]
    0x08888c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=3600, stack(0x08e60000,0x08f60000)]
    0x08887c00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4732, stack(0x08d20000,0x08e20000)]
    0x08880000 JavaThread "Finalizer" daemon [_thread_blocked, id=2552, stack(0x08be0000,0x08ce0000)]
    0x0887f000 JavaThread "Reference Handler" daemon [_thread_blocked, id=3356, stack(0x08aa0000,0x08ba0000)]
    =>0x05d87400 JavaThread "main" [_thread_in_native, id=5968, stack(0x05b40000,0x05c40000)]
    Other Threads:
    0x0887dc00 VMThread [stack: 0x08960000,0x08a60000] [id=1792]
    0x08891400 WatcherThread [stack: 0x09220000,0x09320000] [id=7192]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 960K, used 461K [0x23d70000, 0x23e70000, 0x24250000)
    eden space 896K, 44% used [0x23d70000, 0x23dd3698, 0x23e50000)
    from space 64K, 100% used [0x23e60000, 0x23e70000, 0x23e70000)
    to space 64K, 0% used [0x23e50000, 0x23e50000, 0x23e60000)
    tenured generation total 4096K, used 341K [0x24250000, 0x24650000, 0x27d70000)
    the space 4096K, 8% used [0x24250000, 0x242a5748, 0x242a5800, 0x24650000)
    compacting perm gen total 12288K, used 1165K [0x27d70000, 0x28970000, 0x2bd70000)
    the space 12288K, 9% used [0x27d70000, 0x27e936d0, 0x27e93800, 0x28970000)
    ro space 8192K, 62% used [0x2bd70000, 0x2c272a28, 0x2c272c00, 0x2c570000)
    rw space 12288K, 52% used [0x2c570000, 0x2cbb86b8, 0x2cbb8800, 0x2d170000)
    Dynamic libraries:
    0x00400000 - 0x0049b000      C:\Program Files (x86)\Internet Explorer\iexplore.exe
    0x7d600000 - 0x7d6f0000      C:\WINDOWS\system32\ntdll.dll
    0x7d4c0000 - 0x7d5f0000      C:\WINDOWS\syswow64\kernel32.dll
    0x00550000 - 0x005eb000      C:\WINDOWS\syswow64\ADVAPI32.dll
    0x7da20000 - 0x7db00000      C:\WINDOWS\syswow64\RPCRT4.dll
    0x7d8d0000 - 0x7d920000      C:\WINDOWS\syswow64\Secur32.dll
    0x7d800000 - 0x7d890000      C:\WINDOWS\syswow64\GDI32.dll
    0x7d930000 - 0x7da00000      C:\WINDOWS\syswow64\USER32.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\syswow64\msvcrt.dll
    0x005f0000 - 0x00642000      C:\WINDOWS\syswow64\SHLWAPI.dll
    0x7c8d0000 - 0x7d0cf000      C:\WINDOWS\syswow64\SHELL32.dll
    0x77670000 - 0x777a9000      C:\WINDOWS\syswow64\ole32.dll
    0x46b90000 - 0x46cb7000      C:\WINDOWS\syswow64\urlmon.dll
    0x00650000 - 0x006db000      C:\WINDOWS\syswow64\OLEAUT32.dll
    0x46300000 - 0x46345000      C:\WINDOWS\syswow64\iertutil.dll
    0x77b90000 - 0x77b98000      C:\WINDOWS\syswow64\VERSION.dll
    0x7dee0000 - 0x7df40000      C:\WINDOWS\system32\IMM32.DLL
    0x7dbd0000 - 0x7dcd3000      C:\WINDOWS\WinSxS\WOW64_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_5FA17F4E\comctl32.dll
    0x46350000 - 0x4691d000      C:\WINDOWS\system32\IEFRAME.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x7df50000 - 0x7dfc0000      C:\WINDOWS\system32\UxTheme.dll
    0x4b3c0000 - 0x4b410000      C:\WINDOWS\SysWOW64\MSCTF.dll
    0x10000000 - 0x10011000      D:\programme\hardcopy\HcDLL2_19_Win32.dll
    0x02130000 - 0x023f5000      C:\WINDOWS\system32\xpsp2res.dll
    0x75e60000 - 0x75e87000      C:\WINDOWS\system32\apphelp.dll
    0x4dc30000 - 0x4dc5e000      C:\WINDOWS\system32\msctfime.ime
    0x02560000 - 0x0258f000      C:\WINDOWS\system32\IEUI.dll
    0x76280000 - 0x76285000      C:\WINDOWS\system32\MSIMG32.dll
    0x4dd60000 - 0x4df07000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.3790.3959_x-ww_8251BDDE\gdiplus.dll
    0x47150000 - 0x47171000      C:\WINDOWS\system32\xmllite.dll
    0x777b0000 - 0x77833000      C:\WINDOWS\system32\CLBCatQ.DLL
    0x77010000 - 0x770d6000      C:\WINDOWS\system32\COMRes.dll
    0x744c0000 - 0x744eb000      C:\WINDOWS\SysWOW64\msimtf.dll
    0x77b00000 - 0x77b54000      C:\WINDOWS\System32\cscui.dll
    0x76520000 - 0x7653d000      C:\WINDOWS\System32\CSCDLL.dll
    0x770e0000 - 0x771e8000      C:\WINDOWS\system32\SETUPAPI.dll
    0x325c0000 - 0x325d2000      D:\programme\OFFICE11\msohev.dll
    0x77980000 - 0x77af3000      C:\WINDOWS\SysWow64\shdocvw.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\syswow64\CRYPT32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\syswow64\MSASN1.dll
    0x75360000 - 0x753de000      C:\WINDOWS\syswow64\CRYPTUI.dll
    0x76bb0000 - 0x76bdb000      C:\WINDOWS\syswow64\WINTRUST.dll
    0x76c10000 - 0x76c38000      C:\WINDOWS\syswow64\imagehlp.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\syswow64\NETAPI32.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\syswow64\WLDAP32.dll
    0x032e0000 - 0x0332a000      C:\Program Files (x86)\Internet Explorer\ieproxy.dll
    0x75da0000 - 0x75e5d000      C:\WINDOWS\system32\SXS.DLL
    0x46a70000 - 0x46b3f000      C:\WINDOWS\syswow64\WININET.dll
    0x03690000 - 0x03699000      C:\WINDOWS\syswow64\Normaliz.dll
    0x74540000 - 0x745d3000      C:\WINDOWS\system32\MLANG.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\ws2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x75f30000 - 0x75fcd000      C:\Program Files (x86)\Internet Explorer\mui\0407\shdoclc.dll
    0x77530000 - 0x775c7000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll
    0x7db30000 - 0x7dbb0000      C:\WINDOWS\system32\mswsock.dll
    0x5f270000 - 0x5f2ca000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x76e90000 - 0x76ecf000      C:\WINDOWS\system32\RASAPI32.dll
    0x76e40000 - 0x76e52000      C:\WINDOWS\system32\rasman.dll
    0x76e60000 - 0x76e8f000      C:\WINDOWS\system32\TAPI32.dll
    0x76e30000 - 0x76e3c000      C:\WINDOWS\system32\rtutils.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x71bc0000 - 0x71bc8000      C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000      C:\WINDOWS\system32\WINSTA.dll
    0x76920000 - 0x769e2000      C:\WINDOWS\system32\USERENV.dll
    0x722f0000 - 0x722f5000      C:\WINDOWS\system32\sensapi.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x71d00000 - 0x71d1c000      C:\WINDOWS\SysWOW64\actxprxy.dll
    0x71e00000 - 0x71e14000      C:\WINDOWS\system32\msapsspc.dll
    0x78080000 - 0x78091000      C:\WINDOWS\system32\MSVCRT40.dll
    0x71e20000 - 0x71e70000      C:\WINDOWS\system32\msnsspc.dll
    0x76c90000 - 0x76cb7000      C:\WINDOWS\SysWOW64\msv1_0.DLL
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x46d00000 - 0x47073000      C:\WINDOWS\system32\mshtml.dll
    0x03e90000 - 0x03eb9000      C:\WINDOWS\system32\msls31.dll
    0x46990000 - 0x469f0000      C:\WINDOWS\system32\ieapfltr.dll
    0x03fe0000 - 0x04001000      C:\WINDOWS\system32\NTMARTA.DLL
    0x7e020000 - 0x7e02f000      C:\WINDOWS\system32\SAMLIB.dll
    0x63380000 - 0x633f8000      C:\WINDOWS\SysWOW64\jscript.dll
    0x04910000 - 0x04975000      C:\WINDOWS\SysWow64\Macromed\Flash\SWFlash.ocx
    0x762b0000 - 0x762f9000      C:\WINDOWS\syswow64\comdlg32.dll
    0x049d0000 - 0x04a02000      C:\WINDOWS\system32\iepeers.dll
    0x73070000 - 0x73097000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x1b000000 - 0x1b00c000      C:\WINDOWS\system32\ImgUtil.dll
    0x1b060000 - 0x1b06e000      C:\WINDOWS\system32\pngfilt.dll
    0x058b0000 - 0x058bc000      D:\programme\hardcopy\hardcopy.dll
    0x461f0000 - 0x46267000      C:\WINDOWS\system32\mshtmled.dll
    0x5def0000 - 0x5defe000      C:\WINDOWS\system32\pstorec.dll
    0x76a80000 - 0x76a92000      C:\WINDOWS\system32\ATL.DLL
    0x71f60000 - 0x71f64000      C:\WINDOWS\system32\security.dll
    0x68000000 - 0x68035000      C:\WINDOWS\system32\rsaenh.dll
    0x6d6b0000 - 0x6d6d1000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\npjpi160_05.dll
    0x7c340000 - 0x7c396000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\msvcr71.dll
    0x6d400000 - 0x6d41b000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\jpiexp.dll
    0x6d1b0000 - 0x6d1c1000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\deploy.dll
    0x71bb0000 - 0x71bb9000      C:\WINDOWS\system32\wsock32.dll
    0x6d450000 - 0x6d474000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\jpishare.dll
    0x6d7c0000 - 0x6da10000      C:\PROGRA~2\Java\JRE16~2.0_0\bin\client\jvm.dll
    0x6d270000 - 0x6d278000      C:\PROGRA~2\Java\JRE16~2.0_0\bin\hpi.dll
    0x6d770000 - 0x6d77c000      C:\PROGRA~2\Java\JRE16~2.0_0\bin\verify.dll
    0x6d310000 - 0x6d32f000      C:\PROGRA~2\Java\JRE16~2.0_0\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\PROGRA~2\Java\JRE16~2.0_0\bin\zip.dll
    0x6d000000 - 0x6d12e000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\awt.dll
    0x73860000 - 0x738ac000      C:\WINDOWS\system32\ddraw.dll
    0x73b30000 - 0x73b36000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6d210000 - 0x6d263000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\fontmanager.dll
    0x6d3e0000 - 0x6d3f8000      C:\Program Files (x86)\Java\jre1.6.0_05\bin\jpicom.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~2\Java\JRE16~2.0_0\lib\deploy.jar;C:\PROGRA~2\Java\JRE16~2.0_0\lib\plugin.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.6.0_05 -Djavaplugin.nodotversion=160_05 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Java\JRE16~2.0_0 -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~2\Java\JRE16~2.0_0\classes -Xbootclasspath/a:C:\PROGRA~2\Java\JRE16~2.0_0\lib\deploy.jar;C:\PROGRA~2\Java\JRE16~2.0_0\lib\plugin.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.6.0_05 -Djavaplugin.nodotversion=160_05 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Java\JRE16~2.0_0
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~2\Java\JRE16~2.0_0\bin;C:\Program Files\Internet Explorer;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;.
    USERNAME=testuser
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=EM64T Family 6 Model 15 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 8 (4 cores per cpu, 1 threads per core) family 6 model 15 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 4194303k(4194303k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b19) for windows-x86 JRE (1.6.0_05-b13), built on Feb 22 2008 01:16:53 by "java_re" with MS VC++ 7.1
    time: Fri Mar 07 08:16:00 2008
    elapsed time: 3 seconds
    Does anyone have a clue what is the cause of this error? For the first time I thought that there is a problem with the 64 bit environment, but if this would be the case the applets should not be working as administrator too. As non priviledged user the error occures on ANY java applet so I think there must be a general problem.
    Regards,
    Sebastian

    I decided that even if I found the update, another could easily break it. I instead downloaded and installed the Early Access JRE ( 1.6.0_10-ea ) located at https://jdk6.dev.java.net/6uNea.html. It resolved the problem, and all other applications have tested okay with it. I figured I am at risk either way, so I might as well move forward knowing it will become more stable, than step back and create security holes in the OS.

  • How can I use Java to do Seismic programming as Motif?

    One of my friend recently finished a seismic on-site data processing program using
    Motif on Solaries.He asked me if I can implement the same function to use Java language
    so that the program can run on different platforms such as Windows,Unix.
    Seismic data is usually enormous.And I don't have any experence in plotting seismic
    curves by using Java.
    Is there any seismic processing software programmed with Java available?
    I will appriciate any help.
    Thank you

    I think the point is not the word seismic than 'how to plot curves in Java.'.
    You can find many resources about plotting curves you want in Java2D.
    Refer to these URL:
    Java2D http://java.sun.com/products/java-media/2D/index.html
    Java2D Tutorial http://java.sun.com/docs/books/tutorial/2d/index.html

Maybe you are looking for

  • Issue on virtual servers on sun one web server

    Hi all, I configured sun webserver 6.1 sp8 on windows 2003 server I configured php,asp,jsp succesfully on different virtual servers. as www.abc.com:80 www.php.com:2222 www.asp.com:3333 www.jsp.com:4444 Now the issue is I want to run the applications

  • Lifelog is not registering as it should

    The last days, lifelogs registrates my cyclings as driving and also my walking. This isn't correct.What could be reason of bad registration? Thank you for your comment.With kind regards, Ilse

  • ITunes Not Working [at all..;need help!; very detailed.]

    Hello. My iTunes doesnt work at all. When I click on iTunes, it doesnt open or anything. I have uninstalled it and then re-installed it many times, it didnt work. Because of my iTunes not working, i had no choice but to put my songs on manually using

  • After ITunes opens an error pops up

    I downloaded the newest version of ITunes 7.0.1 and now right after it opens a window pops up saying that itunes encountered a problem and needs to close. Then when i hit dont send or send error report itunes shuts down

  • Fact design accumulative snapshot

    This is Loan domain and I am trying to create an accumulative snap shot table at loan level with following columns on 01-jan-2011 this snap shot would be like LOAN_KEY,LOAN_DATE,DEPOSIT_DATE,RETURN_DATE,CLEAR_DATE,WRITEOFF_DATE,LOAN_PAIDOFF_DATE, LOA