fork-join_any和fork-join有所不同,fork-join_any的父進(jìn)程一直阻塞,直到任何一個并行的子進(jìn)程結(jié)束。
需要注意的是,當(dāng)其中任何一個子進(jìn)程和父進(jìn)程結(jié)束后,剩余未結(jié)束的子進(jìn)程不會停止,而是會一直執(zhí)行下去,直到仿真停止。
module forkJoin; int a, b, c, d; initial begin fork : forkBlock begin //frst process #50 a = 5; $display($stime,,,"a = %0d",a); end begin //second process #100 b = 10; $display($stime,,,"b = %0d",b); end begin //third process #100 c = 20; $display($stime,,,"c = %0d",c); end begin //fourth process #40 d = 15; $display($stime,,,"d = %0d",d); end join_any $display($stime,,, "out of the loop"); end endmodule
仿真log:
40 d = 15 40 out of the loop V C S S i m u l a t i o n R e p o r t
上面的fork-join-any示例中有4個子進(jìn)程,分別在時間40,50,100,100執(zhí)行。隨著進(jìn)程4結(jié)束,父進(jìn)程也會結(jié)束,仿真隨之停止。
審核編輯:湯梓紅
-
Verilog
+關(guān)注
關(guān)注
28文章
1343瀏覽量
109925 -
System
+關(guān)注
關(guān)注
0文章
165瀏覽量
36848 -
進(jìn)程
+關(guān)注
關(guān)注
0文章
201瀏覽量
13938
原文標(biāo)題:SystemVerilog中的fork-join_any
文章出處:【微信號:芯片驗(yàn)證工程師,微信公眾號:芯片驗(yàn)證工程師】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。
發(fā)布評論請先 登錄
相關(guān)推薦
評論