Fork disable threads

Disable all the threads within the fork in following code and give the output.
fork:fork_name
begin:C
$display("time = %0d, Thread C has started ",$time );

(20);

$display("time = %0d, Thread C has finished ",$time );
end
begin:A
$display("time = %0d, Thread A has started ",$time );
#(10);
$display("time = %0d, Thread A has finished ",$time );
end
begin:B
$display("time = %0d, Thread B has started ",$time );
#(5);
$display("time = %0d, Thread B has finished ",$time );
end
join_any

In reply to ramesh9160576144:

And what is your question?

Suppose if we disable all the threads in the above snippet , what would be the output ?

In reply to ramesh9160576144:

When do you want to do the disable?