srish
Newbie level 6
- Joined
- Dec 13, 2011
- Messages
- 14
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 1,283
- Activity points
- 1,375
My code goes like this:
fork
begin
....
forever
begin
process 1;
if (some condition)
break;
end
.....
end
join_none
My doubt is if that "some condition" is met then will break will help to come out of forever block and fork-join_none block???? ........... fork-join_none has only 1 begin-end block......plz ans???
fork
begin
....
forever
begin
process 1;
if (some condition)
break;
end
.....
end
join_none
My doubt is if that "some condition" is met then will break will help to come out of forever block and fork-join_none block???? ........... fork-join_none has only 1 begin-end block......plz ans???