Descriptioncmd/go, cmd/ld, runtime, os/user: TLS emulation for android
Based on cl/69170045 by Elias Naur.
There are currently several schemes for acquiring a TLS
slot to save the g register. None of them appear to work
for android. The closest are linux and darwin.
Linux uses a linker TLS relocation. This is not supported
by the android linker.
Darwin uses a fixed offset, and calls pthread_key_create
until it gets the slot it wants. As the runtime loads
late in the android process lifecycle, after an
arbitrary number of other libraries, we cannot rely on
any particular slot being available.
So we call pthread_key_create, take the first slot we are
given, and put it in runtime.tlsg, which we turn into a
regular variable in cmd/ld.
Makes android/arm cgo binaries work.
Patch Set 1 #Patch Set 2 : diff -r 86b431eeb5c2 https://code.google.com/p/go #Patch Set 3 : diff -r 86b431eeb5c2 https://code.google.com/p/go #
Total comments: 38
Patch Set 4 : diff -r 86b431eeb5c2 https://code.google.com/p/go #
Total comments: 4
Patch Set 5 : diff -r 0f766178488c https://code.google.com/p/go #Patch Set 6 : diff -r c7f38353757f https://code.google.com/p/go #
MessagesTotal messages: 13
|