Hello ,
i have a scenario like thisthread1 {
e1.notify();
}
thread2{
while(1){
wait(e1);
}
}
know thread 1 leaves control after two loop i.e after two event notify now i want thread2 to also run twice ...

can use sc_event_and_list here ???will this fullfill my purpose ...