patches/glibc/2.6/130-i686-assembler.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 14 21:30:27 2008 +0000 (2008-10-14)
changeset 935 e175e3538310
parent 744 4bf8448536d5
permissions -rw-r--r--
Introduce the notion of a 'sample comment'.

- presence of the sample's reported.by file is now mandatory.
- when saving a sample, reporter name & URL are queried, to avoid operator forget about creating the reported.by file.
- when saving a sample, one can store a few-liner comment.
- when recalling a sample, the reporter name, URL and comment (if present) are printed.
- update the powerpc-e500v2-linux-gnuspe sample to include Nate's comment (from his original mail).
- update all samples that were missing the reported.by file.

/trunk/scripts/saveSample.sh | 46 35 11 0 ++++++++++++++++++------
/trunk/scripts/showSamples.sh | 12 6 6 0 +++---
/trunk/samples/powerpc-e500v2-linux-gnuspe/reported.by | 15 15 0 0 ++++++++
/trunk/samples/samples.mk | 22 17 5 0 +++++++++--
4 files changed, 73 insertions(+), 22 deletions(-)
yann@402
     1
2007-02-15  Khem Raj  <kraj@xxxxxxxxxx>
yann@402
     2
yann@402
     3
       * sysdeps/unix/sysv/linux/i386/sysdep.h: Re-define __i686.
yann@402
     4
       * nptl/sysdeps/pthread/pt-initfini.c: Ditto.
yann@402
     5
yann@402
     6
yann@402
     7
yann@402
     8
Index: glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h
yann@402
     9
===================================================================
yann@402
    10
--- glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h	(revision 1469)
yann@402
    11
+++ glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h	(working copy)
yann@402
    12
@@ -29,6 +29,10 @@
yann@402
    13
 #include <dl-sysdep.h>
yann@402
    14
 #include <tls.h>
yann@402
    15
 
yann@402
    16
+#if defined __i686 && defined __ASSEMBLER__
yann@402
    17
+#undef __i686
yann@402
    18
+#define __i686 __i686
yann@402
    19
+#endif
yann@402
    20
 
yann@402
    21
 /* For Linux we can use the system call table in the header file
yann@402
    22
 	/usr/include/asm/unistd.h
yann@402
    23
Index: glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c
yann@402
    24
===================================================================
yann@402
    25
--- glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c	(revision 1469)
yann@402
    26
+++ glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c	(working copy)
yann@402
    27
@@ -45,6 +45,11 @@
yann@402
    28
 /* Embed an #include to pull in the alignment and .end directives. */
yann@402
    29
 asm ("\n#include \"defs.h\"");
yann@402
    30
 
yann@402
    31
+asm ("\n#if defined __i686 && defined __ASSEMBLER__");
yann@402
    32
+asm ("\n#undef __i686");
yann@402
    33
+asm ("\n#define __i686 __i686");
yann@402
    34
+asm ("\n#endif");
yann@402
    35
+
yann@402
    36
 /* The initial common code ends here. */
yann@402
    37
 asm ("\n/*@HEADER_ENDS*/");
yann@402
    38