/* Filename : tidTest.cvl Author : XXX Created : 2024-12-31 Modified : 2025-01-17 Simple test of tid module. some Lab some division some institution */ #include "tid.h" int x=-1; int main(void) { int nthread = 3; tid_init(nthread); $parfor(int i:0..nthread-1) { tid_register(i); $print(i, "\n"); x=i; tid_unregister(); } tid_finalize(); }