Hi David,<br><br>> VmSize: 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 <<a href="mailto:david.hautbois@free.fr">david.hautbois@free.fr</a>> 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'm a newbie with C programming and make many errors with memory<br>management (memory allocation, freeing memory...).<br>So, I'm aware about the memory used by my application.<br>I play with "top" 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> GtkWidget * HildonDialog;<br> HildonDialog = hildon_file_chooser_dialog_new(GTK_WINDOW(pKmlBoite),<br>
GTK_FILE_CHOOSER_ACTION_SAVE);<br> getchar();<br><br> if (gtk_dialog_run (GTK_DIALOG (HildonDialog)) == GTK_RESPONSE_OK) {<br> gchar *chooser_filename = gtk_file_chooser_get_filename<br>(GTK_FILE_CHOOSER (HildonDialog));<br>
gtk_entry_set_text( GTK_ENTRY(LocaldirEntry), chooser_filename);<br> }<br> gtk_widget_destroy (HildonDialog);<br> (void) widget;<br> (void) data;<br>}<br>******************************************************************<br>
<br>Before "HildonDialog = hildon......."<br>My application uses 36Mb.<br>After (getchar), it uses 100Mb !!!:<br> VmPeak: 92288 kB<br> VmSize: 92284 kB<br> VmLck: 0 kB<br> VmHWM: 12736 kB<br>
VmRSS: 12736 kB<br> VmData: 67484 kB<br> VmStk: 84 kB<br> VmExe: 40 kB<br> VmLib: 13504 kB<br> VmPTE: 56 kB<br><br><br>When, I validate the dialog windows, "gtk_widget_destroy" does not free<br>
the memory.<br><br>The application always uses 100Mb.<br><br>I'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>