gnash-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gnash-dev] FileIO extension eating up memory (was: Building extensi


From: Udo Giacomozzi
Subject: Re: [Gnash-dev] FileIO extension eating up memory (was: Building extensions)
Date: Wed, 9 May 2007 15:29:54 +0200

Hello Udo,

Wednesday, May 9, 2007, 10:14:48 AM, you wrote:
UG> I see attachInterface() is called each time I open* a file and thus
UG> Gnash is quickly eating up all my memory...

I attached a simple testcase that shows the problem.

Add some printf() to attachInterface() so you can see when it gets
called.

ActionScript code in frame 3 (1-based):


--------------------------8<------------------------------------
function loadfile(fname) {
        
        file = new FileIO();
        
        if (!file.fopen(fname, "r")) 
                return null;
        
        var txt = file.fread();
        
        file.fclose();
        
        return txt;
        
}

uptime = loadfile("/proc/uptime"); // "Uptime:" text field
if (!cycles) cycles=0;
cycles++;    // "Cycles:" text field

gotoAndPlay(2);
--------------------------8<------------------------------------

Udo

Attachment: fread_test.swf
Description: application/shockwave-flash


reply via email to

[Prev in Thread] Current Thread [Next in Thread]