mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-20 09:21:55 +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
Notes:
sideshowbarker
2024-07-18 11:12:22 +09:00
Author: https://github.com/gunnarbeutner
Commit: fe2716df21
Pull-request: https://github.com/SerenityOS/serenity/pull/8333
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue