comparison src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp @ 8035:f64ffbf81af5

8006432: Ratio flags should be unsigned Summary: Flags changed to be of uintx type Reviewed-by: johnc, tamao
author jwilhelm
date Thu, 07 Feb 2013 15:51:25 +0100
parents 5ec0c42da025
children 91bf0bdae37b
comparison
equal deleted inserted replaced
8034:bce1ac447f6b 8035:f64ffbf81af5
1 /* 1 /*
2 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
40 define_pd_global(intx, ThreadStackSize, 320); 40 define_pd_global(intx, ThreadStackSize, 320);
41 define_pd_global(intx, VMThreadStackSize, 512); 41 define_pd_global(intx, VMThreadStackSize, 512);
42 #endif // AMD64 42 #endif // AMD64
43 43
44 define_pd_global(intx, CompilerThreadStackSize, 0); 44 define_pd_global(intx, CompilerThreadStackSize, 0);
45 define_pd_global(intx, SurvivorRatio, 8); 45 define_pd_global(uintx, SurvivorRatio, 8);
46 46
47 define_pd_global(uintx, JVMInvokeMethodSlack, 8192); 47 define_pd_global(uintx, JVMInvokeMethodSlack, 8192);
48 48
49 // Used on 64 bit platforms for UseCompressedOops base address or CDS 49 // Used on 64 bit platforms for UseCompressedOops base address or CDS
50 define_pd_global(uintx, HeapBaseMinAddress, 2*G); 50 define_pd_global(uintx, HeapBaseMinAddress, 2*G);