mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
86c2982568
This refreshes the line numbers, removes any fuzz (which would make any future forward ports easier) and standardizes the patch/file headers (which makes them easier to read). Signed-off-by: Alexey Neyman <stilor@att.net>
27 lines
840 B
Diff
27 lines
840 B
Diff
From 920e759ea4f48ca9c8b4dba6dfe5c88d27033121 Mon Sep 17 00:00:00 2001
|
|
From: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
|
Date: Mon, 17 Jun 2013 15:50:53 -0500
|
|
Subject: [PATCH 36/42] PowerPC: Reserve TCB space for EBB framework
|
|
|
|
This patch reserves four pointer to be used in future Event-Based
|
|
Branch framework for PowerPC.
|
|
(cherry picked from commit e55a9b256d53c7fc5145e3e4d338d3741b23e232)
|
|
---
|
|
nptl/sysdeps/powerpc/tls.h | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
--- a/nptl/sysdeps/powerpc/tls.h
|
|
+++ b/nptl/sysdeps/powerpc/tls.h
|
|
@@ -61,6 +61,11 @@
|
|
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;
|