|
@@ -1,14 +1,14 @@
|
|
|
|
|
|
import std.stdio;
|
|
import std.stdio;
|
|
|
|
|
|
-/**/
|
|
|
|
|
|
+/*
|
|
// test1
|
|
// test1
|
|
import std.concurrency : spawn;
|
|
import std.concurrency : spawn;
|
|
import core.time : Duration, dur;
|
|
import core.time : Duration, dur;
|
|
import core.thread : Thread;
|
|
import core.thread : Thread;
|
|
|
|
|
|
import test1 : test1_spawner;
|
|
import test1 : test1_spawner;
|
|
-/**/
|
|
|
|
|
|
+*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -32,19 +32,19 @@ import test3 : test3_spawner;
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
|
|
-/*
|
|
|
|
|
|
+/**/
|
|
// test4
|
|
// test4
|
|
import std.concurrency : spawn;
|
|
import std.concurrency : spawn;
|
|
|
|
|
|
import test4 : test4_spawner;
|
|
import test4 : test4_spawner;
|
|
-*/
|
|
|
|
|
|
+/**/
|
|
|
|
|
|
|
|
|
|
void main(){
|
|
void main(){
|
|
- spawn(&test1_spawner); // test1 run
|
|
|
|
|
|
+ //spawn(&test1_spawner); // test1 run
|
|
//spawn(&test2_spawner); // test2 run
|
|
//spawn(&test2_spawner); // test2 run
|
|
//spawn(&test3_spawner); // test3 run
|
|
//spawn(&test3_spawner); // test3 run
|
|
- //spawn(&test4_spawner); // test4 run
|
|
|
|
|
|
+ spawn(&test4_spawner); // test4 run
|
|
|
|
|
|
//Thread.sleep(dur!"seconds"(125));
|
|
//Thread.sleep(dur!"seconds"(125));
|
|
//Thread.sleep(dur!"seconds"(3));
|
|
//Thread.sleep(dur!"seconds"(3));
|