Thanks for all the info. I am planning to run the FileChooserDialog in a different process than my rest of the app. That may sound weird, but it fits my application's context alright. My pygtk app will run as a service, so that it can be invoked by other applications as well. FileChooserDialog is just one entry point into my app.
<br><br>Detail of my app if you are interested: It is a pygtk GUI that lets you upload images to Flickr or Picasaweb. I have already published the code as Gimp, Inkscape <a href="http://code.google.com/p/altcanvas/wiki/GimpPublishr">
plugins</a>. Now I am putting the same code on maemo. I will soon release a .deb file once I iron out some wrinkles.<br><br>Thanks,<br>Jayesh<br><br><div><span class="gmail_quote">On 1/2/08, <b class="gmail_sendername">Eero Tamminen
</b> &lt;<a href="mailto:eero.tamminen@nokia.com">eero.tamminen@nokia.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;">
Hi,<br><br>ext Jayesh Salvi wrote:<br>&gt;&gt; I&#39;m not sure but think it is because of gnome-vfs. Don&#39;t know proper<br>&gt;&gt; terminology but maybe each vfs &#39;provider&#39; in the dialog (like mmc, phone<br>&gt;&gt; etc.) starts new process or something like that.
<br>&gt;&gt;<br>&gt;&gt; That sounds correct. I experimented with other dialogs that do no involve<br>&gt; filesystem access (NamePasswordDialog, SortDialog), and they do not fork any<br>&gt; extra processes.<br><br>They are not processes, but gnome-vfs worker threads
<br>(you don&#39;t want the UI to freeze e.g. until network timeouts).<br><br><br>&gt; So this behavior seems valid for FileChooserDialog. But then I should be<br>&gt; able to cleanup those extra processes when I am done with the
<br>&gt; FileChooserDialog. I called destroy() on the dialog object, but that doesn&#39;t<br>&gt; help.<br><br>They remain in the gnome-vfs thread pool even after the UI component<br>is destroyed.<br><br>The memory usage issue is elsewhere.&nbsp;&nbsp;You could look into your
<br>program Private_Dirty memory usage in /proc/PID/smaps file.<br>Or run the same program on your PC under Valgrind Massif plugin:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://maemo.org/development/tools/doc/valgrind">http://maemo.org/development/tools/doc/valgrind
</a><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://valgrind.org/docs/manual/ms-manual.html">http://valgrind.org/docs/manual/ms-manual.html</a><br><br>I&#39;m not sure how well that tells about issues in Python code.<br>Is there any memory profiler for Python applications?
<br><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Eero<br></blockquote></div><br><br clear="all"><br>-- <br>---<br>Jayesh