in reply to Perl threads - just stuck

Was just stupid...... i think i need a break now ;)
threads->create(\&start(),"");
I am calling the start function instead of passing the reference.... Here is the correct way of doing it.
threads->create(\&start,"");
Now it works like a charm... Man that was easy.
Thanks SasiKumar