10mb memory?

BlitzMax Forums/BlitzMax Programming/10mb memory?

Pineapple(Posted 2010) [#1]
I'm writing a program I intend to use basically as a shortcut dock to run in the background when I'm programming to have all my utilities well organized and easy to execute on-the-fly. I want to keep it running in the background, so the program grids almost to a halt when the window is inactive.

When I build this code, it takes up 10mb of memory according to the task manager. Why is this so high when it's doing absolutely nothing?




Thareh(Posted 2010) [#2]
My guess is that the libraries you imported (brl.glmax2d, brl.random & brl.retro) is using those 10 megabytes of memory.


Pineapple(Posted 2010) [#3]
Is there any way to reduce this?


Brucey(Posted 2010) [#4]
I don't think it is much to be concerned about.


Czar Flavius(Posted 2010) [#5]
My webcam's hiddenware uses 50mb even when my cam isn't plugged in. 10mb is nothing to worry about.


Zeke(Posted 2010) [#6]
open task manager and run this:
Framework brl.hook 'change this
Delay 5000

and look how much memory each module use...
^^ change framework module then you can see how much memory module take

my byrathon takes about 100-200 mb...and its fine for me....


Grisu(Posted 2010) [#7]
I think Glmax2d is a memory hook here.

Perhaps plain MAXGUI would be better for this kind of app. - Even my bloated radio player stays under 10 MB. :)