comparison src/parallel_execution/Time.cbc @ 364:a0a3301bac4d

Add Time interface
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Thu, 29 Jun 2017 18:04:33 +0900
parents
children
comparison
equal deleted inserted replaced
363:3aab69fc4c28 364:a0a3301bac4d
1 typedef struct Time<Impl>{
2 union Data* time;
3 __code start(Impl* time, __code next(...));
4 __code end(Impl* time, __code next(...));
5 __code next(...);
6 } Queue;
7