1. will frequent system_exec() exhaust the memory
help re memory issue
i have very little knowledge of how memory is allocated:
will frequent use of system_exec() exhaust the memory?
2. Re: will frequent system_exec() exhaust the memory
mark wrote:
>
>
> help re memory issue
> i have very little knowledge of how memory is allocated:
>
> will frequent use of system_exec() exhaust the memory?
That depends on what you call with system_exec(). In general though, no, you
don't need to worry about memory.
As long as the program you are calling doesn't have memory leaks and you aren't
creating dozens of instances at one time, it should be fine.
Chris Bensler
~ The difference between ordinary and extraordinary is that little extra ~
http://empire.iwireweb.com - Empire for Euphoria
3. Re: will frequent system_exec() exhaust the memory
Thanks Chris
Give me a peace of mind