Bug in 2.5.13 Java XmlValue.getAttributes()

There seems to be some issue with properly deleting the XmlResults from XmlValue.getAttributes() using the Java api. Here is a sample function to illustrate the issue:
private static void runAQuery(XmlManager manager, String query) {
                System.out.println("Running query: "+query);
                XmlResults queryRes = null;
                try {
                        final XmlQueryContext qc =
                                manager.createQueryContext(XmlQueryContext.LiveValues, XmlQueryContext.Lazy);
                        queryRes = manager.query(query, qc);
                        XmlValue temp;
                        while(queryRes.hasNext()) {
                                temp = queryRes.next();
                                XmlResults attrRes = temp.getAttributes();
                                XmlValue t = attrRes.next();
                                System.out.println("Saw attr name: "+t.getNodeName());
                                attrRes.delete();
                } catch(XmlException e) {
                        e.printStackTrace();
                } finally {
                        if(queryRes != null) {
                                queryRes.delete();
        }Running this produces:
Running query: (collection('db.dbxml')/scenario)[1]
Saw attr name: name
com.sleepycat.dbxml.XmlException: null object - call after object destroyed?, errcode = INVALID_VALUE
     at com.sleepycat.dbxml.dbxml_javaJNI.XmlResults_hasNext(Native Method)
     at com.sleepycat.dbxml.XmlResults.hasNext(XmlResults.java:142)
     at test.runAQuery(test.java:41)
     at test.main(test.java:24)So it seemed maybe I should not delete the attribute results however if I comment out:
                                //attrRes.delete();and see what what happens, I get:
Running query: (collection('db.dbxml')/scenario)[1]
Saw attr name: name
Database handles still open at environment close
Open database handle: db.dbxml/structural_stats
Open database handle: db.dbxml/secondary_document_statistics_double
Open database handle: db.dbxml/secondary_document_index_double
Open database handle: db.dbxml/secondary_document_statistics_string
Open database handle: db.dbxml/secondary_document_index_string
Open database handle: db.dbxml/node_nodestorage
Open database handle: db.dbxml/secondary_document
Open database handle: db.dbxml/secondary_dictionary
Open database handle: db.dbxml/primary_dictionary
Open database handle: db.dbxml/secondary_sequence
Open database handle: db.dbxml/secondary_configuration
Exception in thread "main" java.lang.IllegalArgumentException: Invalid argument
     at com.sleepycat.db.internal.db_javaJNI.DbEnv_close0(Native Method)
     at com.sleepycat.db.internal.DbEnv.close0(DbEnv.java:268)
     at com.sleepycat.db.internal.DbEnv.close(DbEnv.java:79)
     at com.sleepycat.db.Environment.close(Environment.java:141)
     at com.sleepycat.dbxml.XmlManager.closeInternal(XmlManager.java:418)
     at com.sleepycat.dbxml.XmlManager.delete(XmlManager.java:35)
     at com.sleepycat.dbxml.XmlManager.close(XmlManager.java:427)
     at test.main(test.java:31)Thanks,
Pralit

I concur. I can also see such a bug in DB XML 2.5. :(( Probably closing of the attrRes object implicitly causes closing of the queryRes object (partially?). One hack solution would be to keep all atrrRes objects somewhere and close them together with queryRes objects.
Vyacheslav

Similar Messages

  • Trouble with XmlValue.getAttributes in 2.4.11

    When I try to use the results from a getAttributes from a query result I get an exception such as:
    com.sleepycat.dbxml.XmlException: The XmlValue does not have an XmlResult or XmlManager., errcode = INTERNAL_ERROR
            at com.sleepycat.dbxml.XmlValue$NodeValue.getResult(XmlValue.java:735)
            at com.sleepycat.dbxml.XmlValue$NodeValue.getNodeValue(XmlValue.java:908)
            at com.sleepycat.dbxml.XmlValue.getNodeValue(XmlValue.java:215)
            at test.main(test.java:37)I am using DB XML version 2.4.11 on Mac OSX 10.4.11 and Java 1.5.0_13.
    The following is a simplified example that reproduces the error.
    Thanks,
    Pralit
    public static void main(String[] args) throws Exception {
         final EnvironmentConfig envConfig = new EnvironmentConfig();
         envConfig.setAllowCreate(true);
         envConfig.setCacheSize(100 * 1024 * 1024 );
         envConfig.setInitializeCache(true);
         envConfig.setInitializeLocking(true);
         final File path = new File(".");
         final String contName = "temp.dbxml";
         final Environment dbEnv = new Environment(path, envConfig);
         final XmlManagerConfig mc = new XmlManagerConfig();
         mc.setAdoptEnvironment(true);
         final XmlManager manager = new XmlManager(dbEnv, mc);
         final XmlContainerConfig cconfig = new XmlContainerConfig();
         final XmlContainer container = manager.openContainer(contName, cconfig);
         // catch these errors so I can close the container
         XmlResults queryRes = null;
         XmlResults attrRes = null;
         try {
              final XmlQueryContext qc =
                   manager.createQueryContext(XmlQueryContext.LiveValues, XmlQueryContext.Lazy);
              queryRes = manager.query("collection('"+contName+"')/scenario", qc);
              XmlValue temp;
              while(queryRes.hasNext()) {
                   temp = queryRes.next();
                   attrRes = temp.getAttributes();
                   while(attrRes.hasNext()) {
                        //System.out.println("attr name "+attrRes.next().getNodeName());
                        System.out.println("attr value "+attrRes.next().getNodeValue()); // exception here
                   attrRes.delete();
              queryRes.delete();
         } catch(XmlException e) {
              e.printStackTrace();
              if(attrRes != null) {
                   attrRes.delete();
              if(queryRes != null) {
                   queryRes.delete();
         } finally {
              container.close();
              manager.close();
    }

    I tried the patch you sent with no luck, same error. I then tried the test on an intel based mac (without the patch) and that had no problems. That machine was running the same version os/dbxml/java as my machine (G4 PowerPC). It had a slightly newer gcc so I updated gcc on my machine to powerpc-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5367) however same error.
    I am not going to worry about this for the time being but thought maybe this info may be useful for you. If you need more info feel free to ask.
    Thanks,
    Pralit

  • Bug with exporting project to java source

    Hi,
    This is in TopLink 9.0.4.2 (Build 040311).
    We're in the process of trying to determine if we should upgrade our TopLink from 2.5 to 9.0.4, and have not yet purchased a support contract because we haven't made the final decision yet, so I'm posting this bug here in hopes that someone can submit the bug.
    In one of our projects, we have an AggregateObjectMapping (AOM) for a Measurement object that is owned by 2 different objects, each with 2 to 4 instances of this Measurement class. I set up the instances of the AOM in the workbench just fine, and looking at the XML descriptors that are written out, it appears fine. Exporting the project session XML file works fine as well. However, when it is exported to a Java file, the instances of the AOM are exported incorrectly as described below.
    Here is the abbreviated mapping of the attributes of the Measurement class:
    <mappings>
    <mapping>
    <inherited>false</inherited>
    <instance-variable-name>mPrecision</instance-variable-name>
    <default-field-names>
    <default-field-name>direct field=yPrecision</default-field-name>
    </default-field-names>
    <uses-method-accessing>false</uses-method-accessing>
    <read-only>false</read-only>
    <mapping-class>MWDirectToFieldMapping</mapping-class>
    </mapping>
    <mapping>
    <inherited>false</inherited>
    <instance-variable-name>mQuantity</instance-variable-name>
    <default-field-names>
    <default-field-name>direct field=y</default-field-name>
    </default-field-names>
    <uses-method-accessing>false</uses-method-accessing>
    <read-only>false</read-only>
    <mapping-class>MWDirectToFieldMapping</mapping-class>
    </mapping>
    <mapping>
    <inherited>false</inherited>
    <instance-variable-name>mUnit</instance-variable-name>
    <uses-method-accessing>false</uses-method-accessing>
    <read-only>false</read-only>
    <reference-descriptor>com.cimsoft.lws.units.Unit.ClassDescriptor</reference-descriptor>
    <private-owned>false</private-owned>
    <uses-batch-reading>false</uses-batch-reading>
    <table-reference-mapping-reference-handle>
    <reference-handle>
    <reference-table>csrSlotGenericValue</reference-table>
    <reference-name>csrSlotGenericValue_csdUnit</reference-name>
    </reference-handle>
    </table-reference-mapping-reference-handle>
    <uses-joining>false</uses-joining>
    <one-to-one-mapping-indirection-policy>
    <indirection-policy>
    <uses-indirection>false</uses-indirection>
    </indirection-policy>
    </one-to-one-mapping-indirection-policy>
    <mapping-class>MWOneToOneMapping</mapping-class>
    </mapping>
    <mapping>
    <inherited>false</inherited>
    <instance-variable-name>UNDEFINED_MEASUREMENT</instance-variable-name>
    <mapping-class>MWUnmappedMapping</mapping-class>
    </mapping>
    </mappings>
    Notice that there are two direct to field mappings (mPrecision and mQuantity) and one OneToOneMapping (mUnit). The exported sessions XML file has the correct XML for instances of this object. Here is an example from a class that has 3 instances of this Measurement object mapped:
    <database-mapping>
    <attribute-name>mAlarmSize</attribute-name>
    <read-only>false</read-only>
    <reference-class>com.cimsoft.lws.units.Measurement</reference-class>
    <is-null-allowed>true</is-null-allowed>
    <aggregate-to-source-field-name-associations>
    <association>
    <association-key>unitId</association-key>
    <association-value>csrStock.alarmSizeUnitId</association-value>
    </association>
    <association>
    <association-key>y</association-key>
    <association-value>csrStock.alarmSize</association-value>
    </association>
    <association>
    <association-key>yPrecision</association-key>
    <association-value>csrStock.alarmSizePrecision</association-value>
    </association>
    </aggregate-to-source-field-name-associations>
    <type>oracle.toplink.mappings.AggregateObjectMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>mCurrentSize</attribute-name>
    <read-only>false</read-only>
    <reference-class>com.cimsoft.lws.units.Measurement</reference-class>
    <is-null-allowed>true</is-null-allowed>
    <aggregate-to-source-field-name-associations>
    <association>
    <association-key>unitId</association-key>
    <association-value>csrStock.currentSizeUnitId</association-value>
    </association>
    <association>
    <association-key>y</association-key>
    <association-value>csrStock.currentSize</association-value>
    </association>
    <association>
    <association-key>yPrecision</association-key>
    <association-value>csrStock.currentSizePrecision</association-value>
    </association>
    </aggregate-to-source-field-name-associations>
    <type>oracle.toplink.mappings.AggregateObjectMapping</type>
    </database-mapping>
    <database-mapping>
    <attribute-name>mLotSize</attribute-name>
    <read-only>false</read-only>
    <reference-class>com.cimsoft.lws.units.Measurement</reference-class>
    <is-null-allowed>true</is-null-allowed>
    <aggregate-to-source-field-name-associations>
    <association>
    <association-key>unitId</association-key>
    <association-value>csrStock.lotSizeUnitId</association-value>
    </association>
    <association>
    <association-key>y</association-key>
    <association-value>csrStock.lotSize</association-value>
    </association>
    <association>
    <association-key>yPrecision</association-key>
    <association-value>csrStock.lotSizePrecision</association-value>
    </association>
    </aggregate-to-source-field-name-associations>
    <type>oracle.toplink.mappings.AggregateObjectMapping</type>
    </database-mapping>
    However, here are the corresponding mappings in the exported Java file (with what it really should be manually inserted by me in comments):
         AggregateObjectMapping mAlarmSizeMapping = new AggregateObjectMapping();
         mAlarmSizeMapping.setAttributeName("mAlarmSize");
         mAlarmSizeMapping.setReferenceClass(com.cimsoft.lws.units.Measurement.class);
         mAlarmSizeMapping.setIsNullAllowed(true);
         mAlarmSizeMapping.addFieldNameTranslation("csrStock.alarmSizeUnitId", "unitId");
         mAlarmSizeMapping.addFieldNameTranslation("csrStock.alarmSize", "y");
         mAlarmSizeMapping.addFieldNameTranslation("csrStock.alarmSizePrecision", "yPrecision");
         descriptor.addMapping(mAlarmSizeMapping);
         AggregateObjectMapping mCurrentSizeMapping = new AggregateObjectMapping();
         mCurrentSizeMapping.setAttributeName("mCurrentSize");
         mCurrentSizeMapping.setReferenceClass(com.cimsoft.lws.units.Measurement.class);
         mCurrentSizeMapping.setIsNullAllowed(true);
         mCurrentSizeMapping.addFieldNameTranslation("csrStock.currentSize", "alarmSize");
         mCurrentSizeMapping.addFieldNameTranslation("csrStock.currentSizeUnitId", "unitId");
         mCurrentSizeMapping.addFieldNameTranslation("csrStock.currentSizePrecision", "alarmSizePrecision");
         // should be: mCurrentSizeMapping.addFieldNameTranslation("csrStock.currentSize", "y");
         // should be: mCurrentSizeMapping.addFieldNameTranslation("csrStock.currentSizePrecision", "yPrecision");
         descriptor.addMapping(mCurrentSizeMapping);
         AggregateObjectMapping mLotSizeMapping = new AggregateObjectMapping();
         mLotSizeMapping.setAttributeName("mLotSize");
         mLotSizeMapping.setReferenceClass(com.cimsoft.lws.units.Measurement.class);
         mLotSizeMapping.setIsNullAllowed(true);
         mLotSizeMapping.addFieldNameTranslation("csrStock.lotSizeUnitId", "unitId");
         mLotSizeMapping.addFieldNameTranslation("csrStock.lotSize", "currentSize");
         mLotSizeMapping.addFieldNameTranslation("csrStock.lotSizePrecision", "currentSizePrecision");
         // should be: mLotSizeMapping.addFieldNameTranslation("csrStock.lotSize", "y");
         // should be: mLotSizeMapping.addFieldNameTranslation("csrStock.lotSizePrecision", "yPrecision");
         descriptor.addMapping(mLotSizeMapping);
    It appears that the actual Measurement descriptor is being modified accidentally as it's being exported, as you'll notice that the first mapping (for mAlarmSize) correctly maps the default "y" to "alarmSize", and then the next mapping (for mCurrentSize) instead of mapping "y" to "currentSize" maps "alarmSize" to "currentSize", and the next AOM maps "currentSize" to "lotSize" instead of "y" to "lotSize".
    Thanks,
    Greg

    No one ever responded, so I'm commenting to bring it up again. It turns out that the error happens not just exporting to Java, but anytime the command-line project generation is used. If the Workbench is used to export either to XML or to a Java file, the file is generated correctly. It is not generated correctly if you try to do it from the commandline (e.g. from a build environment).
    This has happened with 9.0.4.2 through the current 9.0.4.5.
    Here are different ways I've tried doing it from the commandline, and they all generate the erroneous XML and Java files:
    java oracle.toplink.workbench.external.api.JavaSourceGenerator inputMWP outputJava.java
    and
    java oracle.toplink.workbench.external.api.DeploymentXMLGenerator inputMWP outputXML.xml
    which are recommended by the documentation. Also recommended by the documentation:
    JavaSourceGenerator.generate( inputFile, outputFile )
    and
    DeploymentXMLGenerator.generate( inputFile, outputFile ).
    From decompiling the management workbench to see what it was doing differently:
    MWProject project = WorkbenchSession.instance().openProject( inputFile );
    if ( doXML )
    project.setProjectDeploymentXmlDirectory( directory );
    project.setProjectDeploymentXmlFileName( filename );
    project.exportDeploymentXml();
    else
    project.setProjectSourceRootDirectory( directory );
    project.setProjectClassName( classname );
    project.exportJavaSource( outputFile );
    //Also tried plain old project.exportJavaSource(); which appears to actually do something different.
    Any ideas? It looks like a bug to me, particularly that different java or XML deployment files are generated when run from the commandline versus run from the UI. Obviously, the commandline is very important because it is what the build system needs.
    Thanks,
    Greg

  • [bug]Jdev 11g:NullPointerException at java.util.regex.Matcher.getTextLength

    Hi,
    Jdev 11.1.1.0.31.51.56
    If somebody of you get the following trace stack when running a jspx using ViewCriteriaRow.setOperator :
    There is bug 7534359 and metalink note 747353.1 available.
    java.lang.NullPointerException
    at java.util.regex.Matcher.getTextLength(Matcher.java:1140)
    at java.util.regex.Matcher.reset(Matcher.java:291)
    at java.util.regex.Matcher.<init>(Matcher.java:211)
    at java.util.regex.Pattern.matcher(Pattern.java:888)
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding._loadFilter
    CriteriaValues(FacesCtrlSearchBinding.java:3695)
    Truncated. see log file for complete stacktrace
    Workaround:
    If you use 
            vcr.setAttribute("Job",job);
    or
            vcr.setAttribute("Job","="+job);
    than add following line of code:
            vcr.setOperator("Job","=");   regards
    Peter

    Hi,
    useful to mention that this happens when setting the equal operator or LIKE operator
    vcr.setAttribute("Job","= '"+job+"'");
    or
    vcr.setOperator("Job","=");
    Frank

  • Version 3.6.14 has a bug & does not support Java to play Pogo games - How do I install a earlier version?

    Pogo games plays on Java - the last version of Firefox 3.16.14 has a bug that does not support Java - I have been instructed by Pogo to install an earlier version of Firefox. How do I do that?

    Firefox 3.6.15 was just released to fix that Bug.
    You can use Help > '''Check for Updates''' to trigger an update to Firefox 3.6.15.

  • SAP GUI for Java 7.00 rev 4 - bug in ABAP download

    When I try to download ABAP source code or when I use "Edit Locally" in SE38 (the easiest way how to write/edit programs with a comfortable editor), ABAP source is downloaded to my computer with trailing 0x00 bytes. It has small side-effect in Local Editing: new code with this block is uploaded into SAP and syntax check of such program fails.
    Using 7.00 rev 3 works fine.
    Has anybody idea how to eliminate this bug?
    Wishlist, but to another forum: It will be really nice to assign hot-key to this menu item in SE38.
    Thank you,
      Pavel

    Hello Pavel,
    thanks for bringing this to our attention.
    This is a bug in SAP GUI for Java 7.00 rev 4 and we will fix this in the next revision.
    Regarding the hot-key for the "Edit Locally" menu item, I suggest to give this feedback officially using <a href="http://service.sap.com/message">message wizard</a> on component BC-DWB-TOO.
    Best regards
    Rolf-Martin

  • Is this really a java  bug?

    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x8d22d623, pid=12929, tid=2293337008
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # [thread 2106588080 also had an error]
    C [libocijdbc10.so+0x12623]
    [thread -2127164496 also had an error]
    [thread 2117065648 also had an error]
    Rset -->spsingh0
    # An error report file with more information is saved as [thread 2117065648 also had an error]
    [thread -2050204752 also had an error]
    [thread 2041535408 also had an error]
    [thread 1980222384 also had an error]
    [thread 2144336816 also had an error]
    [thread 1984424880 also had an error]
    [thread -2090341456 also had an error]
    [thread -2096682064 also had an error]
    [thread 1920981936 also had an error]
    [thread 2116537264 also had an error]
    [thread -2123084880 also had an error]
    [thread -2022728784 also had an error]
    [thread -2027484240 also had an error]
    [thread -2117076048 also had an error]
    [thread 2011167664 also had an error]
    [thread 2042063792 also had an error]
    [thread -2061300816 also had an error]
    [thread 1996430256 also had an error]
    [thread -2024313936 also had an error]
    [thread 1994845104 also had an error]Rset -->spsingh0
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    [thread -2085139536 also had an error]
    [thread -2092983376 also had an error]
    [thread -2121970768 also had an error]
    [thread 2130369456 also had an error]
    [thread -2079855696 also had an error]

    multiple threads on same subject!
    Dave's right, it's almost certainly a compatibility problem with your JDBC driver

  • How to find my submitted bug report in Java bug database

    I just submitted a bug report in Java bug database and it told me that the submission is successful without its bug ID and no email notification is received from Oracle.
    And I cannot find the bug in bug database with the title I submitted.
    The bug's product/category is Java Plug-in in JRE7
    So how could I get the bug status? Will it be fixed and how is it going on?

    I just submitted a bug report in Java bug database and it told me that the submission is successful without its bug ID and no email notification is received from Oracle.Last time I did that it also said it wouldn't appear straight away. They have to qualify bugs you know.
    And I cannot find the bug in bug database with the title I submitted.How long ago?
    So how could I get the bug status?Wait till it turns up?
    Will it be fixed and how is it going on?How would anyone on this forum know?

  • I am trying to do profiling of an ear appln using Java 1.6, JVMTI and TPTP

    Please view the link before hand: http://www.eclipse.org/forums/index.php/t/398099/
    but while starting the server i am getting the following error:
    A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_STACK_OVERFLOW (0xc00000fd) at pc=0x77232258, pid=6568, tid=7560
    # JRE version: 6.0_18-b07
    # Java VM: Java HotSpot(TM) Server VM (16.0-b13 mixed mode windows-x86 )
    # Problematic frame:
    # C [ntdll.dll+0x22258]
    # If you would like to submit a bug report, please visit:
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    Can anyone help me in fixing this
    The log file contains as below:
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_STACK_OVERFLOW (0xc00000fd) at pc=0x77232258, pid=6568, tid=7560
    # JRE version: 6.0_18-b07
    # Java VM: Java HotSpot(TM) Server VM (16.0-b13 mixed mode windows-x86 )
    # Problematic frame:
    # C [ntdll.dll+0x22258]
    # 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 (0x099d3800): JavaThread "main" [_thread_in_native, id=7560, stack(0x0a320000,0x0a360000)]
    siginfo: ExceptionCode=0xc00000fd, ExceptionInformation=0x00000001 0x0a320ffc
    Registers:
    EAX=0x00000009, EBX=0x00000001, ECX=0x0ef02b40, EDX=0x0ef0739c
    ESP=0x0a321000, EBP=0x0a32100c, ESI=0x02917df4, EDI=0x0291902c
    EIP=0x77232258, EFLAGS=0x00010206
    Top of Stack: (sp=0x0a321000)
    0x0a321000: 0000003f 0291902c 0291902c 0a32101c
    0x0a321010: 0290aba1 029195c0 0ef072e0 0a35d2a4
    0x0a321020: 0290a0f9 00000009 0ef02b40 02907b36
    0x0a321030: 0ef072e0 02904f00 0ef072e0 0ef04fe0
    0x0a321040: 02904f11 00000001 0ef04fc0 02904f11
    0x0a321050: 00000001 0ef03960 02904f11 00000001
    0x0a321060: 0ef06020 02904f11 00000001 0ef025e0
    0x0a321070: 02904f11 00000001 0ef051a0 02904f11
    Instructions: (pc=0x77232258)
    0x77232248: 00 90 90 90 90 90 90 90 8b ff 55 8b ec 83 ec 0c
    0x77232258: 56 57 8b 7d 08 8d 77 04 8b c6 f0 0f ba 30 00 0f
    Stack: [0x0a320000,0x0a360000], sp=0x0a321000, free space=40a320ae4k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x22258]
    C [CGProf.dll+0xaba1]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.jboss.seam.jsf.SeamApplicationFactory.getApplication()Ljavax/faces/application/Application;+19
    j com.sun.faces.config.processor.AbstractConfigProcessor.getApplication()Ljavax/faces/application/Application;+29
    j com.sun.faces.config.processor.ApplicationConfigProcessor.process([Lorg/w3c/dom/Document;)V+20
    j com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext([Lorg/w3c/dom/Document;)V+31
    j com.sun.faces.config.processor.LifecycleConfigProcessor.process([Lorg/w3c/dom/Document;)V+194
    j com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext([Lorg/w3c/dom/Document;)V+31
    j com.sun.faces.config.processor.FactoryConfigProcessor.process([Lorg/w3c/dom/Document;)V+134
    j com.sun.faces.config.ConfigManager.initialize(Ljavax/servlet/ServletContext;)V+45
    j com.sun.faces.config.ConfigureListener.contextInitialized(Ljavax/servlet/ServletContextEvent;)V+328
    j org.apache.catalina.core.StandardContext.listenerStart()Z+434
    j org.apache.catalina.core.StandardContext.start()V+1275
    j org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(Lorg/jboss/web/WebApplication;Ljava/lang/String;Ljava/lang/String;)V+999
    j org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(Lorg/jboss/web/WebApplication;Ljava/lang/String;)V+117
    j org.jboss.web.deployers.AbstractWarDeployment.start(Lorg/jboss/deployers/structure/spi/DeploymentUnit;Lorg/jboss/metadata/web/jboss/JBossWebMetaData;)Lorg/jboss/web/WebApplication;+257
    j org.jboss.web.deployers.WebModule.startModule()V+44
    j org.jboss.web.deployers.WebModule.start()V+20
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+106
    J sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+189
    j org.jboss.mx.interceptor.ReflectedDispatcher.invoke(Lorg/jboss/mx/server/Invocation;)Ljava/lang/Object;+432
    j org.jboss.mx.server.Invocation.dispatch()Ljava/lang/Object;+24
    j org.jboss.mx.server.Invocation.invoke()Ljava/lang/Object;+29
    j org.jboss.mx.server.AbstractMBeanInvoker.invoke(Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;)Ljava/lang/Object;+366
    j org.jboss.mx.server.MBeanServerImpl.invoke(Ljavax/management/ObjectName;Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;)Ljava/lang/Object;+57
    j org.jboss.system.microcontainer.ServiceProxy.invoke(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+131
    j $Proxy38.start()V+29
    j org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(Lorg/jboss/system/microcontainer/ServiceControllerContext;)V+25
    j org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(Lorg/jboss/dependency/spi/ControllerContext;)V+24
    j org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(Lorg/jboss/dependency/spi/ControllerContext;)V+21
    j org.jboss.dependency.plugins.action.AccessControllerContextAction.install(Lorg/jboss/dependency/spi/ControllerContext;)V+39
    j org.jboss.dependency.plugins.AbstractControllerContextActions.install(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerS¸ü1
    Íø"+35
    j org.jboss.dependency.plugins.AbstractControllerContext.install(Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+35
    j org.jboss.system.microcontainer.ServiceControllerContext.install(Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+23
    j org.jboss.dependency.plugins.AbstractController.install(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+41
    j org.jboss.dependency.plugins.AbstractController.incrementState(Lorg/jboss/dependency/spi/ControllerContext;Z)Z+456
    J org.jboss.dependency.plugins.AbstractController.resolveContexts(Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;Z)Z
    J org.jboss.dependency.plugins.AbstractController.resolveContexts(Z)V
    j org.jboss.dependency.plugins.AbstractController.change(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Z)V+220
    j org.jboss.dependency.plugins.AbstractController.change(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;)V+59
    j org.jboss.system.ServiceController.doChange(Lorg/jboss/kernel/spi/dependency/KernelController;Lorg/jboss/system/microcontainer/ServiceControllerContext;Lorg/jboss/dependency/spi/ControllerState¸ü1
    Íø"wang/StriTü1
    V+35
    j org.jboss.system.ServiceController.start(Ljavax/management/ObjectName;)V+189
    j org.jboss.system.deployers.ServiceDeployer.start(Lorg/jboss/system/ServiceContext;)V+27
    j org.jboss.system.deployers.ServiceDeployer.deploy(Lorg/jboss/deployers/structure/spi/DeploymentUnit;Lorg/jboss/system/metadata/ServiceMetaData;)V+109
    j org.jboss.system.deployers.ServiceDeployer.deploy(Lorg/jboss/deployers/structure/spi/DeploymentUnit;Ljava/lang/Object;)V+25
    j org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(Lorg/jboss/deployers/structure/spi/DeploymentUnit;)V+37
    j org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(Lorg/jboss/deployers/structure/spi/DeploymentUnit;)V+21
    j org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(Lorg/jboss/deployers/structure/spi/DeploymentUnit;)V+87
    J org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(Lorg/jboss/deployers/spi/deployer/Deployer;Lorg/jboss/deployers/structure/spi/DeploymentContext;)V
    J org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(Lorg/jboss/deployers/spi/deployer/Deployer;Lorg/jboss/deployers/structure/spi/DeploymentContext;)V
    j org.jboss.deployers.plugins.deployers.DeployersImpl.install(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+147
    j org.jboss.dependency.plugins.AbstractControllerContext.install(Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+35
    j org.jboss.dependency.plugins.AbstractController.install(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+41
    j org.jboss.dependency.plugins.AbstractController.incrementState(Lorg/jboss/dependency/spi/ControllerContext;Z)Z+456
    J org.jboss.dependency.plugins.AbstractController.resolveContexts(Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;Z)Z
    J org.jboss.dependency.plugins.AbstractController.resolveContexts(Z)V
    j org.jboss.dependency.plugins.AbstractController.change(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Z)V+220
    j org.jboss.dependency.plugins.AbstractController.change(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;)V+59
    j org.jboss.deployers.plugins.deployers.DeployersImpl.process(Ljava/util/List;Ljava/util/List;)V+985
    j org.jboss.deployers.plugins.main.MainDeployerImpl.process()V+279
    j org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process()V+23
    j org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(Lorg/jboss/profileservice/spi/Profile;)V+121
    j org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(Lorg/jboss/system/server/profileservice/repository/ProfileContext;)V+36
    j org.jboss.system.server.profileservice.repository.AbstractProfileService.install(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/¸ü1
    Íø"werState;Tü+58
    j org.jboss.dependency.plugins.AbstractControllerContext.install(Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+35
    j org.jboss.dependency.plugins.AbstractController.install(Lorg/jboss/dependency/spi/ControllerContext;Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;)V+41
    j org.jboss.dependency.plugins.AbstractController.incrementState(Lorg/jboss/dependency/spi/ControllerContext;Z)Z+456
    J org.jboss.dependency.plugins.AbstractController.resolveContexts(Lorg/jboss/dependency/spi/ControllerState;Lorg/jboss/dependency/spi/ControllerState;Z)Z
    J org.jboss.dependency.plugins.AbstractController.resolveContexts(Z)V
    j org.jboss.dependency.plugins.AbstractController.install(Lorg/jboss/dependency/spi/ControllerContext;Z)V+387
    j org.jboss.dependency.plugins.AbstractController.install(Lorg/jboss/dependency/spi/ControllerContext;)V+87
    j org.jboss.system.server.profileservice.repository.AbstractProfileService.registerProfile(Lorg/jboss/profileservice/spi/Profile;)V+177
    j org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(Lorg/jboss/bootstrap/spi/Server;)V+206
    j org.jboss.bootstrap.AbstractServerImpl.start()V+298
    j org.jboss.Main.boot([Ljava/lang/String;)V+503
    j org.jboss.Main$1.run()V+33
    j java.lang.Thread.run()V+39
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0bbb0400 JavaThread "IdleRemover" daemon [_thread_blocked, id=7548, stack(0x68a80000,0x68ac0000)]
    0x0bbaf400 JavaThread "Timer-1" daemon [_thread_blocked, id=8528, stack(0x68900000,0x68940000)]
    0x0bbadc00 JavaThread "Thread-49" daemon [_thread_blocked, id=6508, stack(0x68780000,0x687c0000)]
    0x0bbad400 JavaThread "JCA PoolFiller" [_thread_blocked, id=6980, stack(0x68500000,0x68540000)]
    0x0bbad000 JavaThread "HSQLDB Timer @ae5b0b" daemon [_thread_blocked, id=5348, stack(0x68480000,0x684c0000)]
    0x0bbac800 JavaThread "DefaultQuartzScheduler_QuartzSchedulerThread" [_thread_blocked, id=4176, stack(0x67330000,0x67370000)]
    0x0bbac400 JavaThread "DefaultQuartzScheduler_Worker-9" [_thread_blocked, id=5004, stack(0x672b0000,0x672f0000)]
    0x0bbabc00 JavaThread "DefaultQuartzScheduler_Worker-8" [_thread_blocked, id=7108, stack(0x67230000,0x67270000)]
    0x0bbab400 JavaThread "DefaultQuartzScheduler_Worker-7" [_thread_blocked, id=5604, stack(0x671b0000,0x671f0000)]
    0x0bbab000 JavaThread "DefaultQuartzScheduler_Worker-6" [_thread_blocked, id=5060, stack(0x67130000,0x67170000)]
    0x0bbaa800 JavaThread "DefaultQuartzScheduler_Worker-5" [_thread_blocked, id=7456, stack(0x670b0000,0x670f0000)]
    0x0bbaa400 JavaThread "DefaultQuartzScheduler_Worker-4" [_thread_blocked, id=3136, stack(0x67030000,0x67070000)]
    0x0bba9c00 JavaThread "DefaultQuartzScheduler_Worker-3" [_thread_blocked, id=1452, stack(0x66fb0000,0x66ff0000)]
    0x0bba9800 JavaThread "DefaultQuartzScheduler_Worker-2" [_thread_blocked, id=8036, stack(0x66f30000,0x66f70000)]
    0x0cb3a800 JavaThread "DefaultQuartzScheduler_Worker-1" [_thread_blocked, id=6900, stack(0x66eb0000,0x66ef0000)]
    0x0cb3ac00 JavaThread "DefaultQuartzScheduler_Worker-0" [_thread_blocked, id=4888, stack(0x66b00000,0x66b40000)]
    0x0cb3c000 JavaThread "WorkManager(2)-1" daemon [_thread_blocked, id=5656, stack(0x66a80000,0x66ac0000)]
    0x0cb3b400 JavaThread "AOPListner" daemon [_thread_blocked, id=1968, stack(0x65ee0000,0x65f20000)]
    0x0cb3b800 JavaThread "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon [_thread_blocked, id=7868, stack(0x66770000,0x667b0000)]
    0x0cb3d000 JavaThread "RMI TCP Accept-11006" daemon [_thread_in_native, id=4756, stack(0x665f0000,0x66630000)]
    0x0cb3e400 JavaThread "PooledInvokerAcceptor#0-11007" [_thread_in_native, id=4480, stack(0x66570000,0x665b0000)]
    0x0cb3dc00 JavaThread "Thread-46" [_thread_blocked, id=4320, stack(0x664f0000,0x66530000)]
    0x0cb3cc00 JavaThread "Listener:11009" daemon [_thread_in_native, id=7276, stack(0x66470000,0x664b0000)]
    0x0cb3d800 JavaThread "Thread-45" daemon [_thread_blocked, id=4208, stack(0x663f0000,0x66430000)]
    0x0cb3f400 JavaThread "Thread-44" daemon [_thread_blocked, id=3328, stack(0x66370000,0x663b0000)]
    0x0cb3fc00 JavaThread "Thread-43" daemon [_thread_blocked, id=6360, stack(0x662f0000,0x66330000)]
    0x0cb3f000 JavaThread "Listener:11010" daemon [_thread_in_native, id=6164, stack(0x66270000,0x662b0000)]
    0x0cb40000 JavaThread "AcceptorThread[ServerSocket[addr=/0.0.0.0,port=0,localport=11005]]" [_thread_in_native, id=4220, stack(0x660f0000,0x66130000)]
    0x0cb3e800 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=7116, stack(0x66070000,0x660b0000)]
    0x0bba9000 JavaThread "HDScanner" [_thread_blocked, id=4784, stack(0x66e70000,0x66eb0000)]
    0x0cb42000 JavaThread "AcceptorThread[ServerSocket[addr=/0.0.0.0,port=0,localport=11013]]" [_thread_in_native, id=4144, stack(0x66df0000,0x66e30000)]
    0x0cb41800 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=5480, stack(0x66d70000,0x66db0000)]
    0x0cb41400 JavaThread "secondaryServerSocketThread[0]" daemon [_thread_in_native, id=6244, stack(0x66cf0000,0x66d30000)]
    0x0cb40c00 JavaThread "AcceptorThread[ServerSocket[addr=/0.0.0.0,port=0,localport=11008]]" [_thread_in_native, id=5156, stack(0x66c70000,0x66cb0000)]
    0x0cb40800 JavaThread "ServerSocketRefresh" daemon [_thread_blocked, id=4288, stack(0x66bf0000,0x66c30000)]
    0x0cfad800 JavaThread "RequestController-7" daemon [_thread_blocked, id=2024, stack(0x65a40000,0x65a80000)]
    0x0cfad400 JavaThread "RequestController-6" daemon [_thread_blocked, id=8448, stack(0x659c0000,0x65a00000)]
    0x0cfacc00 JavaThread "RequestController-5" daemon [_thread_blocked, id=5264, stack(0x65940000,0x65980000)]
    0x0cfac800 JavaThread "RequestController-4" daemon [_thread_blocked, id=4964, stack(0x658c0000,0x65900000)]
    0x0cfac000 JavaThread "ORB thread" [_thread_blocked, id=7380, stack(0x65840000,0x65880000)]
    0x0cfabc00 JavaThread "RequestController-3" daemon [_thread_blocked, id=4620, stack(0x657c0000,0x65800000)]
    0x0cfab400 JavaThread "RequestController-2" daemon [_thread_blocked, id=6856, stack(0x65740000,0x65780000)]
    0x0cfaa800 JavaThread "ServerSocketListener" daemon [_thread_in_native, id=5856, stack(0x656c0000,0x65700000)]
    0x0cfaa400 JavaThread "RequestController-1" daemon [_thread_blocked, id=7136, stack(0x0efe0000,0x0f020000)]
    0x0cfa9c00 JavaThread "ZipFile Lock Reaper" daemon [_thread_blocked, id=3488, stack(0x0d8c0000,0x0d900000)]
    0x0cf82400 JavaThread "JBoss System Threads(1)-2" daemon [_thread_in_native, id=6140, stack(0x0fba0000,0x0fbe0000)]
    0x0d2c4800 JavaThread "GC Daemon" daemon [_thread_blocked, id=7768, stack(0x0fb20000,0x0fb60000)]
    0x0c065c00 JavaThread "RMI Reaper" [_thread_blocked, id=380, stack(0x0faa0000,0x0fae0000)]
    0x0d3d1c00 JavaThread "RMI TCP Accept-11002" daemon [_thread_in_native, id=3956, stack(0x0fa20000,0x0fa60000)]
    0x0ad78000 JavaThread "JBoss System Threads(1)-1" daemon [_thread_in_native, id=8376, stack(0x0f9a0000,0x0f9e0000)]
    0x0bfdec00 JavaThread "Timer-Log4jService" daemon [_thread_blocked, id=5736, stack(0x0f610000,0x0f650000)]
    0x11fb8c00 JavaThread "AuthenticationCacheFlushThread" [_thread_blocked, id=4160, stack(0x0f590000,0x0f5d0000)]
    0x099a2000 JavaThread "Timer-0" daemon [_thread_blocked, id=5324, stack(0x0c700000,0x0c740000)]
    0x0137f000 JavaThread "DestroyJavaVM" [_thread_blocked, id=3508, stack(0x003b0000,0x003f0000)]
    =>0x099d3800 JavaThread "main" [_thread_in_native, id=7560, stack(0x0a320000,0x0a360000)]
    0x099c4400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=7484, stack(0x0a210000,0x0a250000)]
    0x099c1c00 JavaThread "CompilerThread1" daemon [_thread_blocked, id=1736, stack(0x0a180000,0x0a1d0000)]
    0x099c1800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6816, stack(0x0a0f0000,0x0a140000)]
    0x099b6800 JavaThread "Attach Listener" daemon [_thread_blocked, id=5716, stack(0x09f70000,0x09fb0000)]
    0x099b4000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6612, stack(0x09ef0000,0x09f30000)]
    0x099ab800 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=3556, stack(0x09e70000,0x09eb0000)]
    0x09939000 JavaThread "Finalizer" daemon [_thread_blocked, id=2752, stack(0x09df0000,0x09e30000)]
    0x09934c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=4240, stack(0x09d70000,0x09db0000)]
    Other Threads:
    0x009df400 VMThread [stack: 0x09ce0000,0x09d30000] [id=5136]
    0x099c5000 WatcherThread [stack: 0x0a290000,0x0a2e0000] [id=7852]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    par new generation total 14784K, used 3214K [0x12250000, 0x13250000, 0x15250000)
    eden space 13184K, 12% used [0x12250000, 0x123e3888, 0x12f30000)
    from space 1600K, 100% used [0x12f30000, 0x130c0000, 0x130c0000)
    to space 1600K, 0% used [0x130c0000, 0x130c0000, 0x13250000)
    concurrent mark-sweep generation total 585648K, used 356667K [0x15250000, 0x38e3c000, 0x52250000)
    concurrent-mark-sweep perm gen total 131072K, used 70872K [0x52250000, 0x5a250000, 0x62250000)
    Dynamic libraries:
    0x00400000 - 0x00424000      C:\Program Files (x86)\Java\jdk1.6.0_18\bin\java.exe
    0x77210000 - 0x77390000      C:\Windows\SysWOW64\ntdll.dll
    0x76910000 - 0x76a10000      C:\Windows\syswow64\kernel32.dll
    0x75850000 - 0x75896000      C:\Windows\syswow64\KERNELBASE.dll
    0x757b0000 - 0x75850000      C:\Windows\syswow64\ADVAPI32.dll
    0x753a0000 - 0x7544c000      C:\Windows\syswow64\msvcrt.dll
    0x76610000 - 0x76629000      C:\Windows\SysWOW64\sechost.dll
    0x75080000 - 0x75170000      C:\Windows\syswow64\RPCRT4.dll
    0x74d80000 - 0x74de0000      C:\Windows\syswow64\SspiCli.dll
    0x74d70000 - 0x74d7c000      C:\Windows\syswow64\CRYPTBASE.dll
    0x7c340000 - 0x7c396000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\msvcr71.dll
    0x6db70000 - 0x6df9b000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\server\jvm.dll
    0x76b40000 - 0x76c40000      C:\Windows\syswow64\USER32.dll
    0x74f90000 - 0x75020000      C:\Windows\syswow64\GDI32.dll
    0x74ee0000 - 0x74eea000      C:\Windows\syswow64\LPK.dll
    0x76aa0000 - 0x76b3d000      C:\Windows\syswow64\USP10.dll
    0x719e0000 - 0x71a12000      C:\Windows\system32\WINMM.dll
    0x767b0000 - 0x76810000      C:\Windows\system32\IMM32.DLL
    0x74de0000 - 0x74eac000      C:\Windows\syswow64\MSCTF.dll
    0x73da0000 - 0x73deb000      C:\Windows\system32\apphelp.dll
    0x6d860000 - 0x6d86c000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\verify.dll
    0x6d3e0000 - 0x6d3ff000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\java.dll
    0x6d340000 - 0x6d348000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\hpi.dll
    0x75020000 - 0x75025000      C:\Windows\syswow64\PSAPI.DLL
    0x10000000 - 0x10019000      C:\Users\hkhargharia\Downloads\agntctrl.win_ia32-TPTP-4.2.0.2\plugins\org.eclipse.tptp.javaprofiler\JPIBootLoader.dll
    0x002e0000 - 0x002eb000      C:\Users\hkhargharia\Downloads\agntctrl.win_ia32-TPTP-4.2.0.2\plugins\org.eclipse.tptp.javaprofiler\MartiniOSA.dll
    0x005c0000 - 0x005f1000      C:\Users\hkhargharia\Downloads\agntctrl.win_ia32-TPTP-4.2.0.2\plugins\org.eclipse.tptp.javaprofiler\JPI.dll
    0x00890000 - 0x008b1000      C:\Users\hkhargharia\Downloads\agntctrl.win_ia32-TPTP-4.2.0.2\plugins\org.eclipse.tptp.javaprofiler\JPIAgent.dll
    0x009e0000 - 0x00a01000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\AgentBase.dll
    0x00a10000 - 0x00a27000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\transportSupport.dll
    0x76c40000 - 0x76c75000      C:\Windows\syswow64\WS2_32.dll
    0x76660000 - 0x76666000      C:\Windows\syswow64\NSI.dll
    0x00a40000 - 0x00a77000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\tptpUtils.dll
    0x12000000 - 0x12241000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\xerces-c_2_6.dll
    0x00a90000 - 0x00aa6000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\hcclco.dll
    0x012a0000 - 0x012b7000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\hcclsm.dll
    0x012e0000 - 0x01301000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\tptpConfig.dll
    0x01320000 - 0x01335000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\processControlUtil.dll
    0x01350000 - 0x01366000      C:\unzipped\agntctrl.win_ia32-TPTP-4.7.2\bin\tptpLogUtils.dll
    0x02900000 - 0x0291e000      C:\Users\hkhargharia\Downloads\agntctrl.win_ia32-TPTP-4.2.0.2\plugins\org.eclipse.tptp.javaprofiler\CGProf.dll
    0x028a0000 - 0x028ae000      C:\Users\hkhargharia\Downloads\agntctrl.win_ia32-TPTP-4.2.0.2\plugins\org.eclipse.tptp.javaprofiler\CGAdaptor.dll
    0x02e60000 - 0x02ec5000      C:\Users\hkhargharia\Downloads\agntctrl.win_ia32-TPTP-4.2.0.2\plugins\org.eclipse.tptp.javaprofiler\JIE.dll
    0x6d8a0000 - 0x6d8af000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\zip.dll
    0x6d6c0000 - 0x6d6d3000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\net.dll
    0x740b0000 - 0x740ec000      C:\Windows\system32\mswsock.dll
    0x72e00000 - 0x72e06000      C:\Windows\System32\wship6.dll
    0x73ea0000 - 0x73eb0000      C:\Windows\system32\NLAapi.dll
    0x73e50000 - 0x73e94000      C:\Windows\system32\DNSAPI.dll
    0x73e40000 - 0x73e48000      C:\Windows\System32\winrnr.dll
    0x73e30000 - 0x73e40000      C:\Windows\system32\napinsp.dll
    0x73e10000 - 0x73e22000      C:\Windows\system32\pnrpnsp.dll
    0x73c30000 - 0x73c4c000      C:\Windows\system32\IPHLPAPI.DLL
    0x73c20000 - 0x73c27000      C:\Windows\system32\WINNSI.DLL
    0x71ae0000 - 0x71b18000      C:\Windows\System32\fwpuclnt.dll
    0x73eb0000 - 0x73eb6000      C:\Windows\system32\rasadhlp.dll
    0x6d610000 - 0x6d619000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\management.dll
    0x740a0000 - 0x740a5000      C:\Windows\System32\wshtcpip.dll
    0x739e0000 - 0x739f6000      C:\Windows\system32\CRYPTSP.dll
    0x739a0000 - 0x739db000      C:\Windows\system32\rsaenh.dll
    0x73d50000 - 0x73d67000      C:\Windows\system32\USERENV.dll
    0x73d40000 - 0x73d4b000      C:\Windows\system32\profapi.dll
    0x73a50000 - 0x73a5d000      C:\Windows\system32\dhcpcsvc6.DLL
    0x73a30000 - 0x73a42000      C:\Windows\system32\dhcpcsvc.DLL
    0x6d6e0000 - 0x6d6e9000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\nio.dll
    0x6d0b0000 - 0x6d1fa000      C:\Program Files (x86)\Java\jdk1.6.0_18\jre\bin\awt.dll
    0x712f0000 - 0x71341000      C:\Windows\system32\WINSPOOL.DRV
    0x75450000 - 0x755ac000      C:\Windows\syswow64\ole32.dll
    0x710a0000 - 0x7123e000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7600.16661_none_420fe3fa2b8113bd\COMCTL32.dll
    0x75170000 - 0x751c7000      C:\Windows\syswow64\SHLWAPI.dll
    VM Arguments:
    jvm_args: -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+CMSIncrementalPacing -XX:CMSIncrementalDutyCycleMin=10 -XX:CMSIncrementalDutyCycle=50 -XX:ParallelGCThreads=3 -XX:+UseParNewGC -XX:MaxGCPauseMillis=2000 -XX:GCTimeRatio=10 -XX:+DisableExplicitGC -Dsun.rmi.dgc.client.gcInterval=1800000 -Dsun.rmi.dgc.server.gcInterval=1800000 -Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true -Dnet.sf.ehcache.skipUpdateCheck=true -Xss256k -Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m -Dremoting.bind_by_host=false -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8 -agentlib:JPIBootLoader=JPIAgent:server=enabled;CGProf -Dprogram.name=run.bat -Djava.endorsed.dirs=D:/JBOSS/jboss-eap-5.1/jboss-as\lib\endorsed
    java_command: org.jboss.Main -Dorg.apache.el.parser.COERCE_TO_ZERO=false -Dorg.apache.catalina.connector.Request.SESSION_ID_CHECK=false -Djboss.server.home.dir=D:/Local_Deployment/Èü1
    Íø"wport/WINdü1
    pport-profile/WINN5Support-profile -Djboss.server.name=domserver -Djboss.server.home.url=file:/D:/Local_Deployment/WINN5Support/WINN5Support-profile/WINN5Support-profile --host=localhost -Djboss.bind.address=0.0.0.0 -Dlog4j.configuration=file:D:/Local_Deployment/WINN5Support/WINN5Support-profile/WINN5Support-profile/conf/log4j.properties
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files (x86)\Java\jdk1.6.0_18
    CLASSPATH=C:\Program Files (x86)\Rational\ClearQuest\cqjni.jar
    USERNAME=hkhargharia
    LD_LIBRARY_PATH=;;;;;;;;;;;;;;;;C:\Users\hkhargharia\Downloads\agntctrl.win_em64t-TPTP-4.2.0\lib
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 2, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows 7 Build 7600
    CPU:total 4 (8 cores per cpu, 2 threads per core) family 6 model 37 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 4053388k(293900k free), swap 8104872k(2962556k free)
    vm_info: Java HotSpot(TM) Server VM (16.0-b13) for windows-x86 JRE (1.6.0_18-b07), built on Dec 17 2009 13:29:37 by "java_re" with MS VC++ 7.1 (VS2003)
    time: Thu Oct 11 11:42:43 2012
    elapsed time: 1944 seconds
    Edited by: 964644 on Oct 10, 2012 11:58 PM

    10.6.8 won't run on a PowerPC Mac. 
    10.6.8 also won't run the latest Java.  Here's what version of Java you can run:
    https://discussions.apple.com/docs/DOC-5532

  • Java Hot Spot crashes when trying to start a desktop swing app

    I am trying to start a desktop app and it crashes almost immediately
    The system is SUSE SLES11, jdk1.6.0_18 64bit
    Since I can run other java apps (Eclipse being one of them) there must be something specific about this app.
    Any suggestions?
    Thanx
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00007f42c8797c03, pid=20891, tid=139924794349904
    # JRE version: 6.0_18-b07
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (16.0-b13 mixed mode linux-amd64 )
    # Problematic frame:
    # C [libc.so.6+0x30c03] catgets+0x23
    # 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 (0x0000000040112800): JavaThread "main" [_thread_in_native, id=20892, stack(0x00007f42c7999000,0x00007f42c7a9a000)]
    Stack: [0x00007f42c7999000,0x00007f42c7a9a000], sp=0x00007f42c7a98308, free space=3fc0000000000000018k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libc.so.6+0x30c03] catgets+0x23
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.motif.MWindowPeer.pCreate(Lsun/awt/motif/MComponentPeer;Ljava/lang/String;)V+0
    j sun.awt.motif.MWindowPeer.create(Lsun/awt/motif/MComponentPeer;)V+12
    j sun.awt.motif.MComponentPeer.init(Ljava/awt/Component;)V+31
    j sun.awt.motif.MWindowPeer.init(Ljava/awt/Window;)V+102
    j sun.awt.motif.MFramePeer.<init>(Ljava/awt/Frame;)V+159
    j sun.awt.motif.MToolkit.createFrame(Ljava/awt/Frame;)Ljava/awt/peer/FramePeer;+5
    j java.awt.Frame.addNotify()V+20
    j java.awt.Window.pack()V+28
    j riskscape.tools.asset.modtool.AssetModificationTool.main([Ljava/lang/String;)V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00007f425842c000 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=20916, stack(0x00007f4250f24000,0x00007f4251025000)]
    0x00007f4258414800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=20915, stack(0x00007f4251025000,0x00007f4251126000)]
    0x00007f4258413800 JavaThread "AWT-Shutdown" [_thread_blocked, id=20914, stack(0x00007f4256bf6000,0x00007f4256cf7000)]
    0x00007f4258132800 JavaThread "AWT-Motif" daemon [_thread_blocked, id=20910, stack(0x00007f4256af5000,0x00007f4256bf6000)]
    0x00007f42580f0000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=20908, stack(0x00007f4257312000,0x00007f4257413000)]
    0x00007f4258001800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=20905, stack(0x00007f425d540000,0x00007f425d641000)]
    0x000000004019d000 JavaThread "CompilerThread1" daemon [_thread_blocked, id=20904, stack(0x00007f425d641000,0x00007f425d742000)]
    0x0000000040198000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=20903, stack(0x00007f425d742000,0x00007f425d843000)]
    0x0000000040196000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=20902, stack(0x00007f425d843000,0x00007f425d944000)]
    0x0000000040176000 JavaThread "Finalizer" daemon [_thread_blocked, id=20901, stack(0x00007f425d983000,0x00007f425da84000)]
    0x000000004016e800 JavaThread "Reference Handler" daemon [_thread_blocked, id=20900, stack(0x00007f425da84000,0x00007f425db85000)]
    =>0x0000000040112800 JavaThread "main" [_thread_in_native, id=20892, stack(0x00007f42c7999000,0x00007f42c7a9a000)]
    Other Threads:
    0x000000004016a000 VMThread [stack: 0x00007f425db85000,0x00007f425dc86000] [id=20899]
    0x00007f4258004000 WatcherThread [stack: 0x00007f425d43f000,0x00007f425d540000] [id=20906]
    VM state:not at safepoint (normal execution)
    Dynamic libraries:
    40000000-40009000 r-xp 00000000 ca:03 462743 /usr/java/jdk1.6.0_18/bin/java
    40108000-4010a000 rwxp 00008000 ca:03 462743 /usr/java/jdk1.6.0_18/bin/java
    4010a000-40aa4000 rwxp 4010a000 00:00 0 [heap]
    7f4257491000-7f4257590000 ---p 0007e000 ca:03 561199 /usr/java/jdk1.6.0_18/jre/lib/amd64/libfontmanager.so
    7f4257590000-7f42575a6000 rwxp 0007d000 ca:03 561199 /usr/java/jdk1.6.0_18/jre/lib/amd64/libfontmanager.so
    7f42575a6000-7f42575b7000 rwxp 7f42575a6000 00:00 0
    7f42575b7000-7f42575d2000 r-xp 00000000 ca:03 346506 /usr/lib64/libxcb.so.1.0.0
    7f42575d2000-7f42577d1000 ---p 0001b000 ca:03 346506 /usr/lib64/libxcb.so.1.0.0
    7f42577d1000-7f42577d2000 r-xp 0001a000 ca:03 346506 /usr/lib64/libxcb.so.1.0.0
    7f42577d2000-7f42577d3000 rwxp 0001b000 ca:03 346506 /usr/lib64/libxcb.so.1.0.0
    7f42577d3000-7f42577d4000 r-xp 00000000 ca:03 346496 /usr/lib64/libxcb-xlib.so.0.0.0
    7f42577d4000-7f42579d3000 ---p 00001000 ca:03 346496 /usr/lib64/libxcb-xlib.so.0.0.0
    7f42579d3000-7f42579d4000 r-xp 00000000 ca:03 346496 /usr/lib64/libxcb-xlib.so.0.0.0
    7f42579d4000-7f42579d5000 rwxp 00001000 ca:03 346496 /usr/lib64/libxcb-xlib.so.0.0.0
    7f42579d5000-7f42579ec000 r-xp 00000000 ca:03 346273 /usr/lib64/libICE.so.6.3.0
    7f42579ec000-7f4257bec000 ---p 00017000 ca:03 346273 /usr/lib64/libICE.so.6.3.0
    7f4257bec000-7f4257bed000 r-xp 00017000 ca:03 346273 /usr/lib64/libICE.so.6.3.0
    7f4257bed000-7f4257bee000 rwxp 00018000 ca:03 346273 /usr/lib64/libICE.so.6.3.0
    7f4257bee000-7f4257bf2000 rwxp 7f4257bee000 00:00 0
    7f4257bf2000-7f4257bf6000 r-xp 00000000 ca:03 229486 /lib64/libuuid.so.1.2
    7f4257bf6000-7f4257df5000 ---p 00004000 ca:03 229486 /lib64/libuuid.so.1.2
    7f4257df5000-7f4257df6000 r-xp 00003000 ca:03 229486 /lib64/libuuid.so.1.2
    7f4257df6000-7f4257df7000 rwxp 00004000 ca:03 229486 /lib64/libuuid.so.1.2
    7f4257df7000-7f4257dff000 r-xp 00000000 ca:03 346874 /usr/lib64/libSM.so.6.0.0
    7f4257dff000-7f4257ffe000 ---p 00008000 ca:03 346874 /usr/lib64/libSM.so.6.0.0
    7f4257ffe000-7f4257fff000 r-xp 00007000 ca:03 346874 /usr/lib64/libSM.so.6.0.0
    7f4257fff000-7f4258000000 rwxp 00008000 ca:03 346874 /usr/lib64/libSM.so.6.0.0
    7f4258000000-7f4258691000 rwxp 7f4258000000 00:00 0
    7f4258691000-7f425c000000 ---p 7f4258691000 00:00 0
    7f425c006000-7f425c034000 r-xs 00000000 ca:02 16974 /var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-x86-64.cache-2
    7f425c034000-7f425c035000 r-xp 00000000 ca:03 442807 /usr/lib/locale/en_US.utf8/LC_NUMERIC
    7f425c035000-7f425c036000 r-xp 00000000 ca:03 436723 /usr/lib/locale/en_US.utf8/LC_TIME
    7f425c036000-7f425c037000 r-xp 00000000 ca:03 436710 /usr/lib/locale/en_US.utf8/LC_MONETARY
    7f425c037000-7f425c038000 r-xp 00000000 ca:03 442801 /usr/lib/locale/en_US.utf8/LC_MESSAGES/SYS_LC_MESSAGES
    7f425c038000-7f425c039000 r-xp 00000000 ca:03 442774 /usr/lib/locale/en_US.utf8/LC_PAPER
    7f425c039000-7f425c03a000 r-xp 00000000 ca:03 442784 /usr/lib/locale/en_US.utf8/LC_NAME
    7f425c03a000-7f425c03b000 r-xp 00000000 ca:03 434252 /usr/lib/locale/en_US.utf8/LC_ADDRESS
    7f425c03b000-7f425c03c000 r-xp 00000000 ca:03 442761 /usr/lib/locale/en_US.utf8/LC_TELEPHONE
    7f425c03c000-7f425c03f000 r-xs 000cb000 ca:03 583167 /usr/java/jdk1.6.0_18/jre/lib/ext/localedata.jar
    7f425c03f000-7f425c046000 r-xs 00111000 ca:03 561268 /usr/java/jdk1.6.0_18/jre/lib/resources.jar
    7f425c046000-7f425c04d000 r-xs 00050000 ca:03 27461 /home/turekg/dev/java/workspace/riskscapej/lib/log4j-1.2.14.jar
    7f425c04d000-7f425c04f000 r-xs 0000a000 ca:03 27432 /home/turekg/dev/java/workspace/riskscapej/lib/jumbletree-uibits.jar
    7f425c04f000-7f425c053000 r-xs 00035000 ca:03 27972 /home/turekg/dev/java/workspace/riskscapej/lib/gol-spatial.jar
    7f425c053000-7f425c067000 r-xs 00127000 ca:03 27527 /home/turekg/dev/java/workspace/riskscapej/lib/ant.jar
    7f425c067000-7f425c06a000 r-xs 0001b000 ca:03 10131 /home/turekg/dev/apps/eclipse/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
    7f425c06a000-7f425c07e000 r-xs 001bd000 ca:03 27528 /home/turekg/dev/java/workspace/riskscapej/lib/jai_core.jar
    7f425c07e000-7f425c080000 r-xp 00000000 ca:03 346271 /usr/lib64/libXau.so.6.0.0
    7f425c080000-7f425c280000 ---p 00002000 ca:03 346271 /usr/lib64/libXau.so.6.0.0
    7f425c280000-7f425c281000 r-xp 00002000 ca:03 346271 /usr/lib64/libXau.so.6.0.0
    7f425c281000-7f425c282000 rwxp 00003000 ca:03 346271 /usr/lib64/libXau.so.6.0.0
    7f425c282000-7f425c28b000 r-xp 00000000 ca:03 32968 /usr/lib64/libXi.so.6.0.0
    7f425c28b000-7f425c48a000 ---p 00009000 ca:03 32968 /usr/lib64/libXi.so.6.0.0
    7f425c48a000-7f425c48b000 r-xp 00008000 ca:03 32968 /usr/lib64/libXi.so.6.0.0
    7f425c48b000-7f425c48c000 rwxp 00009000 ca:03 32968 /usr/lib64/libXi.so.6.0.0
    7f425c48c000-7f425c5c3000 r-xp 00000000 ca:03 347532 /usr/lib64/libX11.so.6.2.0
    7f425c5c3000-7f425c7c3000 ---p 00137000 ca:03 347532 /usr/lib64/libX11.so.6.2.0
    7f425c7c3000-7f425c7c4000 r-xp 00137000 ca:03 347532 /usr/lib64/libX11.so.6.2.0
    7f425c7c4000-7f425c7c9000 rwxp 00138000 ca:03 347532 /usr/lib64/libX11.so.6.2.0
    7f425c7c9000-7f425c828000 r-xp 00000000 ca:03 32780 /usr/lib64/libXt.so.6.0.0
    7f425c828000-7f425ca28000 ---p 0005f000 ca:03 32780 /usr/lib64/libXt.so.6.0.0
    7f425ca28000-7f425ca29000 r-xp 0005f000 ca:03 32780 /usr/lib64/libXt.so.6.0.0
    7f425ca29000-7f425ca2e000 rwxp 00060000 ca:03 32780 /usr/lib64/libXt.so.6.0.0
    7f425ca2e000-7f425ca2f000 rwxp 7f425ca2e000 00:00 0
    7f425ca2f000-7f425ca40000 r-xp 00000000 ca:03 32786 /usr/lib64/libXext.so.6.4.0
    7f425ca40000-7f425cc3f000 ---p 00011000 ca:03 32786 /usr/lib64/libXext.so.6.4.0
    7f425cc3f000-7f425cc40000 r-xp 00010000 ca:03 32786 /usr/lib64/libXext.so.6.4.0
    7f425cc40000-7f425cc41000 rwxp 00011000 ca:03 32786 /usr/lib64/libXext.so.6.4.0
    7f425cc41000-7f425cc46000 r-xp 00000000 ca:03 32978 /usr/lib64/libXtst.so.6.1.0
    7f425cc46000-7f425ce46000 ---p 00005000 ca:03 32978 /usr/lib64/libXtst.so.6.1.0
    7f425ce46000-7f425ce47000 r-xp 00005000 ca:03 32978 /usr/lib64/libXtst.so.6.1.0
    7f425ce47000-7f425ce48000 rwxp 00006000 ca:03 32978 /usr/lib64/libXtst.so.6.1.0
    7f425ce48000-7f425ce49000 r-xp 00000000 ca:03 444731 /usr/lib/locale/en_US.utf8/LC_MEASUREMENT
    7f425ce49000-7f425ce4d000 r-xs 0003c000 ca:03 28170 /home/turekg/dev/java/workspace/riskscapej/lib/jai_codec.jar
    7f425ce4d000-7f425ce4f000 r-xs 00002000 ca:03 27526 /home/turekg/dev/java/workspace/riskscapej/lib/jumbletree-utils.jar
    7f425ce4f000-7f425ce56000 r-xs 00054000 ca:03 204905 /home/turekg/dev/java/workspace/riskscapej/testlib/abbot.jar
    7f425ce56000-7f425ce5a000 r-xs 00023000 ca:03 27825 /home/turekg/dev/java/workspace/riskscapej/lib/PBTransform.jar
    7f425ce5a000-7f425ce74000 r-xs 00125000 ca:03 28031 /home/turekg/dev/java/workspace/riskscapej/lib/jide-oss-2.7.3.jar
    7f425ce74000-7f425ce7d000 r-xs 0007a000 ca:03 26853 /home/turekg/dev/java/workspace/riskscapej/lib/jh.jar
    7f425ce7d000-7f425d0e4000 r-xp 00000000 ca:03 561231 /usr/java/jdk1.6.0_18/jre/lib/amd64/motif21/libmawt.so
    7f425d0e4000-7f425d1e5000 ---p 00267000 ca:03 561231 /usr/java/jdk1.6.0_18/jre/lib/amd64/motif21/libmawt.so
    7f425d1e5000-7f425d239000 rwxp 00268000 ca:03 561231 /usr/java/jdk1.6.0_18/jre/lib/amd64/motif21/libmawt.so
    7f425d239000-7f425d23c000 rwxp 7f425d239000 00:00 0
    7f425d23c000-7f425d2ce000 r-xp 00000000 ca:03 561194 /usr/java/jdk1.6.0_18/jre/lib/amd64/libawt.so
    7f425d2ce000-7f425d3cd000 ---p 00092000 ca:03 561194 /usr/java/jdk1.6.0_18/jre/lib/amd64/libawt.so
    7f425d3cd000-7f425d3e6000 rwxp 00091000 ca:03 561194 /usr/java/jdk1.6.0_18/jre/lib/amd64/libawt.so
    7f425d3e6000-7f425d40b000 rwxp 7f425d3e6000 00:00 0
    7f425d40b000-7f425d424000 r-xs 0012e000 ca:03 28072 /home/turekg/dev/java/workspace/riskscapej/lib/swingx.jar
    7f425d424000-7f425d432000 r-xs 00171000 ca:03 28030 /home/turekg/dev/java/workspace/riskscapej/lib/ecj.jar
    7f425d432000-7f425d43f000 r-xs 000fa000 ca:03 28168 /home/turekg/dev/java/workspace/riskscapej/lib/jfreechart-1.0.1.jar
    7f425d43f000-7f425d440000 ---p 7f425d43f000 00:00 0
    7f425d440000-7f425d540000 rwxp 7f425d440000 00:00 0
    7f425d540000-7f425d543000 ---p 7f425d540000 00:00 0
    7f425d543000-7f425d641000 rwxp 7f425d543000 00:00 0
    7f425d641000-7f425d644000 ---p 7f425d641000 00:00 0
    7f425d644000-7f425d742000 rwxp 7f425d644000 00:00 0
    7f425d742000-7f425d745000 ---p 7f425d742000 00:00 0
    7f425d745000-7f425d843000 rwxp 7f425d745000 00:00 0
    7f425d843000-7f425d846000 ---p 7f425d843000 00:00 0
    7f425d846000-7f425d944000 rwxp 7f425d846000 00:00 0
    7f425d944000-7f425d983000 r-xp 00000000 ca:03 442819 /usr/lib/locale/en_US.utf8/LC_CTYPE
    7f425d983000-7f425d986000 ---p 7f425d983000 00:00 0
    7f425d986000-7f425da84000 rwxp 7f425d986000 00:00 0
    7f425da84000-7f425da87000 ---p 7f425da84000 00:00 0
    7f425da87000-7f425db85000 rwxp 7f425da87000 00:00 0
    7f425db85000-7f425db86000 ---p 7f425db85000 00:00 0
    7f425db86000-7f425df89000 rwxp 7f425db86000 00:00 0
    7f425df89000-7f425e11f000 r-xs 02fc6000 ca:03 561271 /usr/java/jdk1.6.0_18/jre/lib/rt.jar
    7f425e11f000-7f425e120000 ---p 7f425e11f000 00:00 0
    7f425e120000-7f425e220000 rwxp 7f425e120000 00:00 0
    7f425e220000-7f425e221000 ---p 7f425e220000 00:00 0
    7f425e221000-7f425e342000 rwxp 7f425e221000 00:00 0
    7f425e342000-7f425e523000 rwxp 7f425e342000 00:00 0
    7f425e523000-7f425e52e000 rwxp 7f425e523000 00:00 0
    7f425e52e000-7f425e54d000 rwxp 7f425e52e000 00:00 0
    7f425e54d000-7f425e56e000 rwxp 7f425e54d000 00:00 0
    7f425e56e000-7f425e74e000 rwxp 7f425e56e000 00:00 0
    7f425e74e000-7f425e76b000 rwxp 7f425e74e000 00:00 0
    7f425e76b000-7f425e84f000 rwxp 7f425e76b000 00:00 0
    7f425e84f000-7f425fd40000 rwxp 7f425e84f000 00:00 0
    7f425fd40000-7f4263c50000 rwxp 7f425fd40000 00:00 0
    7f4263c50000-7f4267c80000 rwxp 7f4263c50000 00:00 0
    7f4267c80000-7f42a3f00000 rwxp 7f4267c80000 00:00 0
    7f42a3f00000-7f42a7720000 rwxp 7f42a3f00000 00:00 0
    7f42a7720000-7f42c4050000 rwxp 7f42a7720000 00:00 0
    7f42c4050000-7f42c4051000 r-xp 00000000 ca:03 436709 /usr/lib/locale/en_US.utf8/LC_IDENTIFICATION
    7f42c4051000-7f42c4053000 r-xs 0000a000 ca:03 28169 /home/turekg/dev/java/workspace/riskscapej/lib/jxlayer.jar
    7f42c4053000-7f42c4056000 r-xs 00013000 ca:03 561257 /usr/java/jdk1.6.0_18/jre/lib/jce.jar
    7f42c4056000-7f42c405b000 r-xs 00038000 ca:03 28082 /home/turekg/dev/java/workspace/riskscapej/lib/jna-examples.jar
    7f42c405b000-7f42c4065000 rwxp 7f42c405b000 00:00 0
    7f42c4065000-7f42c411b000 rwxp 7f42c4065000 00:00 0
    7f42c411b000-7f42c438b000 rwxp 7f42c411b000 00:00 0
    7f42c438b000-7f42c711b000 rwxp 7f42c438b000 00:00 0
    7f42c711b000-7f42c7129000 r-xp 00000000 ca:03 561229 /usr/java/jdk1.6.0_18/jre/lib/amd64/libzip.so
    7f42c7129000-7f42c722b000 ---p 0000e000 ca:03 561229 /usr/java/jdk1.6.0_18/jre/lib/amd64/libzip.so
    7f42c722b000-7f42c722e000 rwxp 00010000 ca:03 561229 /usr/java/jdk1.6.0_18/jre/lib/amd64/libzip.so
    7f42c722e000-7f42c722f000 rwxp 7f42c722e000 00:00 0
    7f42c722f000-7f42c7236000 r-xp 00000000 ca:03 581681 /usr/java/jdk1.6.0_18/jre/lib/amd64/native_threads/libhpi.so
    7f42c7236000-7f42c7337000 ---p 00007000 ca:03 581681 /usr/java/jdk1.6.0_18/jre/lib/amd64/native_threads/libhpi.so
    7f42c7337000-7f42c7339000 rwxp 00008000 ca:03 581681 /usr/java/jdk1.6.0_18/jre/lib/amd64/native_threads/libhpi.so
    7f42c7339000-7f42c733a000 rwxp 7f42c7339000 00:00 0
    7f42c733a000-7f42c734f000 r-xp 00000000 ca:03 229395 /lib64/libnsl-2.9.so
    7f42c734f000-7f42c754e000 ---p 00015000 ca:03 229395 /lib64/libnsl-2.9.so
    7f42c754e000-7f42c754f000 r-xp 00014000 ca:03 229395 /lib64/libnsl-2.9.so
    7f42c754f000-7f42c7550000 rwxp 00015000 ca:03 229395 /lib64/libnsl-2.9.so
    7f42c7550000-7f42c7552000 rwxp 7f42c7550000 00:00 0
    7f42c7552000-7f42c757b000 r-xp 00000000 ca:03 561207 /usr/java/jdk1.6.0_18/jre/lib/amd64/libjava.so
    7f42c757b000-7f42c767a000 ---p 00029000 ca:03 561207 /usr/java/jdk1.6.0_18/jre/lib/amd64/libjava.so
    7f42c767a000-7f42c7681000 rwxp 00028000 ca:03 561207 /usr/java/jdk1.6.0_18/jre/lib/amd64/libjava.so
    7f42c7681000-7f42c768e000 r-xp 00000000 ca:03 561228 /usr/java/jdk1.6.0_18/jre/lib/amd64/libverify.so
    7f42c768e000-7f42c778d000 ---p 0000d000 ca:03 561228 /usr/java/jdk1.6.0_18/jre/lib/amd64/libverify.so
    7f42c778d000-7f42c7790000 rwxp 0000c000 ca:03 561228 /usr/java/jdk1.6.0_18/jre/lib/amd64/libverify.so
    7f42c7790000-7f42c7798000 r-xp 00000000 ca:03 229414 /lib64/librt-2.9.so
    7f42c7798000-7f42c7997000 ---p 00008000 ca:03 229414 /lib64/librt-2.9.so
    7f42c7997000-7f42c7998000 r-xp 00007000 ca:03 229414 /lib64/librt-2.9.so
    7f42c7998000-7f42c7999000 rwxp 00008000 ca:03 229414 /lib64/librt-2.9.so
    7f42c7999000-7f42c799c000 ---p 7f42c7999000 00:00 0
    7f42c799c000-7f42c7a9a000 rwxp 7f42c799c000 00:00 0
    7f42c7a9a000-7f42c7aef000 r-xp 00000000 ca:03 229392 /lib64/libm-2.9.so
    7f42c7aef000-7f42c7cee000 ---p 00055000 ca:03 229392 /lib64/libm-2.9.so
    7f42c7cee000-7f42c7cef000 r-xp 00054000 ca:03 229392 /lib64/libm-2.9.so
    7f42c7cef000-7f42c7cf0000 rwxp 00055000 ca:03 229392 /lib64/libm-2.9.so
    7f42c7cf0000-7f42c84a4000 r-xp 00000000 ca:03 581685 /usr/java/jdk1.6.0_18/jre/lib/amd64/server/libjvm.so
    7f42c84a4000-7f42c85a4000 ---p 007b4000 ca:03 581685 /usr/java/jdk1.6.0_18/jre/lib/amd64/server/libjvm.so
    7f42c85a4000-7f42c872e000 rwxp 007b4000 ca:03 581685 /usr/java/jdk1.6.0_18/jre/lib/amd64/server/libjvm.so
    7f42c872e000-7f42c8767000 rwxp 7f42c872e000 00:00 0
    7f42c8767000-7f42c88b6000 r-xp 00000000 ca:03 229384 /lib64/libc-2.9.so
    7f42c88b6000-7f42c8ab6000 ---p 0014f000 ca:03 229384 /lib64/libc-2.9.so
    7f42c8ab6000-7f42c8aba000 r-xp 0014f000 ca:03 229384 /lib64/libc-2.9.so
    7f42c8aba000-7f42c8abb000 rwxp 00153000 ca:03 229384 /lib64/libc-2.9.so
    7f42c8abb000-7f42c8ac0000 rwxp 7f42c8abb000 00:00 0
    7f42c8ac0000-7f42c8ac2000 r-xp 00000000 ca:03 229390 /lib64/libdl-2.9.so
    7f42c8ac2000-7f42c8cc2000 ---p 00002000 ca:03 229390 /lib64/libdl-2.9.so
    7f42c8cc2000-7f42c8cc3000 r-xp 00002000 ca:03 229390 /lib64/libdl-2.9.so
    7f42c8cc3000-7f42c8cc4000 rwxp 00003000 ca:03 229390 /lib64/libdl-2.9.so
    7f42c8cc4000-7f42c8cda000 r-xp 00000000 ca:03 229410 /lib64/libpthread-2.9.so
    7f42c8cda000-7f42c8eda000 ---p 00016000 ca:03 229410 /lib64/libpthread-2.9.so
    7f42c8eda000-7f42c8edb000 r-xp 00016000 ca:03 229410 /lib64/libpthread-2.9.so
    7f42c8edb000-7f42c8edc000 rwxp 00017000 ca:03 229410 /lib64/libpthread-2.9.so
    7f42c8edc000-7f42c8ee0000 rwxp 7f42c8edc000 00:00 0
    7f42c8ee0000-7f42c8efe000 r-xp 00000000 ca:03 229707 /lib64/ld-2.9.so
    7f42c8efe000-7f42c8f00000 r-xs 00011000 ca:03 28074 /home/turekg/dev/java/workspace/riskscapej/lib/servlet.jar
    7f42c8f00000-7f42c8f03000 r-xs 00096000 ca:03 28029 /home/turekg/dev/java/workspace/riskscapej/lib/jna.jar
    7f42c8f03000-7f42c8f08000 r-xs 00043000 ca:03 28176 /home/turekg/dev/java/workspace/riskscapej/lib/jcommon-1.0.0.jar
    7f42c8f08000-7f42c8f0b000 r-xs 0001c000 ca:03 28172 /home/turekg/dev/java/workspace/riskscapej/lib/jcalendar-1.3.2.jar
    7f42c8f0b000-7f42c8f0c000 r-xs 00001000 ca:03 27480 /home/turekg/dev/java/workspace/riskscapej/lib/gol-imaging.jar
    7f42c8f0c000-7f42c8f1e000 r-xs 00136000 ca:03 27530 /home/turekg/dev/java/workspace/riskscapej/lib/itext-1.4.3.jar
    7f42c8f1e000-7f42c8f1f000 r-xs 00001000 ca:03 27529 /home/turekg/dev/java/workspace/riskscapej/lib/gol-math.jar
    7f42c8f1f000-7f42c8f22000 r-xs 0001b000 ca:03 27834 /home/turekg/dev/java/workspace/riskscapej/lib/gol-common.jar
    7f42c8f22000-7f42c8f29000 r-xs 00000000 ca:03 396027 /usr/lib64/gconv/gconv-modules.cache
    7f42c8f29000-7f42c8f84000 rwxp 7f42c8f29000 00:00 0
    7f42c8f84000-7f42c8fb9000 r-xs 00000000 ca:02 123082 /var/run/nscd/passwd
    7f42c8fb9000-7f42c8fbb000 rwxp 7f42c8fb9000 00:00 0
    7f42c8fbb000-7f42c8fc2000 r-xp 00000000 ca:03 561190 /usr/java/jdk1.6.0_18/jre/lib/amd64/jli/libjli.so
    7f42c8fc2000-7f42c90c3000 ---p 00007000 ca:03 561190 /usr/java/jdk1.6.0_18/jre/lib/amd64/jli/libjli.so
    7f42c90c3000-7f42c90c5000 rwxp 00008000 ca:03 561190 /usr/java/jdk1.6.0_18/jre/lib/amd64/jli/libjli.so
    7f42c90c5000-7f42c90c6000 rwxp 7f42c90c5000 00:00 0
    7f42c90c6000-7f42c90c7000 r-xs 0000a000 ca:03 28035 /home/turekg/dev/java/workspace/riskscapej/lib/asm-3.1.jar
    7f42c90c7000-7f42c90d2000 rwxp 7f42c90c7000 00:00 0
    7f42c90d2000-7f42c90f1000 rwxp 7f42c90d2000 00:00 0
    7f42c90f1000-7f42c90f9000 rwxs 00000000 ca:03 397838 /tmp/hsperfdata_turekg/20891
    7f42c90f9000-7f42c90fa000 rwxp 7f42c90f9000 00:00 0
    7f42c90fa000-7f42c90fb000 r-xp 7f42c90fa000 00:00 0
    7f42c90fb000-7f42c90fd000 rwxp 7f42c90fb000 00:00 0
    7f42c90fd000-7f42c90fe000 r-xp 0001d000 ca:03 229707 /lib64/ld-2.9.so
    7f42c90fe000-7f42c90ff000 rwxp 0001e000 ca:03 229707 /lib64/ld-2.9.so
    7fff87733000-7fff8774a000 rwxp 7ffffffe7000 00:00 0 [stack]
    7fff877ff000-7fff87800000 r-xp 7fff877ff000 00:00 0 [vdso]
    ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
    VM Arguments:
    jvm_args: -Dfile.encoding=UTF-8
    java_command: riskscape.tools.asset.modtool.AssetModificationTool
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/java/default
    JRE_HOME=/usr/lib64/jvm/java/jre
    PATH=/data/local/arcgis/arcreader10.0/vmw/mw/bin:/data/local/arcgis/arcreader10.0/vmw/mw/bin-i86_linux:/data/local/arcgis/arcreader10.0/vmw/mw/bin-linux_optimized:.:/usr/java/default/bin:/bin:/usr/local/bin:/home/turekg/local/bin:/home/turekg/dev/java/riskscape/bin:/home/turekg/dev/java/inhouse/bin:/home/turekg/dev/apps/selenium/current/selenium-server-1.0.1:/opt/jboss/current/bin:/opt/local/bin:/home/turekg/dev/apps/eclipse/eclipse:/home/turekg/local/aej91/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/bin/X11:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin:/data/local/arcgis/arcreader10.0/bin:/usr/bin/X11
    USERNAME=turekg
    LD_LIBRARY_PATH=/usr/java/jdk1.6.0_18/jre/lib/amd64/server:/usr/java/jdk1.6.0_18/jre/lib/amd64:/usr/java/jdk1.6.0_18/jre/../lib/amd64:/usr/java/jdk1.6.0_22/jre/lib/amd64/server:/usr/java/jdk1.6.0_22/jre/lib/amd64:/usr/java/jdk1.6.0_22/jre/../lib/amd64:/data/local/arcgis/arcreader10.0/vmw/mw/lib-linux:/data/local/arcgis/arcreader10.0/vmw/mw/lib-linux_optimized:/data/local/arcgis/arcreader10.0/vmw/mw/../misc/linux/gcc/fixed3/lib:/data/local/arcgis/arcreader10.0/bin:/data/local/arcgis/arcreader10.0/com:/home/turekg/.esriprogramfiles/GabySLES11test/CommonFiles/ArcGIS/bin:/usr/local/lib:.::/usr/X11R6/lib:/usr/lib64/xulrunner-1.9.2.8
    SHELL=/bin/tcsh
    DISPLAY=127.0.0.1:2.0
    HOSTTYPE=x86_64
    OSTYPE=linux
    MACHTYPE=x86_64-suse-linux
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x70f1a0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x70f1a0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x5d7f70], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x5d7f70], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGXFSZ: [libjvm.so+0x5d7f70], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x5d7f70], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x5da790], sa_mask[0]=0x00000004, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x5da4e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x5da4e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x5da4e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x5da4e0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:SUSE Linux Enterprise Server 11 (x86_64)
    VERSION = 11
    PATCHLEVEL = 0
    uname:Linux 2.6.27.54-0.2-xen #1 SMP 2010-10-19 18:40:07 +0200 x86_64
    libc:glibc 2.9 NPTL 2.9
    rlimit: STACK 8192k, CORE 0k, NPROC 47947, NOFILE 8192, AS 5878560k
    load average:0.27 0.63 0.66
    CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 15 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 6303952k(3889780k free), swap 1044216k(1044216k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (16.0-b13) for linux-amd64 JRE (1.6.0_18-b07), built on Dec 17 2009 13:42:22 by "java_re" with gcc 3.2.2 (SuSE Linux)
    time: Thu Nov 4 16:38:13 2010
    elapsed time: 1 seconds

    I suggest you read one of my replies about SIGSEGV posted in this forum.
    Other than that I would suspect it would at least be easy to determine where it crashed.

  • Java threads on machines with hundreds of cores

    I don't know if this is the right forum, but I try anyway.
    My problem is with java on machines with many cores.
    I have some large shared memory machines with 500 cores.
    When a user run java programs on these machines java starts 300+ threads which to me seems way too much for the application as the same application runs faster on systems with less cores and memory and without creating 300+ threads.
    I have found information about how to limit memory usage, but I have not been able to find any information about how to limit the number of threads java creates nor what criteria java uses to determine how many threads should be created.
    In this context threads are the tasks reported under /proc/<PID of java binary>/task on a Linux system.
    Thanks
    John

    Hi,
    Thanks for the reply.
    We did some more testing and found that java on startup looks in /sys/devices/system/cpu/, which holds information about the 512 CPU's on the system.
    We then tried to lower number of allowed processes using ulimit -u 20 and got this error when running the program:
    # A fatal error has been detected by the Java Runtime Environment:
    # java.lang.OutOfMemoryError: Cannot create GC thread. Out of system resources.
    # Internal Error (gcTaskThread.cpp:38), pid=303212, tid=140353923254032
    # Error: Cannot create GC thread. Out of system resources.
    # JRE version: 6.0_21-b06
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (17.0-b16 mixed mode linux-amd64 )
    # An error report file with more information is saved as:
    # /net/panfsdb0/panfsvol1/simon/projects/cge/test/hs_err_pid303212.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Aborted
    Now a Google search for gcTaskThread revealed that it is the Garbage Collector that creates the many threads. Google also told us that the number of GC threads can be controlled by the JVM option -XX:ParallelGCThreads=<number_of_GC_threads> . Specifying 8 GC threads the program now runs with 18 threads. Specifying 4 GC threads the program runs with 14 threads.
    So it seems like the JVM by default creates as many Garbage Collectors threads as there are CPU's in the system.
    This is a very bad practice as on such systems where programs are run within cpusets with just a small subset of the system wide CPU's.
    Instead of searching /sys/devices/system/cpu/ for number of system wide CPU's JVM should read /dev/cpuset/<cpuset id>/cpus to see how many CPU's are actually available for the job.
    Thanks
    John
    Edited by: 886656 on Sep 22, 2011 2:13 AM

  • Bug with Show Whitespace and tab and space characters in SQL comments

    If Preferences > Code Editor > Display > Show Whitespace Characters is checked, and I type the following in SQL Worksheet:
    --A[tab]B[space]C
    It renders with two spaces between B and C. The first one is a blank space without the light dot character used to signify a space character, and the second space is filled with the dot character. The caret is then blinking before the C instead of after it:
    --A[tab]B[space][dot][|]C
    Further selection actions and editing in the region produce "corrupted" results. I've tried changing fonts, but there was no change to the behavior. Multiple tabs before the B produce multiple blank spaces immediately after it, and when placed at the end of the line the caret is then shown another space to the left of the C:
    --A[tab][tab]B[space][space][|][dot]C
    If I turn off Show Whitespace Characters the rendering immediately corrects, and caret placement, selection action, and editing behaviors all work as expected.
    This is observed on OS X with both the Mac OS X and Oracle/Fusion Blue look and feels.
    Ian
    About
    Oracle SQL Developer 3.0.04
    Version 3.0.04
    Build MAIN-04.34
    Copyright © 2005, 2011 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.4.37.59.31
    Product ID: oracle.sqldeveloper
    Product Version: 11.1.2.04.34
    Version
    Component     Version
    =========     =======
    Java(TM) Platform     1.6.0_24
    Oracle IDE     3.0.04.34
    Versioning Support     3.0.04.34
    Properties
    Name     Value
    ====     =====
    apple.awt.graphics.UseOpenGL     false
    apple.awt.graphics.UseQuartz     false
    apple.laf.useScreenMenuBar     true
    awt.nativeDoubleBuffering     true
    awt.toolkit     apple.awt.CToolkit
    class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level     CONFIG
    class.transfer     delegate
    com.apple.macos.smallTabs     true
    com.apple.mrj.application.apple.menu.about.name     SQL_Developer
    com.apple.mrj.application.growbox.intrudes     false
    file.encoding     MacRoman
    file.encoding.pkg     sun.io
    file.separator     /
    ftp.nonProxyHosts     local|*.local|169.254/16|*.169.254/16
    gopherProxySet     false
    ice.browser.forcegc     false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.AssertTracingDisabled     true
    ide.bootstrap.start     1309201485440911000
    ide.build     MAIN-04.34
    ide.conf     /Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper/sqldeveloper/bin/sqldeveloper.conf
    ide.config_pathname     /Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper/sqldeveloper/bin/sqldeveloper.conf
    ide.debugbuild     false
    ide.devbuild     false
    ide.extension.search.path     sqldeveloper/extensions:jdev/extensions:ide/extensions
    ide.firstrun     true
    ide.java.minversion     1.6.0_04
    ide.main.class     oracle.ide.boot.IdeLauncher
    ide.patches.dir     ide/lib/patches
    ide.pref.dir     /Users/ibrandt/.sqldeveloper
    ide.product     oracle.sqldeveloper
    ide.splash.screen     splash.gif
    ide.startingcwd     "/Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper/sqldeveloper/bin"
    ide.user.dir     /Users/ibrandt/.sqldeveloper
    ide.user.dir.var     IDE_USER_DIR
    ide.vcs.noapplications     true
    ide.work.dir     /Users/ibrandt/sqldeveloper
    ilog.propagatesPropertyEditors     false
    java.awt.graphicsenv     apple.awt.CGraphicsEnvironment
    java.awt.printerjob     apple.awt.CPrinterJob
    java.class.path     ../../ide/lib/ide-boot.jar
    java.class.version     50.0
    java.endorsed.dirs     /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed
    java.ext.dirs     /Library/Java/Extensions:/System/Library/Java/Extensions:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/ext
    java.home     /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
    java.io.tmpdir     /var/folders/rq/rqQtue9lEpGAwCKh2hL8MU+++TM/-Tmp-/
    java.library.path     .:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.protocol.handler.pkgs     oracle.jdevimpl.handler
    java.runtime.name     Java(TM) SE Runtime Environment
    java.runtime.version     1.6.0_24-b07-334-10M3326
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.6
    java.util.logging.config.file     logging.conf
    java.vendor     Apple Inc.
    java.vendor.url     http://www.apple.com/
    java.vendor.url.bug     http://bugreport.apple.com/
    java.version     1.6.0_24
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Apple Inc.
    java.vm.version     19.1-b02-334
    jdbc.library     /Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper/jdbc/lib/ojdbc6.jar
    line.separator     \n
    log.file.name     /Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper/sqldeveloper/extensions/oracle.datamodeler/log/datamodeler.log
    mrj.build     10M3326
    mrj.version     1060.1.6.0_24-334
    oracle.home     /Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper
    oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG     true
    oracle.jdbc.mapDateToTimestamp     false
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    orai18n.library     /Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper/jlib/orai18n.jar
    os.arch     x86_64
    os.name     Mac OS X
    os.version     10.6.8
    path.separator     :
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    socksNonProxyHosts     local|*.local|169.254/16|*.169.254/16
    sqldev.debug     false
    sun.arch.data.model     64
    sun.awt.exception.handler     apple.awt.CToolkit$EventQueueExceptionHandler
    sun.boot.class.path     ../../rdbms/jlib/ojdi.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:
    /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
    sun.boot.library.path     /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries
    sun.cpu.endian     little
    sun.cpu.isalist     
    sun.io.unicode.encoding     UnicodeLittle
    sun.java.launcher     SUN_STANDARD
    sun.java2d.ddoffscreen     false
    sun.jnu.encoding     MacRoman
    sun.management.compiler     HotSpot 64-Bit Server Compiler
    sun.os.patch.level     unknown
    svnkit.sax.useDefault     true
    user.country     US
    user.dir     /Applications/Development/SQLDeveloper.app/Contents/Resources/sqldeveloper/sqldeveloper/bin
    user.home     /Users/ibrandt
    user.language     en
    user.name     ibrandt
    user.timezone     America/Los_Angeles
    windows.shell.font.languages     
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    Check For Updates     oracle.ide.webupdate     11.1.1.4.37.59.31     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.4.37.59.31     Loaded
    Component Palette     oracle.ide.palette1     11.1.1.4.37.59.31     Loaded
    Data Miner     oracle.dmt.dataminer     11.2.0.1.10.109     Loaded
    Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.4.37.59.31     Loaded
    Database Object Explorers     oracle.ide.db.explorer     11.1.1.4.37.59.31     Loaded
    Database UI     oracle.ide.db     11.1.1.4.37.59.31     Loaded
    Diagram Framework     oracle.diagram     11.1.1.4.37.59.31     Loaded
    Diagram Javadoc Extension     oracle.diagram.javadoc     11.1.1.4.37.59.31     Loaded
    Diagram Thumbnail     oracle.diagram.thumbnail     11.1.1.4.37.59.31     Loaded
    Diff/Merge     oracle.ide.diffmerge     11.1.1.4.37.59.31     Loaded
    Extended IDE Platform     oracle.javacore     11.1.1.4.37.59.31     Loaded
    External Tools     oracle.ide.externaltools     11.1.1.4.37.59.31     Loaded
    File Support     oracle.ide.files     11.1.1.4.37.59.31     Loaded
    Help System     oracle.ide.help     11.1.1.4.37.59.31     Loaded
    History Support     oracle.jdeveloper.history     11.1.1.4.37.59.31     Loaded
    Import/Export Support     oracle.ide.importexport     11.1.1.4.37.59.31     Loaded
    Index Migrator support     oracle.ideimpl.indexing-migrator     11.1.1.4.37.59.31     Loaded
    JDeveloper Runner     oracle.jdeveloper.runner     11.1.1.4.37.59.31     Loaded
    JViews Registration Addin     oracle.diagram.registration     11.1.1.4.37.59.31     Loaded
    Log Window     oracle.ide.log     11.1.1.4.37.59.31     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.4.37.59.31     Loaded
    Navigator     oracle.ide.navigator     11.1.1.4.37.59.31     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.4.37.59.31     Loaded
    Oracle IDE     oracle.ide     11.1.1.4.37.59.31     Loaded
    Oracle SQL Developer     oracle.sqldeveloper     11.1.2.04.34     Loaded
    Oracle SQL Developer - 3rd Party Database Browsers     oracle.sqldeveloper.thirdparty.browsers     11.1.1.04.34     Loaded
    Oracle SQL Developer - DBA Navigator     oracle.sqldeveloper.dbanavigator     11.1.1.04.34     Loaded
    Oracle SQL Developer - Extras     oracle.sqldeveloper.extras     1.1.1.04.34     Loaded
    Oracle SQL Developer - File Navigator     oracle.sqldeveloper.filenavigator     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Antlr3 Translator     oracle.sqldeveloper.migration.translation.core_antlr3     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Application Migration     oracle.sqldeveloper.migration.application     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Core     oracle.sqldeveloper.migration     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations DB2     oracle.sqldeveloper.migration.db2     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations DB2 Translator     oracle.sqldeveloper.migration.translation.db2     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Microsoft Access     oracle.sqldeveloper.migration.msaccess     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Microsoft SQL Server     oracle.sqldeveloper.migration.sqlserver     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations MySQL     oracle.sqldeveloper.migration.mysql     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Sybase Adaptive Server     oracle.sqldeveloper.migration.sybase     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations T-SQL Translator     oracle.sqldeveloper.migration.translation.core     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Teradata     oracle.sqldeveloper.migration.teradata     11.1.1.04.34     Loaded
    Oracle SQL Developer - Migrations Translation UI     oracle.sqldeveloper.migration.translation.gui     11.1.1.04.34     Loaded
    Oracle SQL Developer - Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.04.34     Loaded
    Oracle SQL Developer - Real Time SQL Monitoring     oracle.sqldeveloper.sqlmonitor     11.1.1.04.34     Loaded
    Oracle SQL Developer - Reports     oracle.sqldeveloper.report     11.1.1.04.34     Loaded
    Oracle SQL Developer - Scheduler     oracle.sqldeveloper.scheduler     11.1.1.04.34     Loaded
    Oracle SQL Developer - Schema Browser     oracle.sqldeveloper.schemabrowser     11.1.1.04.34     Loaded
    Oracle SQL Developer - SearchBar     oracle.sqldeveloper.searchbar     11.1.1.04.34     Loaded
    Oracle SQL Developer - Snippet     oracle.sqldeveloper.snippet     11.1.1.04.34     Loaded
    Oracle SQL Developer - Spatial     oracle.sqldeveloper.spatial     11.1.1.04.34     Loaded
    Oracle SQL Developer - TimesTen     oracle.sqldeveloper.timesten     2.0.0.04.34     Loaded
    Oracle SQL Developer - Tuning     oracle.sqldeveloper.tuning     11.1.1.04.34     Loaded
    Oracle SQL Developer - Unit Test     oracle.sqldeveloper.unit_test     11.1.1.04.34     Loaded
    Oracle SQL Developer - User Extensions Support     oracle.sqldeveloper.userextensions     11.1.1.04.34     Loaded
    Oracle SQL Developer - Worksheet v2     oracle.sqldeveloper.worksheet     11.1.1.04.34     Loaded
    Oracle SQL Developer - XML Schema     oracle.sqldeveloper.xmlschema     11.1.1.04.34     Loaded
    Oracle SQL Developer Data Modeler     oracle.datamodeler     3.0.0.665.2     Loaded
    Oracle SQL Developer Data Modeler - Reports     oracle.sqldeveloper.datamodeler_reports     11.1.1.04.34     Loaded
    PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.4.37.59.31     Loaded
    Peek     oracle.ide.peek     11.1.1.4.37.59.31     Loaded
    Persistent Storage     oracle.ide.persistence     11.1.1.4.37.59.31     Loaded
    Property Inspector     oracle.ide.inspector     11.1.1.4.37.59.31     Loaded
    QuickDiff     oracle.ide.quickdiff     11.1.1.4.37.59.31     Loaded
    Replace With     oracle.ide.replace     11.1.1.4.37.59.31     Loaded
    Runner     oracle.ide.runner     11.1.1.4.37.59.31     Loaded
    VHV     oracle.ide.vhv     11.1.1.4.37.59.31     Loaded
    Versioning Support     oracle.jdeveloper.vcs     11.1.1.4.37.59.31     Loaded
    Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.4.37.59.31     Loaded
    Virtual File System     oracle.ide.vfs     11.1.1.4.37.59.31     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.4.37.59.31     Loaded
    XML Editing Framework IDE Extension     oracle.ide.xmlef     11.1.1.4.37.59.31     Loaded
    audit     oracle.ide.audit     11.1.1.4.37.59.31     Loaded
    classpath: protocol handler extension     oracle.jdeveloper.classpath     11.1.1.0.0     Loaded
    jdukshare     oracle.bm.jdukshare     11.1.1.4.37.59.31     Loaded
    mof-xmi     oracle.mof.xmi     11.1.1.4.37.59.31     Loaded
    oracle.ide.dependency     oracle.ide.dependency     11.1.1.4.37.59.31     Loaded
    oracle.ide.indexing     oracle.ide.indexing     11.1.1.4.37.59.31     Loaded
    palette2     oracle.ide.palette2     11.1.1.4.37.59.31     Loaded
    status     oracle.ide.status     11.1.1.4.37.59.31     Loaded

    are you using an "Expert Mode" query or not?
    With normal mode, the query is stored in an XML attribute.
    With expert mode, it's stored in a CDATA Section, which allows it to respect all user-spacing and newlines.
    XML attribute values are forced by the XML 1.0 spec to be normalized, and this is done by the parser when they are read in. That might account for your different in space treatment.

  • EXCEPTION_ACCESS_VIOLATION (0xc0000005) on compiled Java code

    I'm confronted with the following error of this code.
    http://db-www.naist.jp/~makoto-y/tmp/Int2LongHash.java
    The exception appears only when the system gets high-load.
    Is there work-arounds?
    I've tried also with jdk1.5.0_06, but the same error occurred.
    Converting the inner class to a top-level class has no effects.
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00a2cd75, pid=1540, tid=2968
    # Java VM: Java HotSpot(TM) Client VM (1.6.0-beta2-b86 mixed mode)
    # Problematic frame:
    # J org.metabrick.xbird.util.collections.Int2LongHash$Int2LongLRUMap$ChainedEntry.recordRemoval(Lorg/metabrick/xbird/util/collections/Int2LongHash;)V
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x003f6800): JavaThread "main" [_thread_in_Java, id=2968]
    siginfo: ExceptionCode=0xc0000005, writing address 0xfc2cee54
    Registers:
    EAX=0x42d43500, EBX=0x03d3ee00, ECX=0x03d3ee00, EDX=0x07911838
    ESP=0x0091f760, EBP=0x0091f778, ESI=0x0790f9f8, EDI=0xfc2cee38
    EIP=0x00a2cd75, EFLAGS=0x00010203
    Top of Stack: (sp=0x0091f760)
    0x0091f760: 0790ac30 079220b0 00000200 03d917f8
    0x0091f770: 00000000 6d955aa7 0091f7a8 00a2c9dc
    0x0091f780: 00000200 00000000 0091f7e8 00a12d50
    0x0091f790: 5ab674cf 00000000 07911838 03d3ee00
    0x0091f7a0: 03d8b700 00000010 0091f7f8 00a2c000
    0x0091f7b0: 03d8b700 078e4af4 00000010 00a2ab04
    0x0091f7c0: 078e4af4 03d8b700 00000010 00000001
    0x0091f7d0: 00000000 6d955ae7 5ab674d0 00000000
    Instructions: (pc=0x00a2cd75)
    0x00a2cd65: 20 8b fe c1 ef 09 c6 87 80 b1 5b 48 00 8b 79 20
    0x00a2cd75: 89 77 1c c1 ef 09 c6 87 80 b1 5b 48 00 8b e5 5d
    Stack: [0x008d0000,0x00920000), sp=0x0091f760, free space=317k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    J org.metabrick.xbird.util.collections.Int2LongHash$Int2LongLRUMap$ChainedEntry.recordRemoval(Lorg/metabrick/xbird/util/collections/Int2LongHash;)V
    J org.metabrick.xbird.util.collections.Int2LongHash.remove(I)J
    J org.metabrick.xbird.util.collections.Int2LongHash$Int2LongLRUMap.addEntry(IIJLorg/metabrick/xbird/util/collections/Int2LongHash$BucketEntry;)V
    J org.metabrick.xbird.util.collections.Int2LongHash.put(IJ)J
    J org.metabrick.xbird.xquery.util.StringChunk.storeCharChunk([CII)J
    J org.metabrick.xbird.xquery.util.StringChunk.store([CII)J
    J org.metabrick.xbird.xquery.dm.dtm.BigDocumentTable.setTextAt(J[CII)J
    J org.metabrick.xbird.xquery.dm.dtm.DocumentTableBuilder.createTextNode()V
    J org.metabrick.xbird.xquery.dm.dtm.DocumentTableBuilder.endElement(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    J org.apache.xerces.parsers.AbstractSAXParser.endElement(Lorg/apache/xerces/xni/QName;Lorg/apache/xerces/xni/Augmentations;)V
    J org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement()I
    J org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Z)Z
    j org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Z)Z+24
    j org.apache.xerces.parsers.XML11Configuration.parse(Z)Z+132
    j org.apache.xerces.parsers.XML11Configuration.parse(Lorg/apache/xerces/xni/parser/XMLInputSource;)V+29
    j org.apache.xerces.parsers.XMLParser.parse(Lorg/apache/xerces/xni/parser/XMLInputSource;)V+9
    j org.apache.xerces.parsers.AbstractSAXParser.parse(Lorg/xml/sax/InputSource;)V+43
    j org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Lorg/xml/sax/InputSource;)V+43
    j org.metabrick.xbird.xquery.dm.instance.DocumentTableModel.loadDocument(Ljava/io/InputStream;)V+35
    j org.metabrick.xbird.client.tools.command.ImportDocument.process([Ljava/lang/String;)Z+99
    j org.metabrick.xbird.client.tools.CommandInvoker.executeCommand([Ljava/lang/String;)Z+8
    j org.metabrick.xbird.client.tools.CommandInvoker.run([Ljava/lang/String;)V+66
    j org.metabrick.xbird.client.tools.CommandInvoker.main([Ljava/lang/String;)V+19
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x48aa5000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3636]
    0x48aa0800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4076]
    0x48a9e400 JavaThread "Attach Listener" daemon [_thread_blocked, id=3144]
    0x48aac400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2248]
    0x48a86c00 JavaThread "Finalizer" daemon [_thread_blocked, id=2664]
    0x48a82800 JavaThread "Reference Handler" daemon [_thread_blocked, id=2700]
    =>0x003f6800 JavaThread "main" [_thread_in_Java, id=2968]
    Other Threads:
    0x48a7f400 VMThread [id=4028]
    0x48aa6800 WatcherThread [id=3704]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 72576K, used 28616K [0x029d0000, 0x07890000, 0x07890000)
    eden space 64512K, 32% used [0x029d0000, 0x03e6fdd0, 0x068d0000)
    from space 8064K, 92% used [0x068d0000, 0x07022230, 0x070b0000)
    to space 8064K, 0% used [0x070b0000, 0x070b0000, 0x07890000)
    tenured generation total 967936K, used 253073K [0x07890000, 0x429d0000, 0x429d0000)
    the space 967936K, 26% used [0x07890000, 0x16fb4788, 0x16fb4800, 0x429d0000)
    compacting perm gen total 12288K, used 5879K [0x429d0000, 0x435d0000, 0x469d0000)
    the space 12288K, 47% used [0x429d0000, 0x42f8dd08, 0x42f8de00, 0x435d0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00423000      C:\Program Files\Java\jdk1.6.0\bin\javaw.exe
    0x7c940000 - 0x7c9dd000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c931000      C:\WINDOWS\system32\kernel32.dll
    0x77d80000 - 0x77e29000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e30000 - 0x77ec1000      C:\WINDOWS\system32\RPCRT4.dll
    0x77cf0000 - 0x77d7f000      C:\WINDOWS\system32\USER32.dll
    0x77ed0000 - 0x77f17000      C:\WINDOWS\system32\GDI32.dll
    0x762e0000 - 0x762fd000      C:\WINDOWS\system32\IMM32.DLL
    0x60740000 - 0x60749000      C:\WINDOWS\system32\LPK.DLL
    0x73f80000 - 0x73feb000      C:\WINDOWS\system32\USP10.dll
    0x77bc0000 - 0x77c18000      C:\WINDOWS\system32\msvcrt.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jdk1.6.0\jre\bin\msvcr71.dll
    0x6d7f0000 - 0x6da2f000      C:\Program Files\Java\jdk1.6.0\jre\bin\client\jvm.dll
    0x76af0000 - 0x76b1b000      C:\WINDOWS\system32\WINMM.dll
    0x6d310000 - 0x6d318000      C:\Program Files\Java\jdk1.6.0\jre\bin\hpi.dll
    0x76ba0000 - 0x76bab000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d7a0000 - 0x6d7ac000      C:\Program Files\Java\jdk1.6.0\jre\bin\verify.dll
    0x6d3a0000 - 0x6d3bf000      C:\Program Files\Java\jdk1.6.0\jre\bin\java.dll
    0x6d7e0000 - 0x6d7ef000      C:\Program Files\Java\jdk1.6.0\jre\bin\zip.dll
    0x6d560000 - 0x6d573000      C:\Program Files\Java\jdk1.6.0\jre\bin\net.dll
    0x719e0000 - 0x719f7000      C:\WINDOWS\system32\WS2_32.dll
    0x719d0000 - 0x719d8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d580000 - 0x6d589000      C:\Program Files\Java\jdk1.6.0\jre\bin\nio.dll
    VM Arguments:
    jvm_args: -Xmx1024m -Xms1024m
    java_command: org.metabrick.xbird.client.tools.CommandInvoker -col /xmark import document C:\Software\xmark\xmark100.xml
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0
    PATH=C:\Program Files\Java\jdk1.6.0\bin;D:\Software\maven-1.0.2\bin;D:\cygwin\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\Software\apache-ant-1.6.5\bin;C:\ghc\ghc-6.4.2\bin;C:\Program Files\QuickTime\QTSystem\
    USERNAME=yui
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 4, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2096404k(108924k free), swap 3511144k(1471688k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0-beta2-b86) for windows-x86, built on Jun 2 2006 00:36:31 by "java_re" with unknown MS VC++:1310

    The following is the error that I got with using JDK 1.5.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00b8c9f8, pid=4024, tid=1608
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # J org.metabrick.xbird.util.collections.Int2LongHash$Int2LongLRUMap$ChainedEntry.recordRemoval(Lorg/metabrick/xbird/util/collections/Int2LongHash;)V
    --------------- T H R E A D ---------------
    Current thread (0x00036190): JavaThread "main" [_thread_in_Java, id=1608]
    siginfo: ExceptionCode=0xc0000005, writing address 0xfa424094
    Registers:
    EAX=0x00040e40, EBX=0xfa424078, ECX=0x05bd3fc0, EDX=0x05bd3fc0
    ESP=0x0007f578, EBP=0x0007f590, ESI=0xfa424078, EDI=0x081c8168
    EIP=0x00b8c9f8, EFLAGS=0x00010203
    Top of Stack: (sp=0x0007f578)
    0x0007f578: 081c1fa8 6d7d1061 022dd1c8 00000000
    0x0007f588: 00000200 00000200 0007f5c8 00b8c598
    0x0007f598: 0899f428 05bd3fc0 00000200 00000000
    0x0007f5a8: 0007f5c8 00b41018 00000200 000001cb
    0x0007f5b8: 05c50338 05c19448 05bd3fc0 000001a8
    0x0007f5c8: 0007f648 00b8b880 07dd565c 0899f428
    0x0007f5d8: 022dd1cb 00000000 08976190 00b8054c
    0x0007f5e8: 00001000 0000af89 00001000 6d7d1061
    Instructions: (pc=0x00b8c9f8)
    0x00b8c9e8: 89 5f 20 c1 e8 09 c6 80 00 a9 6c 48 00 8b 72 20
    0x00b8c9f8: 89 7e 1c c1 ee 09 c6 86 00 a9 6c 48 00 8b e5 5d
    Stack: [0x00040000,0x00080000), sp=0x0007f578, free space=253k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    J org.metabrick.xbird.util.collections.Int2LongHash$Int2LongLRUMap$ChainedEntry.recordRemoval(Lorg/metabrick/xbird/util/collections/Int2LongHash;)V
    J org.metabrick.xbird.util.collections.Int2LongHash.remove(I)J
    J org.metabrick.xbird.util.collections.Int2LongHash$Int2LongLRUMap.addEntry(IIJLorg/metabrick/xbird/util/collections/Int2LongHash$BucketEntry;)V
    J org.metabrick.xbird.util.collections.Int2LongHash.put(IJ)J
    J org.metabrick.xbird.xquery.util.StringChunk.storeCharChunk([CII)J
    J org.metabrick.xbird.xquery.util.StringChunk.store([CII)J
    J org.metabrick.xbird.xquery.dm.dtm.BigDocumentTable.setTextAt(J[CII)J
    J org.metabrick.xbird.xquery.dm.dtm.DocumentTableBuilder.createTextNode()V
    J org.metabrick.xbird.xquery.dm.dtm.DocumentTableBuilder.endElement(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    J com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(Lcom/sun/org/apache/xerces/internal/xni/QName;Lcom/sun/org/apache/xerces/internal/xni/Augmentations;)V
    J com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanEndElement()I
    J com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Z)Z
    v ~OSRAdapter
    j com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Z)Z+24
    j com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Z)Z+118
    j com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Lcom/sun/org/apache/xerces/internal/xni/parser/XMLInputSource;)V+29
    j com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Lcom/sun/org/apache/xerces/internal/xni/parser/XMLInputSource;)V+9
    j com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Lorg/xml/sax/InputSource;)V+43
    j org.metabrick.xbird.xquery.dm.instance.DocumentTableModel.loadDocument(Ljava/io/InputStream;)V+35
    j org.metabrick.xbird.client.tools.command.ImportDocument.process([Ljava/lang/String;)Z+102
    j org.metabrick.xbird.client.tools.CommandInvoker.executeCommand([Ljava/lang/String;)Z+8
    j org.metabrick.xbird.client.tools.CommandInvoker.run([Ljava/lang/String;)V+66
    j org.metabrick.xbird.client.tools.CommandInvoker.main([Ljava/lang/String;)V+19
    v ~StubRoutines::call_stub
    V [jvm.dll+0x845a9]
    V [jvm.dll+0xd9317]
    V [jvm.dll+0x8447a]
    V [jvm.dll+0x8b44a]
    C [java.exe+0x14c5]
    C [java.exe+0x64dd]
    C [kernel32.dll+0x16fd7]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x00aa7490 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1780]
    0x00aa60f0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3456]
    0x00aa53f8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2544]
    0x00a96c80 JavaThread "Finalizer" daemon [_thread_blocked, id=856]
    0x00a957e8 JavaThread "Reference Handler" daemon [_thread_blocked, id=816]
    =>0x00036190 JavaThread "main" [_thread_in_Java, id=1608]
    Other Threads:
    0x0003fbd0 VMThread [id=3592]
    0x00ab0e20 WatcherThread [id=3108]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 72576K, used 59965K [0x02ae0000, 0x079a0000, 0x079a0000)
    eden space 64512K, 80% used [0x02ae0000, 0x05d8f7b0, 0x069e0000)
    from space 8064K, 99% used [0x069e0000, 0x071bfff8, 0x071c0000)
    to space 8064K, 0% used [0x071c0000, 0x071c0000, 0x079a0000)
    tenured generation total 967936K, used 451270K [0x079a0000, 0x42ae0000, 0x42ae0000)
    the space 967936K, 46% used [0x079a0000, 0x23251ab0, 0x23251c00, 0x42ae0000)
    compacting perm gen total 8192K, used 5367K [0x42ae0000, 0x432e0000, 0x46ae0000)
    the space 8192K, 65% used [0x42ae0000, 0x4301dfb0, 0x4301e000, 0x432e0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\Program Files\Java\jdk1.5.0_06\bin\java.exe
    0x7c940000 - 0x7c9dd000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c931000      C:\WINDOWS\system32\kernel32.dll
    0x77d80000 - 0x77e29000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e30000 - 0x77ec1000      C:\WINDOWS\system32\RPCRT4.dll
    0x77bc0000 - 0x77c18000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d6e0000 - 0x6d874000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\client\jvm.dll
    0x77cf0000 - 0x77d7f000      C:\WINDOWS\system32\USER32.dll
    0x77ed0000 - 0x77f17000      C:\WINDOWS\system32\GDI32.dll
    0x76af0000 - 0x76b1b000      C:\WINDOWS\system32\WINMM.dll
    0x762e0000 - 0x762fd000      C:\WINDOWS\system32\IMM32.DLL
    0x60740000 - 0x60749000      C:\WINDOWS\system32\LPK.DLL
    0x73f80000 - 0x73feb000      C:\WINDOWS\system32\USP10.dll
    0x6d2f0000 - 0x6d2f8000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\hpi.dll
    0x76ba0000 - 0x76bab000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d6b0000 - 0x6d6bc000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\java.dll
    0x6d6d0000 - 0x6d6df000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\net.dll
    0x719e0000 - 0x719f7000      C:\WINDOWS\system32\WS2_32.dll
    0x719d0000 - 0x719d8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d550000 - 0x6d559000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\nio.dll
    VM Arguments:
    jvm_args: -Xmx1024m -Xms1024m -ea
    java_command: org.metabrick.xbird.client.tools.CommandInvoker -col /xmark import document C:\Software\xmark\xmark100.xml
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0
    PATH=C:\Program Files\Java\jdk1.6.0\bin;D:\Software\maven-1.0.2\bin;D:\cygwin\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\Software\apache-ant-1.6.5\bin;C:\ghc\ghc-6.4.2\bin;C:\Program Files\QuickTime\QTSystem\
    USERNAME=yui
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 4, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2096404k(370660k free), swap 3511144k(1545452k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0

  • An unexpected error has been detected by Java Runtime Environment

    Hi there,
    I am trying to run my application in java and suddenly java started giving me the bellow error:
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d81bd10, pid=1500, tid=3624
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode windows-x86)
    # Problematic frame:
    # V [jvm.dll+0x5bd10]
    # An error report file with more information is saved as:
    # G:\My Documents\UCY\Graduate\Final Year Project\Persona\Testing\hs_err_pid1500.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    I do not believe that this is a problem in my code as this was working before.
    Also the system works fine for about 20 iterations of the same code and then displays this error
    I also try to uninstall and reinstall java but with no luck.
    I am also attaching the log file that java has saved some information.
    Thanks a lot for your help in advance.
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d81bd10, pid=1500, tid=3624
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode windows-x86)
    # Problematic frame:
    # V [jvm.dll+0x5bd10]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0aaa0c00): VMThread [stack: 0x0ab30000,0x0ab80000] [id=3624]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000050
    Registers:
    EAX=0x00000000, EBX=0x003abcec, ECX=0x072d0106, EDX=0x00000000
    ESP=0x0ab7f5bc, EBP=0x003abc60, ESI=0x06b29bc8, EDI=0x06b29bc8
    EIP=0x6d81bd10, EFLAGS=0x00010246
    Top of Stack: (sp=0x0ab7f5bc)
    0x0ab7f5bc: 06b29bc8 06b29bc8 00000000 6d940820
    0x0ab7f5cc: 6d7dcc8b 06b29bc8 0ab7f618 0ab7f618
    0x0ab7f5dc: 00000002 003aa9f8 6d86cd11 06b29c45
    0x0ab7f5ec: 003abab8 6d86cae1 003abcb0 6d83c5a3
    0x0ab7f5fc: 0ab7f618 00000000 003aaa50 06b29c45
    0x0ab7f60c: 6d86c927 0ab7f618 00000000 6d99f718
    0x0ab7f61c: 06b29c45 00000000 6d8676c3 06b29c45
    0x0ab7f62c: 06b29c45 00000000 0ab7f748 00000000
    Instructions: (pc=0x6d81bd10)
    0x6d81bd00: 08 07 c1 e8 02 25 fe ff ff 3f 5e 59 c3 8b 11 56
    0x6d81bd10: ff 52 50 5e 59 c3 cc cc cc cc cc cc cc cc cc cc
    Stack: [0x0ab30000,0x0ab80000], sp=0x0ab7f5bc, free space=317k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x5bd10]
    VM_Operation (0x0090f410): GenCollectForAllocation, mode: safepoint, requested by thread 0x003a6400
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0aade000 JavaThread "&#1281;&#49164; &#4944;&#1689;&#23520;&#1689;&#1088;&#1689;&#28936;&#1690;&#23520;&#1689;&#1072;&#1689;&#752;&#1689;&#1041;&#32768;&#27880;&#1690;&#65535;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#18011;&#480;&#1689;&#26688;&#28059;&#1538;&#49164; &#4944;&#1689;&#23520;&#1689;&#1424;&#1689;&#29032;&#1690;&#23520;&#1689;&#1408;&#1689;&#1088;&#1689;&#1041;&#32768;&#27496;&#1690;&#65530;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#17499;&#480;&#1689;&#26688;&#28059;&#1795;&#49168; &#4944;&#1689;&#23520;&#1689;&#1760;&#1689;&#29128;&#1690;&#23520;&#1689;&#1744;&#1689;&#1424;&#1689;&#1041;&#32768;&#27592;&#1690;&#65532;&#16383;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#16987;&#480;&#1689;&#26688;&#28059;&#2048;&#49164; &#4944;&#1689;&#23520;&#1689;&#2096;&#1689;&#29224;&#1690;&#23520;&#1689;&#2080;&#1689;&#1760;&#1689;&#1041;&#32768;&#18512;&#1730;&#27688;&#1690;&#65535;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#21339;&#480;&#1689;&#26688;&#28059;&#2305;&#49164; &#4944;&#1689;&#23520;&#1689;&#2432;&#1689;&#29320;&#1690;&#23520;&#1689;&#2416;&#1689;&#2096;&#1689;&#1041;&#32768;&#31408;&#1722;&#28072;&#1690;&#65535;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#18779;&#480;&#1689;&#26688;&#28059;&#2562;&#49164; &#4944;&#1689;&#23520;&#1689;&#2768;&#1689;&#29416;&#1690;&#23520;&#1689;&#2752;&#1689;&#2432;&#1689;&#1041;&#32768;&#27640;&#1729;&#27400;&#1690;&#65530;&#32767; daemon [_thread_blocked, id=3244, stack(0x0ae00000,0x0ae50000)]
    0x0aad4400 JavaThread "" [_thread_blocked, id=1788, stack(0x0adb0000,0x0ae00000)]
    0x0aac6c00
    [error occurred during error reporting (printing all threads), id 0xc0000005]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x003a5ab0/0x00002710] Threads_lock - owner thread: 0x0aaa0c00
    [0x003a5c50/0x000026d0] Heap_lock - owner thread: 0x003a6400
    Heap
    def new generation total 960K, used 64K [0x02990000, 0x02a90000, 0x02e70000)
    eden space 896K, 0% used [0x02990000, 0x02990000, 0x02a70000)
    from space 64K, 100% used [0x02a70000, 0x02a80000, 0x02a80000)
    to space 64K, 0% used [0x02a80000, 0x02a80000, 0x02a90000)
    tenured generation total 4224K, used 4223K [0x02e70000, 0x03290000, 0x06990000)
    the space 4224K, 99% used [0x02e70000, 0x0328fc38, 0x031a2200, 0x03290000)
    compacting perm gen total 12288K, used 4879K [0x06990000, 0x07590000, 0x0a990000)
    the space 12288K, 39% used [0x06990000, 0x06e53cc0, 0x06e51200, 0x07590000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00423000      C:\Program Files\Java\jre1.6.0_06\bin\javaw.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jre1.6.0_06\bin\msvcr71.dll
    0x6d7c0000 - 0x6da10000      C:\Program Files\Java\jre1.6.0_06\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6bd00000 - 0x6bd0d000      C:\WINDOWS\system32\SYNCOR11.DLL
    0x6d270000 - 0x6d278000      C:\Program Files\Java\jre1.6.0_06\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d360000 - 0x6d389000      C:\Program Files\Java\jre1.6.0_06\bin\jdwp.dll
    0x6d6c0000 - 0x6d6c6000      C:\Program Files\Java\jre1.6.0_06\bin\npt.dll
    0x6d770000 - 0x6d77c000      C:\Program Files\Java\jre1.6.0_06\bin\verify.dll
    0x6d310000 - 0x6d32f000      C:\Program Files\Java\jre1.6.0_06\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Program Files\Java\jre1.6.0_06\bin\zip.dll
    0x6d1e0000 - 0x6d1e7000      C:\Program Files\Java\jre1.6.0_06\bin\dt_socket.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    VM Arguments:
    jvm_args: -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:1578
    java_command: TestingResults
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\j2sdk_nb\j2sdk1.4.2
    CLASSPATH=.;C:\TomCat\webapps\Profiling;C:\TomCat\common\lib\servlet-api.jar;C:\TomCat\common\lib\jsp-api.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar;C:\Program Files\Java\jre1.5.0_03\lib\ext\QTJava.zip
    PATH=C:\Program Files\Java\jre1.6.0_06\bin\client;C:\Program Files\Java\jre1.6.0_06\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\Common Files\Teleca Shared;C:\Program Files\Common Files\Adobe\AGL;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\jwsdp-1.3\jwsdp-shared\bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
    USERNAME=maria
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 6, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 6 model 13 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 523632k(50496k free), swap 882224k(299028k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b22) for windows-x86 JRE (1.6.0_06-b02), built on Mar 25 2008 01:22:05 by "java_re" with MS VC++ 7.1
    time: Sun Jun 15 19:09:27 2008
    elapsed time: 105 seconds
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Hi there,
    I am trying to run my application in java and suddenly java started giving me the bellow error:
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d81bd10, pid=1500, tid=3624
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode windows-x86)
    # Problematic frame:
    # V [jvm.dll+0x5bd10]
    # An error report file with more information is saved as:
    # G:\My Documents\UCY\Graduate\Final Year Project\Persona\Testing\hs_err_pid1500.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    I do not believe that this is a problem in my code as this was working before.
    Also the system works fine for about 20 iterations of the same code and then displays this error
    I also try to uninstall and reinstall java but with no luck.
    I am also attaching the log file that java has saved some information.
    Thanks a lot for your help in advance.
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d81bd10, pid=1500, tid=3624
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode windows-x86)
    # Problematic frame:
    # V [jvm.dll+0x5bd10]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0aaa0c00): VMThread [stack: 0x0ab30000,0x0ab80000] [id=3624]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000050
    Registers:
    EAX=0x00000000, EBX=0x003abcec, ECX=0x072d0106, EDX=0x00000000
    ESP=0x0ab7f5bc, EBP=0x003abc60, ESI=0x06b29bc8, EDI=0x06b29bc8
    EIP=0x6d81bd10, EFLAGS=0x00010246
    Top of Stack: (sp=0x0ab7f5bc)
    0x0ab7f5bc: 06b29bc8 06b29bc8 00000000 6d940820
    0x0ab7f5cc: 6d7dcc8b 06b29bc8 0ab7f618 0ab7f618
    0x0ab7f5dc: 00000002 003aa9f8 6d86cd11 06b29c45
    0x0ab7f5ec: 003abab8 6d86cae1 003abcb0 6d83c5a3
    0x0ab7f5fc: 0ab7f618 00000000 003aaa50 06b29c45
    0x0ab7f60c: 6d86c927 0ab7f618 00000000 6d99f718
    0x0ab7f61c: 06b29c45 00000000 6d8676c3 06b29c45
    0x0ab7f62c: 06b29c45 00000000 0ab7f748 00000000
    Instructions: (pc=0x6d81bd10)
    0x6d81bd00: 08 07 c1 e8 02 25 fe ff ff 3f 5e 59 c3 8b 11 56
    0x6d81bd10: ff 52 50 5e 59 c3 cc cc cc cc cc cc cc cc cc cc
    Stack: [0x0ab30000,0x0ab80000], sp=0x0ab7f5bc, free space=317k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x5bd10]
    VM_Operation (0x0090f410): GenCollectForAllocation, mode: safepoint, requested by thread 0x003a6400
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0aade000 JavaThread "&#1281;&#49164; &#4944;&#1689;&#23520;&#1689;&#1088;&#1689;&#28936;&#1690;&#23520;&#1689;&#1072;&#1689;&#752;&#1689;&#1041;&#32768;&#27880;&#1690;&#65535;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#18011;&#480;&#1689;&#26688;&#28059;&#1538;&#49164; &#4944;&#1689;&#23520;&#1689;&#1424;&#1689;&#29032;&#1690;&#23520;&#1689;&#1408;&#1689;&#1088;&#1689;&#1041;&#32768;&#27496;&#1690;&#65530;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#17499;&#480;&#1689;&#26688;&#28059;&#1795;&#49168; &#4944;&#1689;&#23520;&#1689;&#1760;&#1689;&#29128;&#1690;&#23520;&#1689;&#1744;&#1689;&#1424;&#1689;&#1041;&#32768;&#27592;&#1690;&#65532;&#16383;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#16987;&#480;&#1689;&#26688;&#28059;&#2048;&#49164; &#4944;&#1689;&#23520;&#1689;&#2096;&#1689;&#29224;&#1690;&#23520;&#1689;&#2080;&#1689;&#1760;&#1689;&#1041;&#32768;&#18512;&#1730;&#27688;&#1690;&#65535;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#21339;&#480;&#1689;&#26688;&#28059;&#2305;&#49164; &#4944;&#1689;&#23520;&#1689;&#2432;&#1689;&#29320;&#1690;&#23520;&#1689;&#2416;&#1689;&#2096;&#1689;&#1041;&#32768;&#31408;&#1722;&#28072;&#1690;&#65535;&#32767;&#23224;&#1689;&#21840;&#1689;&#22128;&#1689;&#21992;&#1689;&#22312;&#1689;&#600;&#1689;&#18779;&#480;&#1689;&#26688;&#28059;&#2562;&#49164; &#4944;&#1689;&#23520;&#1689;&#2768;&#1689;&#29416;&#1690;&#23520;&#1689;&#2752;&#1689;&#2432;&#1689;&#1041;&#32768;&#27640;&#1729;&#27400;&#1690;&#65530;&#32767; daemon [_thread_blocked, id=3244, stack(0x0ae00000,0x0ae50000)]
    0x0aad4400 JavaThread "" [_thread_blocked, id=1788, stack(0x0adb0000,0x0ae00000)]
    0x0aac6c00
    [error occurred during error reporting (printing all threads), id 0xc0000005]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x003a5ab0/0x00002710] Threads_lock - owner thread: 0x0aaa0c00
    [0x003a5c50/0x000026d0] Heap_lock - owner thread: 0x003a6400
    Heap
    def new generation total 960K, used 64K [0x02990000, 0x02a90000, 0x02e70000)
    eden space 896K, 0% used [0x02990000, 0x02990000, 0x02a70000)
    from space 64K, 100% used [0x02a70000, 0x02a80000, 0x02a80000)
    to space 64K, 0% used [0x02a80000, 0x02a80000, 0x02a90000)
    tenured generation total 4224K, used 4223K [0x02e70000, 0x03290000, 0x06990000)
    the space 4224K, 99% used [0x02e70000, 0x0328fc38, 0x031a2200, 0x03290000)
    compacting perm gen total 12288K, used 4879K [0x06990000, 0x07590000, 0x0a990000)
    the space 12288K, 39% used [0x06990000, 0x06e53cc0, 0x06e51200, 0x07590000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00423000      C:\Program Files\Java\jre1.6.0_06\bin\javaw.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jre1.6.0_06\bin\msvcr71.dll
    0x6d7c0000 - 0x6da10000      C:\Program Files\Java\jre1.6.0_06\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6bd00000 - 0x6bd0d000      C:\WINDOWS\system32\SYNCOR11.DLL
    0x6d270000 - 0x6d278000      C:\Program Files\Java\jre1.6.0_06\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d360000 - 0x6d389000      C:\Program Files\Java\jre1.6.0_06\bin\jdwp.dll
    0x6d6c0000 - 0x6d6c6000      C:\Program Files\Java\jre1.6.0_06\bin\npt.dll
    0x6d770000 - 0x6d77c000      C:\Program Files\Java\jre1.6.0_06\bin\verify.dll
    0x6d310000 - 0x6d32f000      C:\Program Files\Java\jre1.6.0_06\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Program Files\Java\jre1.6.0_06\bin\zip.dll
    0x6d1e0000 - 0x6d1e7000      C:\Program Files\Java\jre1.6.0_06\bin\dt_socket.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    VM Arguments:
    jvm_args: -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:1578
    java_command: TestingResults
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\j2sdk_nb\j2sdk1.4.2
    CLASSPATH=.;C:\TomCat\webapps\Profiling;C:\TomCat\common\lib\servlet-api.jar;C:\TomCat\common\lib\jsp-api.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar;c:\program files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar;C:\Program Files\Java\jre1.5.0_03\lib\ext\QTJava.zip
    PATH=C:\Program Files\Java\jre1.6.0_06\bin\client;C:\Program Files\Java\jre1.6.0_06\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\Common Files\Teleca Shared;C:\Program Files\Common Files\Adobe\AGL;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\jwsdp-1.3\jwsdp-shared\bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
    USERNAME=maria
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 6, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 6 model 13 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 523632k(50496k free), swap 882224k(299028k free)
    vm_info: Java HotSpot(TM) Client VM (10.0-b22) for windows-x86 JRE (1.6.0_06-b02), built on Mar 25 2008 01:22:05 by "java_re" with MS VC++ 7.1
    time: Sun Jun 15 19:09:27 2008
    elapsed time: 105 seconds
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

  • How to call function in included dll file through java application.

    Hi All,
    i am trying to create an java application which call c# functions using JNI. i am completed with the code and it is running fine when i tried to run from netbeans IDE. But when i tried from Calculator.jar file, first time it throws this error:
    F:\JavaProjects\Calculator\dist>Java -jar Calculator.jar
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no CSharpClient in java.library.path
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at calculator.CalculatorApp.<clinit>(CalculatorApp.java:20)
    After that i included that dll file in the cuurent directory. And compiled and tried to run, it throws an unexpected error:
    F:\JavaProjects\Calculator\dist>Java -jar Calculator.jar
    *# An unexpected error has been detected by Java Runtime Environment:*
    *# Internal Error (0xe0434f4d), pid=2640, tid=3700*
    *# Java VM: Java HotSpot(TM) Client VM (1.6.0_02-b06 mixed mode, sharing)*
    *# Problematic frame:*
    *# C [kernel32.dll+0x12a5b]*
    *# An error report file with more information is saved as hs_err_pid2640.log*
    *# If you would like to submit a bug report, please visit:*
    *# http://java.sun.com/webapps/bugreport/crash.jsp*
    Anyone have idea how to solve this error.
    Thanks in advance.

    This error is created whenever things go sour on the native side. The first thing you can try, and I assume you are using a Java<->C++<->C# bridge which includes two dlls, one created by C++ and another by C#. Is to make sure that the C# dll is compiled using /t:module switch during compilation.
    If you are using VS2008, or VS2005, you can add a post build syntax like:
    csc /t:module /out:"$(ProjectDir)$(OutDir)YourModule.dll" "$(ProjectDir)YourCSfile.cs"
    Hope this helps! If not, ensure first that the native code works by creating a native test app for it.

Maybe you are looking for

  • HP Laserjet 3015 won't print after Snow Leopard

    Ok, so I upgraded to Snow Leopard, and now I can't print anything on my Laserjet 3015. I've tried uninstalling the printer and then reinstalling it, but still nothing. It seems that any time I try to print it says the printer is "paused". If I press

  • How to i connect my imac and my macbook so there doncuments are up to date

    how do i connect my imac and my macbook so they are in sync and up to date with the same documents?

  • Intel Corporation 82865G graphic card - 160fps in glxgears

    Again Im here ((: as topis says my grafhic card Intel Corporation 82865G is running on 160fps in glxgears... installation looked like this : pacman -S xf86-video-intel gpasswd -a username video and result: $ glxgears 731 frames in 5.0 seconds = 145.9

  • E-Recruiting : Recruiter Page : Approval

    Hi, I have a problem. In E-Recruiting, when the restricted recruiter requests for a status change approval, the same is not appearing under the approval node of Recruiter page. can some one provide some inputs on this?

  • Creating Dynamic Lists

    Hello All, Does anybody know of a script that will allow me to add new Textfield instances that are populated with Data from another Textfield that can also be removed?  I've been racking by brains trying to figure out how to do this but whatever ins