source: tests/concurrent/park/start_parked.cfa @ d13dd6b

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since d13dd6b was 66812dd, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

convert tests to always print output (no empty .expect files)

  • Property mode set to 100644
File size: 236 bytes
Line 
1#include <thread.hfa>
2
3thread Parker {};
4void main( Parker & ) {
5        park( __cfaabi_dbg_ctx );
6}
7
8int main() {
9        for(1000) {
10                Parker parker;
11                unpark( parker __cfaabi_dbg_ctx2 );
12        }
13        printf( "done\n" );                                                                     // non-empty .expect file
14}
Note: See TracBrowser for help on using the repository browser.