conformtest: Fix XPG standard naming.
[glibc.git] / elf / dl-tunable-types.h
blob37a4e8021f8f1d4d1f3d5f0b7a0a4093dfe7f88c
1 /* Tunable type information.
3 Copyright (C) 2016-2017 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef _TUNABLE_TYPES_H_
21 # define _TUNABLE_TYPES_H_
22 #include <stddef.h>
24 typedef enum
26 TUNABLE_TYPE_INT_32,
27 TUNABLE_TYPE_SIZE_T,
28 TUNABLE_TYPE_STRING
29 } tunable_type_code_t;
31 typedef struct
33 tunable_type_code_t type_code;
34 int64_t min;
35 int64_t max;
36 } tunable_type_t;
38 typedef union
40 int64_t numval;
41 const char *strval;
42 } tunable_val_t;
44 typedef void (*tunable_callback_t) (tunable_val_t *);
46 /* Security level for tunables. This decides what to do with individual
47 tunables for AT_SECURE binaries. */
48 typedef enum
50 /* Erase the tunable for AT_SECURE binaries so that child processes don't
51 read it. */
52 TUNABLE_SECLEVEL_SXID_ERASE = 0,
53 /* Ignore the tunable for AT_SECURE binaries, but don't erase it, so that
54 child processes can read it. */
55 TUNABLE_SECLEVEL_SXID_IGNORE = 1,
56 /* Read the tunable. */
57 TUNABLE_SECLEVEL_NONE = 2,
58 } tunable_seclevel_t;
61 #endif