Changeset 67a1c67 for libcfa/src/concurrency
- Timestamp:
- Aug 31, 2022, 2:03:03 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 9d67a6d
- Parents:
- 38a238d (diff), 594e1db (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- libcfa/src/concurrency
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/fwd.hfa
r38a238d r67a1c67 35 35 extern "C" { 36 36 extern "Cforall" { 37 extern __attribute__((aligned(64))) _ Thread_localstruct KernelThreadData {37 extern __attribute__((aligned(64))) __thread struct KernelThreadData { 38 38 struct thread$ * volatile this_thread; 39 39 struct processor * volatile this_processor; -
libcfa/src/concurrency/kernel/private.hfa
r38a238d r67a1c67 88 88 #elif defined(CFA_HAVE_LINUX_RSEQ_H) 89 89 extern "Cforall" { 90 extern __attribute__((aligned(64))) _ Thread_localvolatile struct rseq __cfaabi_rseq;90 extern __attribute__((aligned(64))) __thread volatile struct rseq __cfaabi_rseq; 91 91 } 92 92 #else -
libcfa/src/concurrency/kernel/startup.cfa
r38a238d r67a1c67 133 133 //----------------------------------------------------------------------------- 134 134 // Global state 135 _ Thread_localstruct KernelThreadData __cfaabi_tls __attribute__ ((tls_model ( "initial-exec" ))) @= {135 __thread struct KernelThreadData __cfaabi_tls __attribute__ ((tls_model ( "initial-exec" ))) @= { 136 136 NULL, // cannot use 0p 137 137 NULL, … … 153 153 #elif defined(CFA_HAVE_LINUX_RSEQ_H) 154 154 extern "Cforall" { 155 __attribute__((aligned(64))) _ Thread_localvolatile struct rseq __cfaabi_rseq @= {155 __attribute__((aligned(64))) __thread volatile struct rseq __cfaabi_rseq @= { 156 156 .cpu_id : RSEQ_CPU_ID_UNINITIALIZED, 157 157 }; -
libcfa/src/concurrency/preemption.cfa
r38a238d r67a1c67 666 666 // Kernel Signal Handlers 667 667 //============================================================================================= 668 __cfaabi_dbg_debug_do( static _ Thread_localvoid * last_interrupt = 0; )668 __cfaabi_dbg_debug_do( static __thread void * last_interrupt = 0; ) 669 669 670 670 // Context switch signal handler
Note:
See TracChangeset
for help on using the changeset viewer.