Hi David,<br><br>&gt;&nbsp; VmSize: &nbsp; &nbsp; &nbsp; 92284 kB<br>This is Virtual Memory. Are you using threads? If yes, you can reduce virtual memory allocated for each thread in order to reduce virtual memory usage.<br><br>-- Allan Bezerra<br>
INDT-Nokia-Manaus<br><br><div class="gmail_quote">On Feb 9, 2008 10:43 AM, David Hautbois &lt;<a href="mailto:david.hautbois@free.fr">david.hautbois@free.fr</a>&gt; wrote:<br><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>I&#39;m a newbie with C programming and make many errors with memory<br>management (memory allocation, freeing memory...).<br>So, I&#39;m aware about the memory used by my application.<br>I play with &quot;top&quot; and see my application uses 100MB !!!<br>
I check my code and see the problem is here :<br><br>********************************************************<br>void kml_browse_btn_clicked ( GtkWidget * widget, gpointer data) {<br><br> &nbsp; &nbsp;GtkWidget * HildonDialog;<br> &nbsp; &nbsp;HildonDialog = hildon_file_chooser_dialog_new(GTK_WINDOW(pKmlBoite),<br>
GTK_FILE_CHOOSER_ACTION_SAVE);<br> &nbsp; &nbsp;getchar();<br><br> &nbsp; &nbsp;if (gtk_dialog_run (GTK_DIALOG (HildonDialog)) == GTK_RESPONSE_OK) {<br> &nbsp; &nbsp; &nbsp; &nbsp;gchar *chooser_filename = gtk_file_chooser_get_filename<br>(GTK_FILE_CHOOSER (HildonDialog));<br>
 &nbsp; &nbsp; &nbsp; &nbsp;gtk_entry_set_text( GTK_ENTRY(LocaldirEntry), chooser_filename);<br> &nbsp; &nbsp;}<br> &nbsp; &nbsp;gtk_widget_destroy (HildonDialog);<br> &nbsp; &nbsp;(void) widget;<br> &nbsp; &nbsp;(void) data;<br>}<br>******************************************************************<br>
<br>Before &quot;HildonDialog = hildon.......&quot;<br>My application uses 36Mb.<br>After (getchar), it uses 100Mb !!!:<br> &nbsp; VmPeak: &nbsp; &nbsp; &nbsp; 92288 kB<br> &nbsp; VmSize: &nbsp; &nbsp; &nbsp; 92284 kB<br> &nbsp; VmLck: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 kB<br> &nbsp; VmHWM: &nbsp; &nbsp; &nbsp; 12736 kB<br>
 &nbsp; VmRSS: &nbsp; &nbsp; &nbsp; 12736 kB<br> &nbsp; VmData: &nbsp; &nbsp; &nbsp; 67484 kB<br> &nbsp; VmStk: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;84 kB<br> &nbsp; VmExe: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;40 kB<br> &nbsp; VmLib: &nbsp; &nbsp; &nbsp; 13504 kB<br> &nbsp; VmPTE: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;56 kB<br><br><br>When, I validate the dialog windows, &quot;gtk_widget_destroy&quot; does not free<br>
the memory.<br><br>The application always uses 100Mb.<br><br>I&#39;m a newbie, but I think there is a problem....<br>Some help is needed.<br><br>Thanks.<br><br>David.<br><br>--<br>Web site : <a href="http://david.hautbois.free.fr" target="_blank">http://david.hautbois.free.fr</a><br>
Tablet users map : <a href="http://david.hautbois.free.fr/maps/index.php" target="_blank">http://david.hautbois.free.fr/maps/index.php</a><br><br><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" target="_blank">https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br>
</blockquote></div><br>