Thread Sleep RessourceS?

  • Thread starter Thread starter Boas Enkler
  • Start date Start date
B

Boas Enkler

Hi

sometimes I got the problem, that when I call Thread.Sleep(1000) it
seems like my application takes nearly 100% of the system performance.

I call it in the device wake, because my applikation has to wait if the
database is on the storage card.

Is there any known problem ? How may I prevent this?
 
It's doing something else. A Sleep call halts the thread allowing the
schedulaer to run another thread. There's no way for Sleep to use processor
time.

-Chris
 
Back
Top