1.0.24.44: bug in INVALID-ARRAY-INDEX-ERROR, leaving EXPECTED-TYPE slot unbound
[sbcl.git] / src / runtime / x86-linux-os.c
index 9321e6c..c15665d 100644 (file)
@@ -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 */
@@ -108,8 +107,12 @@ int arch_os_thread_init(struct thread *thread) {
     pthread_mutex_unlock(&modify_ldt_lock);
 
     if(n<0) return 0;
+#ifdef LISP_FEATURE_GCC_TLS
+    current_thread = thread;
+#else
     pthread_setspecific(specials,thread);
 #endif
+#endif
 #ifdef LISP_FEATURE_C_STACK_IS_CONTROL_STACK
     /* Signal handlers are run on the control stack, so if it is exhausted
      * we had better use an alternate stack for whatever signal tells us
@@ -140,7 +143,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));