mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:47:44 +00:00
Kernel: Disable __thread and TLS on x86_64 for now
They're not yet properly supported.
This commit is contained in:
parent
c0bd2c0691
commit
fe2716df21
5 changed files with 28 additions and 6 deletions
|
@ -26,7 +26,10 @@ struct SpecificTable {
|
|||
|
||||
static KeyTable s_keys;
|
||||
|
||||
__thread SpecificTable t_specifics;
|
||||
# ifndef X86_64_NO_TLS
|
||||
__thread
|
||||
# endif
|
||||
SpecificTable t_specifics;
|
||||
|
||||
int __pthread_key_create(pthread_key_t* key, KeyDestructor destructor)
|
||||
{
|
||||
|
|
|
@ -11,8 +11,16 @@
|
|||
#include <string.h>
|
||||
|
||||
// FIXME: use thread_local and a String once TLS works
|
||||
__thread char* s_dlerror_text = NULL;
|
||||
__thread bool s_dlerror_retrieved = false;
|
||||
#ifndef X86_64_NO_TLS
|
||||
__thread
|
||||
#endif
|
||||
char* s_dlerror_text
|
||||
= NULL;
|
||||
#ifndef X86_64_NO_TLS
|
||||
__thread
|
||||
#endif
|
||||
bool s_dlerror_retrieved
|
||||
= false;
|
||||
|
||||
static void store_error(const String& error)
|
||||
{
|
||||
|
|
|
@ -33,8 +33,14 @@ static constexpr size_t required_stack_alignment = 4 * MiB;
|
|||
static constexpr size_t highest_reasonable_guard_size = 32 * PAGE_SIZE;
|
||||
static constexpr size_t highest_reasonable_stack_size = 8 * MiB; // That's the default in Ubuntu?
|
||||
|
||||
__thread void* s_stack_location;
|
||||
__thread size_t s_stack_size;
|
||||
#ifndef X86_64_NO_TLS
|
||||
__thread
|
||||
#endif
|
||||
void* s_stack_location;
|
||||
#ifndef X86_64_NO_TLS
|
||||
__thread
|
||||
#endif
|
||||
size_t s_stack_size;
|
||||
|
||||
#define __RETURN_PTHREAD_ERROR(rc) \
|
||||
return ((rc) < 0 ? -(rc) : 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue