Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4187148

DDLWxpPoint: nonfatal internal JIT (3.00.078(x)) error 'Verify user locks error'

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 1.1.6, 1.2.0, 1.2.1, 1.2.2
    • vm-legacy
    • generic, x86
    • generic, windows_95, windows_98, windows_nt

      Name: tb29552 Date: 11/04/98

      Attached to this bug report is wxp.zip.Z

      To reproduce this bug:

      0) Configure your environment to use JDK1.2RC1
      1) save wxp.zip.Z into a temp directory
      2) compress -d wxp.zip.Z
      3) unzip wxp.zip
      4) javac afdf.java
      5) java afdf afdf


      The output will be:

      4 special carriers
      carrier[0] is RYN
      carrier[1] is LHN
      carrier[2] is EWW
      carrier[3] is CDR
      401 special flights
      5828 total flights
      ............Done
      Symantec Java! JustInTime Compiler Version 3.00.078(x) for JDK 1.2
      Copyright (C) 1996-98 Symantec Corporation

      A nonfatal internal JIT (3.00.078(x)) error 'Verify user locks error' has occurred in :
        'WxpMapTran.tranPoint (DDLWxpPoint;)V': Interpreting method.
        Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi




      The class does a lot of math functions. That
      particular method tranlates point coordinates
      from one projection to another.

      (Review ID: 42057)
      ======================================================================

      Name: tb29552 Date: 03/04/99


      when starting 'Simplicity' (www.datarepresentations.com)
      this occurs every time:

      D:\Simplicity>Simplicity (JDK1.2).bat
      A nonfatal internal JIT (3.00.078(x)) error 'Verify user locks error' has occurred in :
        'datarep/lawt/ci.g (Ljava/awt/Graphics;IIII)V': Interpreting method.
        Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi
      ======================================================================

      Name: skT88420 Date: 07/14/99


      I compiled my program with no errors. I run appletviewer and I got the
      results. When I closed appletviewer I saw the message:
      A nonfatal internal JIT (3.00 0.78x (Verify user logs error) has occured in
      Adam/doConvolution([III[III)[[I. Interpreting method"
      (Review ID: 85563)
      ======================================================================

      Name: krT82822 Date: 08/27/99


      I'm working on a reporting application that is multithreading, uses Swing, and (multiple) JDBC drivers. Here is what I do:
      1. I connect to a database
      2. I select a report from a JTree, which launches a thread that
         loads a report class, builds an instance of it (makes
         JDBC queries, draws with Java 2D API and uses InetSoftCorp's
         Style Report package)
      3. The loading starts and soon the following message appears in
         the output stream:

      A nonfatal internal JIT (3.00.078(x)) error 'Verify user locks error' has occurred in :
        'cms/cmpro/report/MultiCostSummary.build (Lcms/cmpro/DatabaseContext;DD)V': Interpreting method.
        Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi


      The following is the output log of my program to the point where
      the error occured. Most of it comes from the Oracle JDBC driver:

      DriverManager.getConnection("jdbc:oracle:thin:@10.1.39.3:1521:CMS1")
          trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@de222f80]
      Connection.setAutoCommit
      Connection.createStatement
      Statement.executeQuery
      Statement.clearWarnings
      Connection.nativeSQL
      select USER from dual
      select USER from dual
      ResultSet.next
      Statement.getString
      Statement.getBytesInternal
      Statement.close
      ResultSet.close
      Statement.clearWarnings
      ResultSet.close
      getConnection returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.
      jdbc.driver.OracleDriver@de222f80]
      Connection.getMetaData
      getUserName
      getDatabaseProductVersion
      getDriverName
      getDriverVersion
      getUserName
      A nonfatal internal JIT (3.00.078(x)) error 'Verify user locks error' has occurred in :
        'cms/cmpro/report/MultiCostSummary.build (Lcms/cmpro/DatabaseContext;DD)V': Interpreting method.
        Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi
      (Review ID: 94501)
      ======================================================================

      Name: krT82822 Date: 12/06/99


      java version "1.2.2"
      Classic VM (build JDK-1.2.2-W, native threads, symcjit)



      A nonfatal internal JIT (3.10.107(x)) error 'Verify user locks error' has
      occurred in :
        'java/awt/geom/AffineTransform.concatenate (Ljava/awt/geom/AffineTransform;)
      V': Interpreting method.
        Please report this error in detail to http://java.sun.com/cgi-
      bin/bugreport.cgi
      (Review ID: 98662)
      ======================================================================

      Name: krT82822 Date: 02/10/2000


      java version "1.2.2"
      Classic VM (build JDK-1.2.2-W, native threads, symcjit)


      The JIT apparently requested that I make this report. The source code to
      reproduce the problem is below, and is pretty simple. The code is only meant
      to produce a list of all available TimeZone IDs, with an accompanying GMT
      offset, formatted for my pleasure. The above error message is produced in the
      output between the time zones of America/El_Salvador and America/Costa_Rica.
      The error does not occur if I list only the timezones in offset GMT-6:00, for
      example, apparently only if I am listing them all.

      The source code is as follows:

      import java.lang.*;
      import java.util.*;


      public class TestBug {


      private static String getOffsetPrintout(String strID) {
      String strReturn = new String();
      int intOffset = TimeZone.getTimeZone(strID).getRawOffset();
      String strMinutes = ":00";
      int intMillisInAnHour = (60 * 60 * 1000);

      if (intOffset >= 0) strReturn = "+";

      if (intOffset % intMillisInAnHour > 0) {
      strMinutes = ":" + String.valueOf((intOffset %
      intMillisInAnHour) / (60 * 1000));
      }

      strReturn = "GMT" + strReturn + String.valueOf(intOffset /
      intMillisInAnHour) + strMinutes;

      return strReturn;
      }




      public static void main(String argv[]) {

      System.out.println("All Time Zones:");

      String arrTemp[] = TimeZone.getAvailableIDs();
      for (int i = 0; i < arrTemp.length; i++) {
      System.out.println(arrTemp[i] + "\t" + getOffsetPrintout
      (arrTemp[i]));
      }

      }
      }
      (Review ID: 101090)
      ======================================================================

            Unassigned Unassigned
            tbell Tim Bell
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: