Reverse two pthread_internal_t fields

The golang runtime currently expects to find the pthread key data after
the tls slots.

Bug: http://b/78026329
Bug: http://b/118381796
Test: run a golang-based app, bionic unit tests
Change-Id: Idc777d809b803093e1c81d9a2ce4eafcc7d61f8d
Merged-In: Idc777d809b803093e1c81d9a2ce4eafcc7d61f8d
(cherry picked from commit a2c30723da)
This commit is contained in:
Ryan Prichard 2018-10-29 16:31:51 -07:00
parent f284a47544
commit 25c34e0feb
1 changed files with 3 additions and 2 deletions

View File

@ -144,11 +144,12 @@ class pthread_internal_t {
bionic_tls* bionic_tls;
pthread_key_data_t key_data[BIONIC_PTHREAD_KEY_COUNT];
// The thread pointer (__get_tls()) points at this field. This field must come last so that
// an executable's TLS segment can be allocated at a fixed offset after the thread pointer.
void* tls[BIONIC_TLS_SLOTS];
// The golang runtime currently expects this field to come after the slots.
pthread_key_data_t key_data[BIONIC_PTHREAD_KEY_COUNT];
};
__LIBC_HIDDEN__ int __init_thread(pthread_internal_t* thread);