source: tests/concurrency/park/start_parked.cfa @ d464b79

Last change on this file since d464b79 was c26bea2a, checked in by Peter A. Buhr <pabuhr@…>, 14 months ago

first attempt at renaming directory tests/concurrent to tests/concurrency to harmonize with other concurrency directory names

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