Error in running gtk example on cross compiled GTK with DirectFB on MIPS board
kaka <[email protected]> Mon, 17 Dec 2007 14:01:05 +0530
| Newsgroups | gmane.linux.fbdev.user,gmane.linux.uclinux.devel,gmane.comp.graphics.directfb.user,gmane.comp.graphics.directfb.devel |
|---|---|
| Message-ID | <[email protected]> |
--===============1606784405==
Content-Type: multipart/alternative;
boundary="----=_Part_5204_15501233.1197880265204"
------=_Part_5204_15501233.1197880265204
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
HI ALL,
We have successfully cross compiled GTK and DIRECTFB with all its
dependencies for MIPS board.
On running the basic test example of GTK, it is getting struck in the thread
loop infinitely.
We had put the "debug printf" statement in the gtkmain.c and debugged the
test example.
It is getting struck in the * g_main_loop_run (loop);* given below is
the code(code
snippet from gtkmain.c)
void
gtk_main (void)
{
GList *tmp_list;
GList *functions;
GtkInitFunction *init;
GMainLoop *loop;
printf("\n%s :: %d\n",__FILE__,__LINE__);
gtk_main_loop_level++;
loop = g_main_loop_new (NULL, TRUE);
main_loops = g_slist_prepend (main_loops, loop);
printf("\n%s :: %d\n",__FILE__,__LINE__);
tmp_list = functions = init_functions;
init_functions = NULL;
while (tmp_list)
{
init = tmp_list->data;
tmp_list = tmp_list->next;
(* init->function) (init->data);
g_free (init);
}
g_list_free (functions);
printf("\n%s :: %d\n",__FILE__,__LINE__);
if (g_main_loop_is_running (main_loops->data))
{
* printf("\n%s :: %d\n",__FILE__,__LINE__);
GDK_THREADS_LEAVE ();
g_main_loop_run (loop);
GDK_THREADS_ENTER ();
* printf("\n%s :: %d\n",__FILE__,__LINE__);
gdk_flush ();
}
printf("\n%s :: %d\n",__FILE__,__LINE__);
if (quit_functions)
{
GList *reinvoke_list = NULL;
GtkQuitFunction *quitf;
Given below is the src code for test example of GTK:
#include <gtk/gtk.h>
int main( int argc, char *argv[] )
{
GtkWidget *window;
GtkWidget *pMainWidget;
GdkPixbuf *image;
gboolean ret = 0;
gtk_init (&argc, &argv);
printf("\n\n\ngtk_init (&argc, &argv);\n\n\n");
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
//gtk_container_set_border_width (GTK_CONTAINER (window), 10);
image = gdk_pixbuf_new_from_file ("test.gif", NULL);
if (!image)
return FALSE;
pMainWidget = gtk_image_new_from_pixbuf(image);
printf("\n\n\npMainWidget = gtk_image_new_from_pixbuf(image);\n\n\n");
gtk_widget_show (pMainWidget);
gtk_container_add (GTK_CONTAINER (window), pMainWidget);
printf("\n\n\ngtk_container_add (GTK_CONTAINER (window),
pMainWidget);\n\n\n") ;
gtk_widget_show (window);
printf("\n\n\nABHISHEK START OF gtk_main\n\n\n");
gtk_main ();
printf("\n\n\nABHISHEK END OF gtk_main\n\n\n");
return 0;
}
Can anybody Plz throw some light on it?
Thanks in advcance
--
Thanks & Regards,
kaka
------=_Part_5204_15501233.1197880265204
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
<div>HI ALL,</div>
<div> </div>
<div>We have successfully cross compiled GTK and DIRECTFB with all its dependencies for MIPS board.</div>
<div>On running the basic test example of GTK, it is getting struck in the thread loop infinitely.</div>
<div>We had put the "debug printf" statement in the gtkmain.c and debugged the test example.</div>
<div>It is getting struck in the <font color="#000099"><strong> g_main_loop_run (loop);</strong> <font color="#330033">given below is the</font> </font> code(code snippet from gtkmain.c)</div>
<div> </div>
<div>void<br>gtk_main (void)<br>{<br> GList *tmp_list;<br> GList *functions;<br> GtkInitFunction *init;<br> GMainLoop *loop;<br>printf("\n%s :: %d\n",__FILE__,__LINE__);<br> gtk_main_loop_level++;<br> <br>
loop = g_main_loop_new (NULL, TRUE);<br> main_loops = g_slist_prepend (main_loops, loop);<br>printf("\n%s :: %d\n",__FILE__,__LINE__);<br> tmp_list = functions = init_functions;<br> init_functions = NULL;<br>
<br> while (tmp_list)<br> {<br> init = tmp_list->data;<br> tmp_list = tmp_list->next;<br> <br> (* init->function) (init->data);<br> g_free (init);<br> }<br> g_list_free (functions);
<br>printf("\n%s :: %d\n",__FILE__,__LINE__);<br> if (g_main_loop_is_running (main_loops->data))<br> {<br> <strong><font color="#000099"> printf("\n%s :: %d\n",__FILE__,__LINE__);<br> GDK_THREADS_LEAVE ();
<br> g_main_loop_run (loop);<br> GDK_THREADS_ENTER ();<br></font></strong> printf("\n%s :: %d\n",__FILE__,__LINE__);<br> gdk_flush ();<br> }<br>printf("\n%s :: %d\n",__FILE__,__LINE__);
<br> if (quit_functions)<br> {<br> GList *reinvoke_list = NULL;<br> GtkQuitFunction *quitf;<br><br></div>
<div> </div>
<div><br clear="all">Given below is the src code for test example of GTK:</div>
<div> </div>
<div><pre>#include <gtk/gtk.h>
int main( int argc, char *argv[] )
{
GtkWidget *window;
GtkWidget *pMainWidget;
GdkPixbuf *image;
gboolean ret = 0;
gtk_init (&argc, &argv);
printf("\n\n\ngtk_init (&argc, &argv);\n\n\n");
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
//gtk_container_set_border_width (GTK_CONTAINER (window), 10);
image = gdk_pixbuf_new_from_file ("test.gif", NULL);
if (!image)
return FALSE;
pMainWidget = gtk_image_new_from_pixbuf(image);
printf("\n\n\npMainWidget = gtk_image_new_from_pixbuf(image);\n\n\n");
gtk_widget_show (pMainWidget);
gtk_container_add (GTK_CONTAINER (window), pMainWidget);
printf("\n\n\ngtk_container_add (GTK_CONTAINER (window), pMainWidget);\n\n\n") ;
gtk_widget_show (window);
printf("\n\n\nABHISHEK START OF gtk_main\n\n\n");
gtk_main ();
printf("\n\n\nABHISHEK END OF gtk_main\n\n\n");
return 0;
}
</pre></div>
<div>Can anybody Plz throw some light on it?</div>
<div>Thanks in advcance<br>-- <br>Thanks & Regards,<br>kaka </div>
------=_Part_5204_15501233.1197880265204--
--===============1606784405==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--===============1606784405==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Linux-fbdev-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-fbdev-users
--===============1606784405==--