annotate src/parallel_execution/examples/helloWorld/Hello.h @ 971:edbd4495f08f

add helloWorld
author matac42 <matac@cr.ie.u-ryukyu.ac.jp>
date Thu, 17 Jun 2021 21:01:20 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
971
edbd4495f08f add helloWorld
matac42 <matac@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 typedef struct Hello <> {
edbd4495f08f add helloWorld
matac42 <matac@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 union Data* hello;
edbd4495f08f add helloWorld
matac42 <matac@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 char* string;
edbd4495f08f add helloWorld
matac42 <matac@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 __code h(Impl* hello, __code next(...));
edbd4495f08f add helloWorld
matac42 <matac@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 __code w(Impl* hello, __code next(...));
edbd4495f08f add helloWorld
matac42 <matac@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 __code next(...);
edbd4495f08f add helloWorld
matac42 <matac@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 } Hello;