This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.14-274-g0a2349f


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  0a2349f929e937fb335ba53e217c05f5aa5d66d5 (commit)
      from  f3cdd4674892740f766ea0b5ab5e734e4a028cb0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0a2349f929e937fb335ba53e217c05f5aa5d66d5

commit 0a2349f929e937fb335ba53e217c05f5aa5d66d5
Author: Roland McGrath <mcgrathr@chromium.org>
Date:   Fri Sep 9 10:11:49 2011 -0700

    Define ELFOSABI_GNU.

diff --git a/ChangeLog b/ChangeLog
index 007b61c..98661dc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-09-09  Roland McGrath  <roland@hack.frob.com>
+
+	* elf/elf.h (ELFOSABI_GNU): New macro.
+	(ELFOSABI_LINUX): Define to that.
+
 2011-07-29  Denis Zaitceff  <zaitceff@gmail.com>
 
 	* string/strncat.c (strncat): Undef the symbol in case it has been
@@ -7,7 +12,7 @@
 
 	* elf/sotruss.ksh: Clean up, fix, and complete help messages.
 
-	* elf/dl-iteratephdr.c (hidden_proto): Fill in data from the real
+	* elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
 	link map.
 
 2011-08-17  Andreas Jaeger  <aj@suse.de>
diff --git a/elf/elf.h b/elf/elf.h
index 47db25c..7c64120 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -142,7 +142,8 @@ typedef struct
 #define ELFOSABI_SYSV		0	/* Alias.  */
 #define ELFOSABI_HPUX		1	/* HP-UX */
 #define ELFOSABI_NETBSD		2	/* NetBSD.  */
-#define ELFOSABI_LINUX		3	/* Linux.  */
+#define ELFOSABI_GNU		3	/* Object uses GNU ELF extensions.  */
+#define ELFOSABI_LINUX		ELFOSABI_GNU /* Compatibility alias.  */
 #define ELFOSABI_SOLARIS	6	/* Sun Solaris.  */
 #define ELFOSABI_AIX		7	/* IBM AIX.  */
 #define ELFOSABI_IRIX		8	/* SGI Irix.  */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |    7 ++++++-
 elf/elf.h |    3 ++-
 2 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]