about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/ldsodefs.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-01-05 16:27:04 +0000
committerUlrich Drepper <drepper@redhat.com>2001-01-05 16:27:04 +0000
commit155fd00c743bd428a78ed66c3743bc9f8b4a13b1 (patch)
treebc8d90ac4e51002209299542b6a18913bbf42aff /sysdeps/unix/sysv/linux/ldsodefs.h
parentc4f66413465663529a9aa2559f794d098da7c681 (diff)
downloadglibc-155fd00c743bd428a78ed66c3743bc9f8b4a13b1.tar.gz
glibc-155fd00c743bd428a78ed66c3743bc9f8b4a13b1.tar.xz
glibc-155fd00c743bd428a78ed66c3743bc9f8b4a13b1.zip
Update.
	* elf/dl-support.c (non_dynamic_init): Don't define DL_FIND_AUXV
	if it is not available.  Instead use it only if it is available.
	* sysdeps/unix/sysv/linux/ldsodefs.h: New file.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ldsodefs.h')
-rw-r--r--sysdeps/unix/sysv/linux/ldsodefs.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/ldsodefs.h b/sysdeps/unix/sysv/linux/ldsodefs.h
new file mode 100644
index 0000000000..d5ef2e2643
--- /dev/null
+++ b/sysdeps/unix/sysv/linux/ldsodefs.h
@@ -0,0 +1,38 @@
+/* Run-time dynamic linker data structures for loaded ELF shared objects.
+   Copyright (C) 2001 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   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
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+#ifndef	_LDSODEFS_H
+
+/* Get the real definitions.  */
+#include_next <ldsodefs.h>
+
+/* Now define our stuff.  */
+
+/* Locating the auxiliary vector.  */
+#ifndef DL_FIND_AUXV
+# define DL_FIND_AUXV(auxp, envp) \
+  do { \
+    void **_tmp; \
+    for (_tmp = (void **) (envp); *_tmp; ++_tmp) \
+      continue; \
+    (auxp) = (void *) ++_tmp; \
+  } while (0)
+#endif
+
+#endif /* ldsodefs.h */