X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fx86-linux-os.c;h=d68e964745072ba60b5e35cf080c7b9607037048;hb=e0f344219fe6cd5329aae9fc343466bcd71d4edf;hp=9321e6c1ead750325d60776d65de958a942828e6;hpb=6cde30b92d3e6092372d0164bb47b58568d9360f;p=sbcl.git diff --git a/src/runtime/x86-linux-os.c b/src/runtime/x86-linux-os.c index 9321e6c..d68e964 100644 --- a/src/runtime/x86-linux-os.c +++ b/src/runtime/x86-linux-os.c @@ -81,7 +81,6 @@ int arch_os_thread_init(struct thread *thread) { 1, MODIFY_LDT_CONTENTS_DATA, 0, 0, 0, 1 }; int n; - check_blockables_blocked_or_lose(); thread_mutex_lock(&modify_ldt_lock); n=modify_ldt(0,local_ldt_copy,sizeof local_ldt_copy); /* get next free ldt entry */ @@ -140,7 +139,6 @@ int arch_os_thread_cleanup(struct thread *thread) { }; int result; - check_blockables_blocked_or_lose(); ldt_entry.entry_number=thread->tls_cookie; thread_mutex_lock(&modify_ldt_lock); result = modify_ldt(1, &ldt_entry, sizeof (ldt_entry));