Re: [E-devel] Tiling module for e17

2008-04-18 Thread Michael Stapelberg
Hi Will, * [18.04.08 00:10]: The first time I loaded this module, E segfaulted. It loaded successfully the next time, though. However, since unloading it I am unable to load the module again - E segfaults on every attempt. I am attaching a backtrace from gdb. Did you load this module

Re: [E-devel] R: Re: R: checking a part's type?

2008-04-18 Thread andres
All ELFs are written in this way, without error checking and reporting, i think it's for performance reason and I like it :) We can simply modify the function to return 1 on success or 0 on error *poker face* I see you rational, well measured idea and raise you a loony wiki article:

Re: [E-devel] R: Re: R: checking a part's type?

2008-04-18 Thread Cedric BAIL
On Fri, Apr 18, 2008 at 2:05 PM, andres [EMAIL PROTECTED] wrote: All ELFs are written in this way, without error checking and reporting, i think it's for performance reason and I like it :) We can simply modify the function to return 1 on success or 0 on error *poker face* I see you

Re: [E-devel] Tiling module for e17

2008-04-18 Thread Will Keaney
Michael Stapelberg wrote: Hi Will, * [18.04.08 00:10]: The first time I loaded this module, E segfaulted. It loaded successfully the next time, though. However, since unloading it I am unable to load the module again - E segfaults on every attempt. I am attaching a backtrace from gdb.

[E-devel] R: Re: Tiling module for e17

2008-04-18 Thread Dave Andreoli
- Will Keaney [EMAIL PROTECTED] ha scritto: Michael Stapelberg wrote: Hi Will, * [18.04.08 00:10]: The first time I loaded this module, E segfaulted. It loaded successfully the next time, though. However, since unloading it I am unable to load the module again - E

[E-devel] Nightly build log for E17 on 2008-04-18 07:09:21 -0700

2008-04-18 Thread Nightly build system
Build log for Enlightenment DR 0.17 on 2008-04-18 07:09:21 -0700 Build logs are available at http://download.enlightenment.org/tests/logs Packages that failed to build: ecore_li http://download.enlightenment.org/tests/logs/ecore_li.log engage

Re: [E-devel] Evas transforms/filters/etc.

2008-04-18 Thread Jose Gonzalez
This is the kind of thing that makes 'chaining' of arbitrary filters a problem unless very strict semantic rules are followed, and an api used which is able to naturally represent those rules. I'll continue this a bit later, but please do jump in with comments or whatnot if

[E-devel] EFL error handling (was: checking a part's type?)

2008-04-18 Thread Michael 'Mickey' Lauer
We could put checks like this in edje_object_part_swallow. But I can't help to think was programmed to work this way for a reason I ignore. All ELFs are written in this way, without error checking and reporting, i think it's for performance reason and I like it :) I sincerely hope that

Re: [E-devel] R: Re: R: checking a part's type?

2008-04-18 Thread andres
EAPI unsigned char *** edje_object_part_swallow(Evas_Object *obj, const char *part, Evas_Object *obj_swallow) { Edje *ed; Edje_Real_Part *rp; ed = _edje_fetch(obj); if ((!ed) || (!part)) return 0; * rp = _edje_real_part_recursive_get(ed, (char *)part); if

Re: [E-devel] R: Re: R: checking a part's type?

2008-04-18 Thread Christopher Michael
andres wrote: EAPI unsigned char *** edje_object_part_swallow(Evas_Object *obj, const char *part, Evas_Object *obj_swallow) { Edje *ed; Edje_Real_Part *rp; ed = _edje_fetch(obj); if ((!ed) || (!part)) return 0; * rp = _edje_real_part_recursive_get(ed, (char

Re: [E-devel] EFL error handling

2008-04-18 Thread Jose Gonzalez
'Mickey' wrote: We could put checks like this in edje_object_part_swallow. But I can't help to think was programmed to work this way for a reason I ignore. All ELFs are written in this way, without error checking and reporting, i think it's for performance reason and I like it :)