Re: [E-devel] Ecore fd handler deletion.

2011-09-14 Thread David Seikel
On Wed, 14 Sep 2011 10:25:59 -0400 Mike Blumenkrantz wrote: > On Sun, 11 Sep 2011 21:53:11 +1000 > David Seikel wrote: > > > From my reading of the ecore fd handler code, returning > > ECORE_CALLBACK_CANCEL from the handlers callback does the same as > > ecore_main_fd_handler_del(), which is to

Re: [E-devel] Ecore fd handler deletion.

2011-09-14 Thread Mike Blumenkrantz
On Mon, 12 Sep 2011 05:08:27 +1000 David Seikel wrote: > On Sun, 11 Sep 2011 21:53:11 +1000 David Seikel > wrote: > > > From my reading of the ecore fd handler code, returning > > ECORE_CALLBACK_CANCEL from the handlers callback does the same as > > ecore_main_fd_handler_del(), which is to mark

Re: [E-devel] Ecore fd handler deletion.

2011-09-14 Thread Mike Blumenkrantz
On Sun, 11 Sep 2011 21:53:11 +1000 David Seikel wrote: > From my reading of the ecore fd handler code, returning > ECORE_CALLBACK_CANCEL from the handlers callback does the same as > ecore_main_fd_handler_del(), which is to mark the handler for deletion, > not actually do the deletion. The delet

Re: [E-devel] Ecore fd handler deletion.

2011-09-11 Thread David Seikel
On Sun, 11 Sep 2011 21:53:11 +1000 David Seikel wrote: > From my reading of the ecore fd handler code, returning > ECORE_CALLBACK_CANCEL from the handlers callback does the same as > ecore_main_fd_handler_del(), which is to mark the handler for > deletion, not actually do the deletion. The delet

[E-devel] Ecore fd handler deletion.

2011-09-11 Thread David Seikel
From my reading of the ecore fd handler code, returning ECORE_CALLBACK_CANCEL from the handlers callback does the same as ecore_main_fd_handler_del(), which is to mark the handler for deletion, not actually do the deletion. The deletion actually happens at some later point. So it seems to be safe