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

Fix for bugID 4463693 doesn't work properly on windows platforms

XMLWordPrintable

    • beta2
    • generic
    • windows_2000
    • Verified

      Fix for bugID 4463693 doesn't work properly on windows platforms .field name in DatagramChannelImpl.c needs to be modified .


      test program
      ---------------------------

      import java.io.*;

      import java.nio.channels.Selector ;
      import java.nio.channels.spi.SelectorProvider ;
      import java.nio.channels.spi.AbstractSelector ;


      public class openTest {
         
          public static void main(String[] args) throws Exception {
            openTest tests = new openTest();
            tests.go();
          }

          public void go() throws Exception {
      try {
      int portNum = 9999;
      SelectorProvider sp = SelectorProvider.provider() ;
            java.nio.channels.DatagramChannel dc = sp.openDatagramChannel(portNum);
           System.out.println("DatagramChannel: " + dc);
      } catch (Exception e) {
      System.out.println("Exception: " +e);
      }
      }
      }
          
      -----------------------------

      test output
      ----------------------------

      Exception in thread "main" java.lang.NoSuchFieldError: sender_ia
              at sun.nio.ch.DatagramChannelImpl.initIDs(Native Method)
              at sun.nio.ch.DatagramChannelImpl.<clinit>(DatagramChannelImpl.java:456)
              at sun.nio.ch.SelectorProviderImpl.openDatagramChannel(SelectorProviderImpl.java:25)
              at openTest.go(openTest.java:20)
              at openTest.main(openTest.java:13)
      -------------------------------------



      -------------------------

      Verified in release b72

      sreejith.ak@India 2001-07-24

            mmcclosksunw Michael Mccloskey (Inactive)
            saksunw Sreejith Ak (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: