Blame elf/dl-tunables.list

Packit 6c4009
# Copyright (C) 2016-2018 Free Software Foundation, Inc.
Packit 6c4009
# This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
# The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
# modify it under the terms of the GNU Lesser General Public
Packit 6c4009
# License as published by the Free Software Foundation; either
Packit 6c4009
# version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
# The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
# Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
# You should have received a copy of the GNU Lesser General Public
Packit 6c4009
# License along with the GNU C Library; if not, see
Packit 6c4009
# <http://www.gnu.org/licenses/>.
Packit 6c4009
Packit 6c4009
# Allowed attributes for tunables:
Packit 6c4009
#
Packit 6c4009
# type: Defaults to STRING
Packit 6c4009
# minval: Optional minimum acceptable value
Packit 6c4009
# maxval: Optional maximum acceptable value
Packit 6c4009
# env_alias: An alias environment variable
Packit 6c4009
# security_level: Specify security level of the tunable.  Valid values are:
Packit 6c4009
#
Packit 6c4009
# 	     SXID_ERASE: (default) Don't read for AT_SECURE binaries and
Packit 6c4009
# 	     		 removed so that child processes can't read it.
Packit 6c4009
# 	     SXID_IGNORE: Don't read for AT_SECURE binaries, but retained for
Packit 6c4009
# 	     		  non-AT_SECURE subprocesses.
Packit 6c4009
# 	     NONE: Read all the time.
Packit 6c4009
Packit 6c4009
glibc {
Packit 6c4009
  malloc {
Packit 6c4009
    check {
Packit 6c4009
      type: INT_32
Packit 6c4009
      minval: 0
Packit 6c4009
      maxval: 3
Packit 6c4009
      env_alias: MALLOC_CHECK_
Packit 6c4009
    }
Packit 6c4009
    top_pad {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
      env_alias: MALLOC_TOP_PAD_
Packit 6c4009
      security_level: SXID_IGNORE
Packit 6c4009
    }
Packit 6c4009
    perturb {
Packit 6c4009
      type: INT_32
Packit 6c4009
      minval: 0
Packit 6c4009
      maxval: 0xff
Packit 6c4009
      env_alias: MALLOC_PERTURB_
Packit 6c4009
      security_level: SXID_IGNORE
Packit 6c4009
    }
Packit 6c4009
    mmap_threshold {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
      env_alias: MALLOC_MMAP_THRESHOLD_
Packit 6c4009
      security_level: SXID_IGNORE
Packit 6c4009
    }
Packit 6c4009
    trim_threshold {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
      env_alias: MALLOC_TRIM_THRESHOLD_
Packit 6c4009
      security_level: SXID_IGNORE
Packit 6c4009
    }
Packit 6c4009
    mmap_max {
Packit 6c4009
      type: INT_32
Packit 6c4009
      env_alias: MALLOC_MMAP_MAX_
Packit 6c4009
      security_level: SXID_IGNORE
Packit 6c4009
    }
Packit 6c4009
    arena_max {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
      env_alias: MALLOC_ARENA_MAX
Packit 6c4009
      minval: 1
Packit 6c4009
      security_level: SXID_IGNORE
Packit 6c4009
    }
Packit 6c4009
    arena_test {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
      env_alias: MALLOC_ARENA_TEST
Packit 6c4009
      minval: 1
Packit 6c4009
      security_level: SXID_IGNORE
Packit 6c4009
    }
Packit 6c4009
    tcache_max {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
    }
Packit 6c4009
    tcache_count {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
    }
Packit 6c4009
    tcache_unsorted_limit {
Packit 6c4009
      type: SIZE_T
Packit 6c4009
    }
Packit Service 174e1f
    mxfast {
Packit Service 174e1f
      type: SIZE_T
Packit Service 174e1f
      minval: 0
Packit Service 174e1f
      security_level: SXID_IGNORE
Packit Service 174e1f
    }
Packit 6c4009
  }
Packit Service ef7c50
  cpu {
Packit 6c4009
    hwcap_mask {
Packit 6c4009
      type: UINT_64
Packit 6c4009
      env_alias: LD_HWCAP_MASK
Packit 6c4009
      default: HWCAP_IMPORTANT
Packit 6c4009
    }
Packit 6c4009
  }
Packit 6c4009
Packit 6c4009
  elision {
Packit 6c4009
    enable {
Packit 6c4009
      type: INT_32
Packit 6c4009
      minval: 0
Packit 6c4009
      maxval: 1
Packit 6c4009
    }
Packit 6c4009
    skip_lock_busy {
Packit 6c4009
      type: INT_32
Packit 6c4009
      default: 3
Packit 6c4009
    }
Packit 6c4009
    skip_lock_internal_abort {
Packit 6c4009
      type: INT_32
Packit 6c4009
      default: 3
Packit 6c4009
    }
Packit 6c4009
    skip_lock_after_retries {
Packit 6c4009
      type: INT_32
Packit 6c4009
      default: 3
Packit 6c4009
    }
Packit 6c4009
    tries {
Packit 6c4009
      type: INT_32
Packit 6c4009
      default: 3
Packit 6c4009
    }
Packit 6c4009
    skip_trylock_internal_abort {
Packit 6c4009
      type: INT_32
Packit 6c4009
      default: 3
Packit 6c4009
    }
Packit 6c4009
  }
Packit Service e25114
Packit Service e25114
  rtld {
Packit Service e25114
    nns {
Packit Service e25114
      type: SIZE_T
Packit Service e25114
      minval: 1
Packit Service e25114
      maxval: 16
Packit Service e25114
      default: 4
Packit Service e25114
    }
Packit Service 10fd49
    optional_static_tls {
Packit Service 10fd49
      type: SIZE_T
Packit Service 10fd49
      minval: 0
Packit Service 10fd49
      default: 512
Packit Service 10fd49
    }
Packit Service e25114
  }
Packit 6c4009
}