After looking up how to implement it, I came across this site: https://maskray.me/blog/2021-02-14-all- ... al-storage
This site explains that there's one parameter of type size_t* that points to an array of two elements, a module ID, and the offset from the beginning of the local storage respectively, and that it returns a void*. With this information, I tried some variations of this implementation:
void *__tls_get_addr(size_t *v)
{
void* localStorage = getThreadLocalStorage();
const size_t tls_index = v[1];
return localStorage + tls_index;
}
I also tried using getThreadStaticBuffers instead, with no success. (The 3ds crashes only when trying to access these specific tls variables, after returning from the __tls_get_addr function)
If anyone has any idea of how I could achieve a correct implementation I would really appreciate it
