2001-01-05 16:27:04 +00:00
|
|
|
/* Run-time dynamic linker data structures for loaded ELF shared objects.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
2001-01-05 16:27:04 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2001-01-05 16:27:04 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2001-01-05 16:27:04 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2001-01-05 16:27:04 +00:00
|
|
|
|
|
|
|
#ifndef _LDSODEFS_H
|
|
|
|
|
2001-01-07 02:00:21 +00:00
|
|
|
/* We have the auxiliary vector. */
|
|
|
|
#define HAVE_AUX_VECTOR
|
|
|
|
|
2016-04-11 08:27:02 +00:00
|
|
|
/* Get the real definitions. */
|
|
|
|
#include_next <ldsodefs.h>
|
|
|
|
|
2001-01-19 05:16:45 +00:00
|
|
|
/* We can assume that the kernel always provides the AT_UID, AT_EUID,
|
2002-07-20 17:31:30 +00:00
|
|
|
AT_GID, and AT_EGID values in the auxiliary vector from 2.4.0 or so on. */
|
2012-07-12 12:31:32 +00:00
|
|
|
#define HAVE_AUX_XID
|
2001-01-19 05:16:45 +00:00
|
|
|
|
2003-06-26 19:54:29 +00:00
|
|
|
/* We can assume that the kernel always provides the AT_SECURE value
|
|
|
|
in the auxiliary vector from 2.5.74 or so on. */
|
2012-08-03 19:54:08 +00:00
|
|
|
#define HAVE_AUX_SECURE
|
2003-06-26 19:54:29 +00:00
|
|
|
|
2001-01-19 05:16:45 +00:00
|
|
|
/* Starting with one of the 2.4.0 pre-releases the Linux kernel passes
|
|
|
|
up the page size information. */
|
2012-07-12 12:31:32 +00:00
|
|
|
#define HAVE_AUX_PAGESIZE
|
2001-01-19 05:16:45 +00:00
|
|
|
|
2001-01-05 16:27:04 +00:00
|
|
|
#endif /* ldsodefs.h */
|