]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
PowerPC: Reserve TCB space for EBB framework
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Mon, 17 Jun 2013 20:50:53 +0000 (15:50 -0500)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Mon, 17 Jun 2013 20:50:53 +0000 (15:50 -0500)
This patch reserves four pointer to be used in future Event-Based
Branch framework for PowerPC.

ChangeLog
nptl/sysdeps/powerpc/tls.h

index f5292c5d2e72c1b9157ed58a3a834777410ce414..8ba955a775987ee9b79a17a3daabb154e1dbf3bf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+       * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
+       fields.
+
 2013-06-17  Roland McGrath  <roland@hack.frob.com>
 
        * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
index 46dac9e9f3c5f4a2efb728b8d5b33bd74d57a167..8e0ada6bfabacd46c4b294d8f1938db089fc5e9d 100644 (file)
@@ -61,6 +61,11 @@ typedef union dtv
    are private.  */
 typedef struct
 {
+  /* Reservation for the Event-Based Branching ABI.  */
+  uintptr_t ebb_handler;
+  uintptr_t ebb_ctx_pointer;
+  uintptr_t ebb_reserved1;
+  uintptr_t ebb_reserved2;
   uintptr_t pointer_guard;
   uintptr_t stack_guard;
   dtv_t *dtv;