Changeset 8728104
- Timestamp:
- Jan 30, 2023, 8:59:28 PM (22 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- ce691d2
- Parents:
- 0f15e3b (diff), 1c75ef8 (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. - Files:
-
- 9 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/Makefile.am
r0f15e3b r8728104 115 115 concurrency/mutex_stmt.hfa \ 116 116 concurrency/select.hfa \ 117 concurrency/channel.hfa 117 concurrency/channel.hfa \ 118 concurrency/actor.hfa 118 119 119 120 inst_thread_headers_src = \ -
libcfa/src/concurrency/locks.hfa
r0f15e3b r8728104 511 511 // flag showing if lock is held 512 512 volatile bool held; 513 514 #ifdef __CFA_DEBUG__515 // for deadlock detection516 struct thread$ * owner;517 #endif518 513 }; 519 514 … … 526 521 static inline void ?=?( spin_queue_lock & this, spin_queue_lock this2 ) = void; 527 522 528 // if this is called recursively IT WILL DEADLOCK! !!!!523 // if this is called recursively IT WILL DEADLOCK! 529 524 static inline void lock(spin_queue_lock & this) with(this) { 530 525 mcs_spin_node node; -
src/Concurrency/module.mk
r0f15e3b r8728104 16 16 17 17 SRC += \ 18 Concurrency/Actors.cpp \ 19 Concurrency/Actors.hpp \ 18 20 Concurrency/KeywordsNew.cpp \ 19 21 Concurrency/Keywords.cc \ … … 21 23 Concurrency/WaitforNew.cpp \ 22 24 Concurrency/Waitfor.cc \ 23 Concurrency/Waitfor.h 25 Concurrency/Waitfor.h -
src/main.cc
r0f15e3b r8728104 46 46 #include "Common/UnimplementedError.h" // for UnimplementedError 47 47 #include "Common/utility.h" // for deleteAll, filter, printAll 48 #include "Concurrency/Actors.hpp" // for implementActors 48 49 #include "Concurrency/Keywords.h" // for implementMutex, implement... 49 50 #include "Concurrency/Waitfor.h" // for generateWaitfor … … 341 342 PASS( "Generate Autogen Routines", Validate::autogenerateRoutines( transUnit ) ); 342 343 344 PASS( "Implement Actors", Concurrency::implementActors( transUnit ) ); 345 343 346 PASS( "Implement Mutex", Concurrency::implementMutex( transUnit ) ); 344 347 PASS( "Implement Thread Start", Concurrency::implementThreadStarter( transUnit ) );
Note: See TracChangeset
for help on using the changeset viewer.