diff --git a/ChangeLog b/ChangeLog index f5292c5d2e..8ba955a775 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-06-17 Adhemerval Zanella + + * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch + fields. + 2013-06-17 Roland McGrath * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending diff --git a/nptl/sysdeps/powerpc/tls.h b/nptl/sysdeps/powerpc/tls.h index 46dac9e9f3..8e0ada6bfa 100644 --- a/nptl/sysdeps/powerpc/tls.h +++ b/nptl/sysdeps/powerpc/tls.h @@ -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;