[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: g_io_add_watch problem on OSX
- From: Rehan <rehan shaikh radarspot com>
- To: gtk-app-devel-list gnome org
- Subject: Re: g_io_add_watch problem on OSX
- Date: Wed, 18 Apr 2007 12:20:03 -0700 (PDT)
hey,
i am running through same problem but for me it worked whole way till now
and suddenly it stopped working ... it takes only 3 request from the client
and then starts ignoring client messages .....
please let me know if u solved the problem
thanks in advance..
Jacob Ole Juul Kolding wrote:
>
> Hello
>
> I have at problem with an old linux app I'm porting to OSX.
> I have gtk installed from darwinports.
>
> The app calls g++ using g_spawn_asyns_with_pipes and uses g_io_channels
> to transfer the output from g++ to a textview.
> the problem is that the io callback function which i attach to a io watch
> never runs.
>
> there are no glib warnings when i run the code.
>
> //code
> g_spawn_async_with_pipes(path.c_str(), arguments,
> NULL,G_SPAWN_SEARCH_PATH,
> NULL, NULL, &gpid,&in, &out, &err,&error);
>
> io_out = g_io_channel_unix_new(out);
> io_err = g_io_channel_unix_new(err);
> iotag_err = g_io_add_watch(io_err, G_IO_IN, read_input, this);
> iotag_out = g_io_add_watch(io_out, G_IO_IN, read_input, this);
>
> this is my basic code.
>
> g++ does run but read_input is never calls.
>
> Any help appreciated
>
> /Jacob Kolding
> _______________________________________________
> gtk-app-devel-list mailing list
> gtk-app-devel-list gnome org
> http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list
>
>
--
View this message in context: http://www.nabble.com/g_io_add_watch-problem-on-OSX-tf2696427.html#a10065354
Sent from the Gtk+ - Apps Dev mailing list archive at Nabble.com.
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]