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

IllegalArgumentException is thrown when trying to iterator over the system registry

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • mvm-7
    • mvm-7
    • hotspot
    • None
    • team
    • x86
    • linux

      IllegalArgumentException is thrown when trying to iterator over the system registry.

      Below is some sample code to reproduce this exception.

      SecureRegistry systemRegistry = SharedRegistry.systemRegistry();
      systemRegistry.putIfAbsent("lock", SharedLock.create());

      Iterator<Entry> e = systemRegistry.iterator();
      while (e.hasNext()) {
          Entry ent = e.next();
          System.out.println("ENTRY: " + ent.key() + " " + ent.type());
      }

      java.lang.IllegalArgumentException: Not a valid Uid string representation: "lock"
              at sun.shared.ResourceID.<init>(ResourceID.java:118)
              at sun.shared.InProcessRegistry.iterator(InProcessRegistry.java:110)
              at com.sun.shared.registry.SecureRegistry.iterator(SecureRegistry.java:175)

            kamg Keith Mcguigan (Inactive)
            kwwong Kinsley Wong (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: