Changeset 2cf3b87 for src/Concurrency
- Timestamp:
- Nov 30, 2021, 11:27:30 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- f27331c
- Parents:
- 03cdad6
- Location:
- src/Concurrency
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Keywords.h
r03cdad6 r2cf3b87 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Keywords.h -- 7 // Keywords.h -- Implement concurrency constructs from their keywords. 8 8 // 9 9 // Author : Thierry Delisle … … 19 19 20 20 class Declaration; 21 namespace ast { 22 class TranslationUnit; 23 } 21 24 22 25 namespace Concurrency { … … 24 27 void implementMutexFuncs( std::list< Declaration * > & translationUnit ); 25 28 void implementThreadStarter( std::list< Declaration * > & translationUnit ); 29 30 /// Implement the sue-like keywords and the suspend keyword. 31 void implementKeywords( ast::TranslationUnit & translationUnit ); 32 /// Implement the mutex parameters and mutex statement. 33 void implementMutex( ast::TranslationUnit & translationUnit ); 34 /// Add the thread starter code to constructors. 35 void implementThreadStarter( ast::TranslationUnit & translationUnit ); 26 36 }; 27 37 -
src/Concurrency/module.mk
r03cdad6 r2cf3b87 15 15 ############################################################################### 16 16 17 SRC += Concurrency/Keywords.cc Concurrency/Keywords.h Concurrency/Waitfor.cc Concurrency/Waitfor.h 18 SRCDEMANGLE += Concurrency/Keywords.cc 17 SRC_CONCURRENCY = \ 18 Concurrency/KeywordsNew.cpp \ 19 Concurrency/Keywords.cc 19 20 21 SRC += $(SRC_CONCURRENCY) \ 22 Concurrency/Keywords.h \ 23 Concurrency/Waitfor.cc \ 24 Concurrency/Waitfor.h 25 26 SRCDEMANGLE += $(SRC_CONCURRENCY) 27
Note: See TracChangeset
for help on using the changeset viewer.