how to delay in the middle of the code without cpu usage
-
I want to delay in the middle of my code without cpu usage , I mean I dont want to use things like timer . if there is any function or algurithm like delay() in turbo C . thanks
V_shr wrote:
I want to delay in the middle of my code without cpu usage , I mean I dont want to use things like timer
are you talking about the Windows timer (OnTimer, SetTimer) ? that's the simplest way to do what you describe.
image processing toolkits | batch image processing | blogging
-
I want to delay in the middle of my code without cpu usage , I mean I dont want to use things like timer . if there is any function or algurithm like delay() in turbo C . thanks
-
V_shr wrote:
I want to delay in the middle of my code without cpu usage , I mean I dont want to use things like timer
are you talking about the Windows timer (OnTimer, SetTimer) ? that's the simplest way to do what you describe.
image processing toolkits | batch image processing | blogging
-
Use
Sleep(delay);
http://www.readytogiveup.com/[^] - Do something special today.