Jump to content

Recommended Posts

Posted (edited)

hi,

what is the difference between using AdlibEnable for sampling and from while function with sleep within it in regards to memory and CPU load ?

in other words what is the difference between this:

adlibenable ("myfunc")

func myfunc()
....
endfunc

and this:

while 1
.....
sleep 250
wend

in regards to CPU usage and Memory.

Edited by erezlevi
  • Developers
Posted

There is no difference as far as CPU.. (assuming you have some more code in the first example)

The big difference is that a call to Myfunc() is made every 250ms irrelevent what section of the script is running when using AdLib.

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...