comparison test/runtime/6929067/T.java @ 1320:3b3d12e645e7

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
author coleenp
date Fri, 12 Mar 2010 10:42:16 -0500
parents
children
comparison
equal deleted inserted replaced
1292:12d91eb0f579 1320:3b3d12e645e7
1 public class T
2 {
3 public static boolean foo(boolean bar)
4 {
5 return bar;
6 }
7
8 public static void printIt()
9 {
10 System.out.println("Hello");
11 }
12 }