source: clfs-sysroot/patches/glibc-2.6-hppa_nptl-1.patch @ 00520f6

Last change on this file since 00520f6 was 00520f6, checked in by Joe Ciccone <jciccone@…>, 17 years ago

Update patches.

  • Property mode set to 100644
File size: 4.0 KB
  • elf/elf.h

    Submitted By: Joe Ciccone <jciccone@linuxfromscratch.org>
    Date: 2006-11-30
    Initial Package Version: 2.5
    	Rediffed against 2.6 by Joe Ciccone
    Upstream Status: In CVS
    Origin: http://lists.parisc-linux.org/pipermail/parisc-linux/2006-July/029549.html
    Description: Adds the TLS reloc numbers to elf.h
                 Works around a bug in the data initialization.
                 Adds a missing macro.
    
    diff -Naur glibc-2.6.orig/elf/elf.h glibc-2.6/elf/elf.h
    old new  
    17101710#define R_PARISC_LTOFF_FPTR14R  62      /* LT-rel. fct ptr, right 14 bits. */
    17111711#define R_PARISC_FPTR64         64      /* 64 bits function address.  */
    17121712#define R_PARISC_PLABEL32       65      /* 32 bits function address.  */
     1713#define R_PARISC_PLABEL21L      66      /* Left 21 bits of fdesc address */
     1714#define R_PARISC_PLABEL14R      70      /* Right 14 bits of fdesc address */
    17131715#define R_PARISC_PCREL64        72      /* 64 bits PC-rel. address.  */
    17141716#define R_PARISC_PCREL22F       74      /* 22 bits PC-rel. address.  */
    17151717#define R_PARISC_PCREL14WR      75      /* PC-rel. address, right 14 bits.  */
     
    17701772#define R_PARISC_LTOFF_TP16F    229     /* 16 bits LT-TP-rel. address.  */
    17711773#define R_PARISC_LTOFF_TP16WF   230     /* 16 bits LT-TP-rel. address.  */
    17721774#define R_PARISC_LTOFF_TP16DF   231     /* 16 bits LT-TP-rel. address.  */
     1775
     1776#define R_PARISC_GNU_VTENTRY    232
     1777#define R_PARISC_GNU_VTINHERIT  233
     1778#define R_PARISC_TLS_GD21L      234     /* GD 21-bit left */
     1779#define R_PARISC_TLS_GD14R      235     /* GD 14-bit right */
     1780#define R_PARISC_TLS_GDCALL     236     /* GD call to __t_g_a */
     1781#define R_PARISC_TLS_LDM21L     237     /* LD module 21-bit left */
     1782#define R_PARISC_TLS_LDM14R     238     /* LD module 14-bit right */
     1783#define R_PARISC_TLS_LDMCALL    239     /* LD module call to __t_g_a */
     1784#define R_PARISC_TLS_LDO21L     240     /* LD offset 21-bit left */
     1785#define R_PARISC_TLS_LDO14R     241     /* LD offset 14-bit right */
     1786#define R_PARISC_TLS_DTPMOD32   242     /* DTP module 32-bit */
     1787#define R_PARISC_TLS_DTPMOD64   243     /* DTP module 64-bit */
     1788#define R_PARISC_TLS_DTPOFF32   244     /* DTP offset 32-bit */
     1789#define R_PARISC_TLS_DTPOFF64   245     /* DTP offset 32-bit */
     1790
     1791#define R_PARISC_TLS_LE21L      R_PARISC_TPREL21L
     1792#define R_PARISC_TLS_LE14R      R_PARISC_TPREL14R
     1793#define R_PARISC_TLS_IE21L      R_PARISC_LTOFF_TP21L
     1794#define R_PARISC_TLS_IE14R      R_PARISC_LTOFF_TP14R
     1795#define R_PARISC_TLS_TPREL32    R_PARISC_TPREL32
     1796#define R_PARISC_TLS_TPREL64    R_PARISC_TPREL64
     1797
    17731798#define R_PARISC_HIRESERVE      255
    17741799
    17751800/* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr.  */
  • elf/rtld.c

    diff -Naur glibc-2.6.orig/elf/rtld.c glibc-2.6/elf/rtld.c
    old new  
    379379     know it is available.  We do not have to clear the memory if we
    380380     do not have to use the temporary bootstrap_map.  Global variables
    381381     are initialized to zero by default.  */
    382 #ifndef DONT_USE_BOOTSTRAP_MAP
     382#if !defined DONT_USE_BOOTSTRAP_MAP
    383383# ifdef HAVE_BUILTIN_MEMSET
    384384  __builtin_memset (bootstrap_map.l_info, '\0', sizeof (bootstrap_map.l_info));
    385385# else
    386   for (size_t cnt = 0;
    387        cnt < sizeof (bootstrap_map.l_info) / sizeof (bootstrap_map.l_info[0]);
    388        ++cnt)
    389     bootstrap_map.l_info[cnt] = 0;
     386  /* Clear the whole bootstrap_map structure */
     387  for (char *cnt = (char *)&(bootstrap_map);
     388       cnt < ((char *)&(bootstrap_map) + sizeof (bootstrap_map));
     389       *cnt++ = '\0');
    390390# endif
    391391# if USE___THREAD
    392392  bootstrap_map.l_tls_modid = 0;
  • sysdeps/unix/sysv/linux/getcwd.c

    diff -Naur glibc-2.6.orig/sysdeps/unix/sysv/linux/getcwd.c glibc-2.6/sysdeps/unix/sysv/linux/getcwd.c
    old new  
    3131
    3232#include <kernel-features.h>
    3333
     34#ifndef MAX
     35# define MAX(a, b) ((a) < (b) ? (b) : (a))
     36#endif
    3437
    3538/* If we compile the file for use in ld.so we don't need the feature
    3639   that getcwd() allocates the buffers itself.  */
Note: See TracBrowser for help on using the repository browser.