Ignore:
Timestamp:
Aug 31, 2022, 11:55:47 AM (20 months ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
594e1db
Parents:
e5c04b9
Message:

Changed declarations using _Thread_local to use thread.
I'm fairly sure they do exactly the same, but
thread is:

  • more consistent with uC++.
  • Shorter.
  • Better documented.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/preemption.cfa

    re5c04b9 r1bcbf02  
    666666// Kernel Signal Handlers
    667667//=============================================================================================
    668 __cfaabi_dbg_debug_do( static _Thread_local void * last_interrupt = 0; )
     668__cfaabi_dbg_debug_do( static __thread void * last_interrupt = 0; )
    669669
    670670// Context switch signal handler
Note: See TracChangeset for help on using the changeset viewer.