I tried Lauro's C example in scratchbox environment and see that it's indeed forking 4 more processes. So this is not a python problem. This problem's root cause seems to reside in the widget library. I can't imagine any valid reason for gtk/hildon to fork more processes just to show a GUI dialog. Does anyone know?
<br><br><div><span class="gmail_quote">On 12/31/07, <b class="gmail_sendername">Martin Grimme</b> &lt;<a href="mailto:martin.grimme@gmail.com">martin.grimme@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Especially make use of gc.collect() after you have worked with<br>gdk.Pixbuf objects. They won&#39;t free their memory otherwise. It&#39;s a<br>good habit to free unused Pixbufs with del and run the garbage<br>collector afterwards.
<br>And be aware that if a class overrides the __del__ method (some sort<br>of destructor), it won&#39;t be freed by the garbage collector at all.<br><br><br>Cheers,<br>Martin<br><br>2007/12/31, Alex Iliadis &lt;<a href="mailto:alex@immunityinc.com">
alex@immunityinc.com</a>&gt;:<br>&gt; I recommend using the garbage collector module manually to override the<br>&gt; defaults. Python for some reason doesn&#39;t reclaim memory fast. So if you<br>&gt; put in your code:<br>
&gt; import gc<br>&gt; gc.collect()&nbsp;&nbsp;(at the right spots, probably after the file chooser dialog<br>&gt; and after some memory intensive tasks). You should notice a lot of memory<br>&gt; being free&#39;d up.<br>&gt;<br>&gt; -Alex
<br>&gt;<br>&gt; On Sunday 30 December 2007 05:20:34 pm Jayesh Salvi wrote:<br>&gt; &gt; Hi,<br>&gt; &gt;<br>&gt; &gt; I am porting a pygtk application to maemo. It works alright, but I<br>&gt; &gt; noticed that it was consuming lot of memory, preventing me from opening
<br>&gt; &gt; other applications.<br>&gt; &gt;<br>&gt; &gt; When I investigated, I found that my python application was forking 4<br>&gt; &gt; more instances of itself, each one identical in memory footprint. Thus<br>&gt; &gt; they consumed nearly 60-70% of my memory.
<br>&gt; &gt;<br>&gt; &gt; So I ran my application using pdb and narrowed down to a code segment<br>&gt; &gt; that was leading to multiple instances of the process. It turned out<br>&gt; &gt; that when I call run() on hildon.fileChooserDialog
 object, the dialog<br>&gt; &gt; opens and at that moment in the &quot;top&quot; I see 4 more instances being<br>&gt; &gt; forked.<br>&gt; &gt;<br>&gt; &gt; I fail to understand this behavior. I replaced the hildon widgets by
<br>&gt; &gt; pure gtk widgets and I see similar behavior, except that 2 more<br>&gt; &gt; instances get forked. Also when using gtk.FileChooserDialog, these new<br>&gt; &gt; instances get created in the instantiation of the dialog object, rather
<br>&gt; &gt; than call to run(). (code included below)<br>&gt; &gt;<br>&gt; &gt; So to further explore the problem, I ran same application on my desktop<br>&gt; &gt; with gtk widgets. But I verified that when fileChooserDialog&#39;s run is
<br>&gt; &gt; called, there are no additional instances of python.<br>&gt; &gt;<br>&gt; &gt; I am running this code on n770, with 2007 HE and python2.5 runtime. My<br>&gt; &gt; application code is pure python and not using any additional libraries.
<br>&gt; &gt; In fact following would be a simpler version of it to reproduce the<br>&gt; &gt; problem:<br>&gt; &gt;<br>&gt; &gt; import gtk<br>&gt; &gt; import hildon<br>&gt; &gt;<br>&gt; &gt; #window = gtk.Window(gtk.WINDOW_TOPLEVEL
)<br>&gt; &gt;<br>&gt; &gt; #fileChooser = gtk.FileChooserDialog(<br>&gt; &gt; #&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; title=&quot;Choose a photo to publish&quot;,<br>&gt; &gt; #&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,<br>&gt; &gt; #&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
gtk.STOCK_OK, gtk.RESPONSE_OK))<br>&gt; &gt;<br>&gt; &gt; fileChooser = hildon.FileChooserDialog(<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; window,gtk.FILE_CHOOSER_ACTION_OPEN)<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; result = fileChooser.run()
<br>&gt; &gt;<br>&gt; &gt; if result == gtk.RESPONSE_OK:<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print fileChooser.get_filename()<br>&gt; &gt;<br>&gt; &gt; Do you have any tips, as to what might be going wrong?<br>&gt; &gt;<br>&gt; &gt; This problem is fatal at least on n770 - it will trigger low memory
<br>&gt; &gt; message when other applications are used on the side.<br>&gt; &gt;<br>&gt; &gt; Any help will be useful.<br>&gt; &gt;<br>&gt; &gt; Thanks,<br>&gt;<br>&gt;<br>&gt; _______________________________________________
<br>&gt; maemo-developers mailing list<br>&gt; <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br>&gt; <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers">https://lists.maemo.org/mailman/listinfo/maemo-developers
</a><br>&gt;<br>_______________________________________________<br>maemo-developers mailing list<br><a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br><a href="https://lists.maemo.org/mailman/listinfo/maemo-developers">
https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br></blockquote></div><br><br clear="all"><br>-- <br>---<br>Jayesh