X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fthread.h;h=3f823ccf520be23b1e8df680871547819a7cdef1;hb=656f994cdddc89af3a99c8af266816b09879df4a;hp=07b59dd9364be72b25c23a5ce6cdd8a9fcba28ea;hpb=13adeede88d026548e4d2da497f93d8024706a2b;p=sbcl.git diff --git a/src/runtime/thread.h b/src/runtime/thread.h index 07b59dd..3f823cc 100644 --- a/src/runtime/thread.h +++ b/src/runtime/thread.h @@ -50,7 +50,7 @@ static inline lispobj SymbolValue(u64 tagged_symbol_pointer, void *thread) { lispobj r= ((union per_thread_data *)thread) ->dynamic_values[fixnum_value(sym->tls_index)]; - if(r!=UNBOUND_MARKER_WIDETAG) return r; + if(r!=NO_TLS_VALUE_MARKER_WIDETAG) return r; } #endif return sym->value; @@ -73,7 +73,7 @@ static inline void SetSymbolValue(u64 tagged_symbol_pointer,lispobj val, void *t if(thread && sym->tls_index) { lispobj *pr= &(((union per_thread_data *)thread) ->dynamic_values[fixnum_value(sym->tls_index)]); - if(*pr!= UNBOUND_MARKER_WIDETAG) { + if(*pr!=NO_TLS_VALUE_MARKER_WIDETAG) { *pr=val; return; }