X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=libmainloop%2Fdefer.c;h=304a37caf5e3f08620d276d6ed656cdd92c4d608;hb=0e823ba752af388ba5ca99800d094f88a11290db;hp=c8d56163761dfd43ddb2549d14e8a9e0c0b571e7;hpb=768d45580fc176cedd04db0b05621cdf596751d5;p=ion3.git diff --git a/libmainloop/defer.c b/libmainloop/defer.c index c8d5616..304a37c 100644 --- a/libmainloop/defer.c +++ b/libmainloop/defer.c @@ -1,12 +1,9 @@ /* * ion/libmainloop/defer.c * - * Copyright (c) Tuomo Valkonen 1999-2007. + * Copyright (c) Tuomo Valkonen 1999-2008. * - * Ion is free software; you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or - * (at your option) any later version. + * See the included file LICENSE for details. */ /* This file contains routines for deferred execution of potentially @@ -21,6 +18,7 @@ #include #include #include +#include #include "defer.h" @@ -81,7 +79,7 @@ static void defer_watch_handler(Watch *w, Obj *obj) free_defer(d); - warn(TR("Object destroyed while deferred actions are still pending.")); + D(warn(TR("Object destroyed while deferred actions are still pending."))); } @@ -117,7 +115,8 @@ bool mainloop_defer_action_on_list(Obj *obj, WDeferredAction *action, d->action=action; d->list=list; d->fn=extl_fn_none(); - + watch_init(&(d->watch)); + if(obj!=NULL) watch_setup(&(d->watch), obj, defer_watch_handler); @@ -156,7 +155,6 @@ bool mainloop_defer_extl_on_list(ExtlFn fn, WDeferred **list) d->action=NULL; d->list=list; d->fn=extl_ref_fn(fn); - watch_init(&(d->watch)); LINK_ITEM(*list, d, next, prev); @@ -186,8 +184,11 @@ static void do_execute(WDeferred *d) free_defer(d); if(a!=NULL){ - if(obj!=NULL) - a(obj); + /* The deferral should not be on the list, if there + * was an object, and it got destroyed. + */ + /*if(obj!=NULL)*/ + a(obj); }else if(fn!=extl_fn_none()){ extl_call(fn, NULL, NULL); extl_unref_fn(fn);