What are the dangers of using infinite loop?

 
Hello,

I wanted to ask what are the dangers and risks in using an infinite loop within the start() function? For example, memory leakage, degradation, other problems?

Thank you kindly in advance.

Regards,

RJF
 
No problem if You use IsStopped function
   // there is your endless loop
   while(!IsStopped())
   {
      ...
   }
 
No problem if You use IsStopped function
   // there is your endless loop
   while(!IsStopped())
   {
      ...
   }



Thanks Slawa. You have helped me immensely.

Have a nice weekend !!

Regards

RJF
Reason: