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

Concurrency bug with freeing stacks in Java interpreter

XMLWordPrintable

    • 1.0.2
    • sparc
    • generic
    • Not verified

      In FreeJavaStackMemory() is found the following code:

      OSTACK_LOCK();
      mem = javastackFreeList;
      javastackFreeList = 0;
      OSTACK_UNLOCK();

      However in DeleteExecEnv(), stack frames are placed on javastackFreeLIst
      without first calling OSTACK_LOCK. The lack of concurrency control can
      cause a stack frame to be dropped, or for a number of stack frames to be
      freed twice. The second case would probably eventually lead to a crash.

      -Theron, 22 Feb 96

            tlindholsunw Timothy Lindholm (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: