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

Rid synchronization in PipedInputStream.close() in favour of benign race

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • None
    • None
    • core-libs
    • None
    • In Review

      Assuming that the value written into `in` is always -1 we can rid synchronized block in favour of guarding `in = - 1` with writing into volatile `closedByReader `:

      public void close() throws IOException {
          closedByReader = true;
          synchronized (this) {
              in = -1;
          }
      }

            stsypanov Sergey Tsypanov
            stsypanov Sergey Tsypanov
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: