hotspot/test/runtime/6929067/T.java
author coleenp
Fri, 12 Mar 2010 10:42:16 -0500
changeset 5085 4f0c435f8c3c
permissions -rw-r--r--
6929067: Stack guard pages should be removed when thread is detached Summary: Add code to unmap stack guard area when thread is detached. Reviewed-by: coleenp, kamg

public class T
{
  public static boolean foo(boolean bar)
  {
    return bar;
  }

  public static void printIt()
  {
    System.out.println("Hello");
  }
}