globals_solaris.hpp revision 1472:c18cbe5936b8
112025Sdarcy/*
212025Sdarcy * Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
312025Sdarcy * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
412025Sdarcy *
512025Sdarcy * This code is free software; you can redistribute it and/or modify it
612025Sdarcy * under the terms of the GNU General Public License version 2 only, as
712025Sdarcy * published by the Free Software Foundation.
812025Sdarcy *
912025Sdarcy * This code is distributed in the hope that it will be useful, but WITHOUT
1012025Sdarcy * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1112025Sdarcy * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1212025Sdarcy * version 2 for more details (a copy is included in the LICENSE file that
1312025Sdarcy * accompanied this code).
1412025Sdarcy *
1512025Sdarcy * You should have received a copy of the GNU General Public License version
1612025Sdarcy * 2 along with this work; if not, write to the Free Software Foundation,
1712025Sdarcy * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1812025Sdarcy *
1912025Sdarcy * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2012025Sdarcy * or visit www.oracle.com if you need additional information or have any
2112025Sdarcy * questions.
2212025Sdarcy *
2312025Sdarcy */
2412025Sdarcy
250SN/A//
2612025Sdarcy// Defines Solaris specific flags. They are not available on other platforms.
2712025Sdarcy//
2812025Sdarcy#define RUNTIME_OS_FLAGS(develop, develop_pd, product, product_pd, diagnostic, notproduct) \
2912025Sdarcy                                                                               \
3012025Sdarcy  product(bool, UseISM, false,                                                 \
3112025Sdarcy          "Use Intimate Shared Memory (Solaris Only)")                         \
32                                                                               \
33  product(bool, UsePermISM, false,                                             \
34          "Obsolete flag for compatibility (same as UseISM)")                  \
35                                                                               \
36  product(bool, UseMPSS, true,                                                 \
37          "Use Multiple Page Size Support (Solaris 9 Only)")                   \
38                                                                               \
39  product(bool, UseExtendedFileIO, true,                                       \
40          "Enable workaround for limitations of stdio FILE structure")
41
42//
43// Defines Solaris-specific default values. The flags are available on all
44// platforms, but they may have different default values on other platforms.
45//
46define_pd_global(bool, UseLargePages, true);
47define_pd_global(bool, UseLargePagesIndividualAllocation, false);
48define_pd_global(bool, UseOSErrorReporting, false);
49define_pd_global(bool, UseThreadPriorities, false);
50