Re: [E-devel] E SVN: englebass IN trunk/ecore/src: lib/ecore_imf lib/ecore_imf_evas lib/ecore_input lib/ecore_input_evas lib/ecore_x/xcb lib/ecore_x/xlib modules/immodules/xim

2012-06-28 Thread The Rasterman
On Wed, 27 Jun 2012 12:58:45 +0200 Sebastian Dransfeld 
said:

this seems right to me. the only thing i might have done is call it ALTGR not
MODE. comments?

> Hi,
> 
> I'm not sure if it is the correct fix and documented correctly, but 
> something needs to be fixed. On many keyboards there is an AltGr key (
> http://en.wikipedia.org/wiki/Altgr) which is used to get a 3rd character 
> from a key (so it is also called ISO_Level3_Shift in x.org).
> 
> This modifier wasn't correctly setup in ecore_x (or it could be mapped 
> to _win if the Super key wasn't there). So it must be setup there to be 
> available.
> 
> In addition the xim module passed of the Windows key as Mod5, but 
> according to my xmodmap, windows key is Mod4 and AltGr is Mod5.
> 
> sd@work-sd:~> xmodmap
> xmodmap:  up to 4 keys per modifier, (keycodes in parentheses):
> 
> shift   Shift_L (0x32),  Shift_R (0x3e)
> lockCaps_Lock (0x42)
> control Control_L (0x25),  Control_R (0x69)
> mod1Alt_L (0x40),  Meta_L (0xcd)
> mod2Num_Lock (0x4d)
> mod3
> mod4Super_L (0x85),  Super_R (0x86),  Super_L (0xce),  Hyper_L 
> (0xcf)
> mod5ISO_Level3_Shift (0x5c),  Mode_switch (0xcb)
> 
> I guess this is standard.
> 
> S.
> 
> On 06/27/2012 12:47 PM, Enlightenment SVN wrote:
> > Log:
> > ecore: Fix support for intl keyboards
> >
> >Map XK_Mode_switch to new modifier and use it to match AltGr key. In
> >ecore_imf xim module this key should be reported as Mod5Mask, and
> >windows key as Mod4Mask.
> >
> >Does none of the e developers use international keyboards?
> >
> > Author:   englebass
> > Date: 2012-06-27 03:47:57 -0700 (Wed, 27 Jun 2012)
> > New Revision: 72937
> > Trac: http://trac.enlightenment.org/e/changeset/72937
> >
> > Modified:
> >trunk/ecore/src/lib/ecore_imf/Ecore_IMF.h
> > trunk/ecore/src/lib/ecore_imf_evas/ecore_imf_evas.c
> > trunk/ecore/src/lib/ecore_input/Ecore_Input.h
> > trunk/ecore/src/lib/ecore_input/ecore_input.c
> > trunk/ecore/src/lib/ecore_input_evas/ecore_input_evas.c
> > trunk/ecore/src/lib/ecore_x/xcb/ecore_xcb_events.c
> > trunk/ecore/src/lib/ecore_x/xcb/ecore_xcb_keymap.c
> > trunk/ecore/src/lib/ecore_x/xcb/ecore_xcb_private.h
> > trunk/ecore/src/lib/ecore_x/xcb/ecore_xcb_window.c
> > trunk/ecore/src/lib/ecore_x/xlib/ecore_x.c
> > trunk/ecore/src/lib/ecore_x/xlib/ecore_x_events.c
> > trunk/ecore/src/lib/ecore_x/xlib/ecore_x_private.h
> > trunk/ecore/src/modules/immodules/xim/ecore_imf_xim.c
> >
> > Modified: trunk/ecore/src/lib/ecore_imf/Ecore_IMF.h
> > ===
> > --- trunk/ecore/src/lib/ecore_imf/Ecore_IMF.h   2012-06-27 10:09:50
> > UTC (rev 72936) +++ trunk/ecore/src/lib/ecore_imf/Ecore_IMF.h
> > 2012-06-27 10:47:57 UTC (rev 72937) @@ -116,7 +116,8 @@
> >  ECORE_IMF_KEYBOARD_MODIFIER_CTRL  = 1<<  0, /**<  "Control" is pressed
> > */ ECORE_IMF_KEYBOARD_MODIFIER_ALT   = 1<<  1, /**<  "Alt" is pressed */
> >  ECORE_IMF_KEYBOARD_MODIFIER_SHIFT = 1<<  2, /**<  "Shift" is pressed */
> > -   ECORE_IMF_KEYBOARD_MODIFIER_WIN   = 1<<  3  /**<  "Win" (between "Ctrl"
> > and "Alt") is pressed */
> > +   ECORE_IMF_KEYBOARD_MODIFIER_WIN   = 1<<  3, /**<  "Win" (between "Ctrl"
> > and "Alt") is pressed */
> > +   ECORE_IMF_KEYBOARD_MODIFIER_MODE  = 1<<  4  /**<  "AltGr" is pressed
> > @since 1.3 */ } Ecore_IMF_Keyboard_Modifiers;
> >
> >   /**
> >
> > Modified: trunk/ecore/src/lib/ecore_imf_evas/ecore_imf_evas.c
> > ===
> > --- trunk/ecore/src/lib/ecore_imf_evas/ecore_imf_evas.c 2012-06-27
> > 10:09:50 UTC (rev 72936) +++
> > trunk/ecore/src/lib/ecore_imf_evas/ecore_imf_evas.c 2012-06-27
> > 10:47:57 UTC (rev 72937) @@ -33,6 +33,8 @@ *imf_keyboard_modifiers |=
> > ECORE_IMF_KEYBOARD_MODIFIER_SHIFT; if (evas_key_modifier_is_set
> > (evas_modifiers, "Super") || evas_key_modifier_is_set(evas_modifiers,
> > "Hyper")) *imf_keyboard_modifiers |= ECORE_IMF_KEYBOARD_MODIFIER_WIN;
> > +   if (evas_key_modifier_is_set(evas_modifiers, "Mode"))
> > + *imf_keyboard_modifiers |= ECORE_IMF_KEYBOARD_MODIFIER_MODE;
> >   }
> >
> >   /* Converts the Evas locks to Ecore_IMF keyboard locks */
> >
> > Modified: trunk/ecore/src/lib/ecore_input/Ecore_Input.h
> > ===
> > --- trunk/ecore/src/lib/ecore_input/Ecore_Input.h   2012-06-27
> > 10:09:50 UTC (rev 72936) +++
> > trunk/ecore/src/lib/ecore_input/Ecore_Input.h   2012-06-27 10:47:57
> > UTC (rev 72937) @@ -57,6 +57,7 @@
> >   #define ECORE_EVENT_LOCK_NUM0x0100
> >   #define ECORE_EVENT_LOCK_CAPS   0x0200
> >   #define ECORE_EVENT_LOCK_SHIFT  0x0300
> > +#define ECORE_EVENT_MODIFIER_MODE   0x0400 /**<  @since 1.3 */
> >
> >  typedef uintptr_tEcore_Window;
> >  typedef struct _Ecore_Event_Key  Ecore_Event_Key;
> > @@ -75,6 +76,7 @@
> >   

Re: [E-devel] E SVN: yoz trunk/elementary/src/lib

2012-06-28 Thread The Rasterman
On Thu, 28 Jun 2012 11:03:01 -0300 Gustavo Lima Chaves 
said:

> * Carsten Haitzler  [2012-06-28 19:15:20 +0900]:
> 
> > On Tue, 26 Jun 2012 13:42:00 -0300 Gustavo Sverzut Barbieri
> >  said:
> >
> > > On Tue, Jun 26, 2012 at 11:29 AM, Carsten Haitzler 
> > > wrote:
> > > > On Tue, 26 Jun 2012 10:46:04 +0900 Daniel Juyung Seo
> > > >  said:
> > > >
> > > >> Great! So it's EFL 1.1/1.3/1.7 this time?
> > > >> Or just 1.7 for all of them?
> > > >
> > > > 1.7 for all. :)
> > >
> > > Glima is about to merge some work that refactor's scroller into an
> > > interface. That will help to reduce the number of required functions
> > > and also clean up a bit all the users of scroller. But it will also
> > > require some changes to Evas (no API/ABI breaks, just additions) and
> > > Elementary.
> > >
> > > So could it wait a bit until this gets in?
> >
> > so how long will that be? that is the key question.
> 
> I already have list and photocam ready. Scroller is coming in
> today. Now that the base is done, porting will be straightforward and
> fast. Say, ~ 1 week?

ok. then... freeze deadline moved to next friday... NEXT FRIDAY EVERYONE!
FREEZE THEN! no new features after t hen - bugfix time until end of
month/release

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Magic checks before NULL checks in Eina

2012-06-28 Thread Lucas De Marchi
On Thu, Jun 28, 2012 at 12:05 PM, Michael Blumenkrantz
 wrote:
> On Thu, 28 Jun 2012 11:22:21 -0300
> Gustavo Sverzut Barbieri  wrote:
>
>> On Thursday, June 28, 2012, Michael Blumenkrantz wrote:
>>
>> > On Wed, 27 Jun 2012 23:43:23 -0300
>> > Raphael Kubo da Costa  wrote:
>> >
>> > > Cedric BAIL > writes:
>> > >
>> > > > I personally think that eina_iterator_free like any free function
>> > > > should just work fine with NULL. I was against at that time, but
>> > > > others won. So we do have this incoherency where some of our free
>> > > > function work with NULL and some don't.
>> > >
>> > > So what can we do to improve the situation here (if it does need to be
>> > > improved)? Speaking more generically, what criteria are used to decide
>> > > that a function should be decorated with EINA_ARG_NONNULL and/or have
>> > > magic checks performed?
>> > >
>> >
>> > I am hugely in favor of having all _free() and _del() functions take NULL
>> > arguments without erroring.
>>
>>
>> I disagree, in regular situation it should never return a NULL handle, so
>> you should never have a NULL handle to free. If that happened you did some
>> mistake in the code and it's easier to spot and fix.
>>
>> Compatibility with libc is moot: should we also crash on other functions as
>> well?! :-)
>>
>>
>>
>> >
>> >
>> > --
>> > Live Security Virtual Conference
>> > Exclusive live event will cover all the ways today's security and
>> > threat landscape has changed and how IT managers can respond. Discussions
>> > will include endpoint security, mobile security and the latest in malware
>> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> > ___
>> > enlightenment-devel mailing list
>> > enlightenment-devel@lists.sourceforge.net 
>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>> >
>>
>>
>
> You're making a slippery slope argument 
> (http://en.wikipedia.org/wiki/Slippery_slope).
>
> My statement, and the one I was referencing, was about free and delete
> functions, not on all functions. Your insinuation that allowing silent passing
> of a NULL param to deletion functions would cause crashes is inane; the 
> purpose
> of this is to simplify if (X) del(X), which is annoying and pointless. libc

if (X) free(X) is very very very annoying. And we even have code in
EFL doing that insane crap libc's free().

Regarding our _free/_del functions, I can't think of an example that
shouldn't accept a NULL and just return (with *no* logging).

Lucas De Marchi

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] what's about the webkit-efl status?

2012-06-28 Thread Lucas De Marchi
On Thu, Jun 28, 2012 at 6:27 AM, Dennis.Yxun  wrote:
> hi ALL:
>  I'm using gentoo linux, and compile webkit-efl from
> enlightenment-niifaq overlay
> net-libs/webkit-efl-0.1.98964, source code take from svn r98964 version.
>  Actually it fails to compile.
>  And, people from #gentoo-e tell me webkit-efl is unmaintained, thus

shame on them to lie to you

> broken, it that true?

nops. First hit on google for "webkit-efl build":
http://trac.webkit.org/wiki/EFLWebKit


Lucas De Marchi

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster trunk/e/data/themes/images

2012-06-28 Thread The Rasterman
On Fri, 29 Jun 2012 10:10:21 +0900 Sanjeev BA  said:

bwahahahhaha! seriously though - it's a composite of several layers of rock
images from some i had and then some manipulation, so for me i've started at it
for so long now i no longer see it with fresh eyes, so input is good. :)

> I can't help but say this new wallpaper really "Rocks" :)
> 
> On Fri, Jun 29, 2012 at 8:25 AM, Enlightenment SVN <
> no-re...@enlightenment.org> wrote:
> 
> > Log:
> > lets tone down the bumpiness of the wallpaper.
> >
> >
> >
> > Author:   raster
> > Date: 2012-06-28 16:25:31 -0700 (Thu, 28 Jun 2012)
> > New Revision: 73019
> > Trac: http://trac.enlightenment.org/e/changeset/73019
> >
> > Modified:
> >  trunk/e/data/themes/images/Motleyrock.jpg
> >
> > Modified: trunk/e/data/themes/images/Motleyrock.jpg
> > ===
> > (Binary files differ)
> >
> >
> >
> > --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > enlightenment-svn mailing list
> > enlightenment-...@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
> >
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster trunk/e/data/themes/images

2012-06-28 Thread Sanjeev BA
I can't help but say this new wallpaper really "Rocks" :)

On Fri, Jun 29, 2012 at 8:25 AM, Enlightenment SVN <
no-re...@enlightenment.org> wrote:

> Log:
> lets tone down the bumpiness of the wallpaper.
>
>
>
> Author:   raster
> Date: 2012-06-28 16:25:31 -0700 (Thu, 28 Jun 2012)
> New Revision: 73019
> Trac: http://trac.enlightenment.org/e/changeset/73019
>
> Modified:
>  trunk/e/data/themes/images/Motleyrock.jpg
>
> Modified: trunk/e/data/themes/images/Motleyrock.jpg
> ===
> (Binary files differ)
>
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] broke file selector in e17

2012-06-28 Thread The Rasterman
On Fri, 29 Jun 2012 01:02:30 +0900 Carsten Haitzler (The Rasterman)
 said:

> bte - u broke file selector - text totally overlaps icons now and doenst
> compress (filena...) or scroll. :)

it seems in listr mode u are now choosing to scroll horizontally but u never
change the widget of the child list objects to match... :) chooseone :) become
wide and scroll, or... dont and compress. :)

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 mixer (pa) now b0rken.

2012-06-28 Thread The Rasterman
On Fri, 29 Jun 2012 08:34:21 +0900 Carsten Haitzler (The Rasterman)
 said:

i fixed it. you removed real working code while removing warnings.

> and now mixer's PA support at least is totally broke. woot. doesn't work at
> all
> 
> -- 
> - Codito, ergo sum - "I code, therefore I am" --
> The Rasterman (Carsten Haitzler)ras...@rasterman.com
> 
> 
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] e17 mixer (pa) now b0rken.

2012-06-28 Thread The Rasterman
and now mixer's PA support at least is totally broke. woot. doesn't work at all

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread David Seikel
On Fri, 29 Jun 2012 01:02:10 +0200 Vincent Torri
 wrote:

> On Fri, Jun 29, 2012 at 12:54 AM, David Seikel 
> wrote:
> > On Fri, 29 Jun 2012 00:30:17 +0200 Vincent Torri
> >  wrote:
> >
> >> On Fri, Jun 29, 2012 at 12:21 AM, David Seikel 
> >> wrote:
> >> > On Fri, 29 Jun 2012 00:05:23 +0200 Vincent Torri
> >> >  wrote:
> >> >
> >> >> On Thu, Jun 28, 2012 at 10:36 PM, David Seikel
> >> >>  wrote:
> >> >> > On Fri, 29 Jun 2012 04:55:27 +1000 David Seikel
> >> >> >  wrote:
> >> >> >
> >> >> >> On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel
> >> >> >>  wrote:
> >> >> >>
> >> >> >> > On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel
> >> >> >> >  wrote:
> >> >> >> >
> >> >> >> > > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL
> >> >> >> > >  wrote:
> >> >> >> > >
> >> >> >> > > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel
> >> >> >> > > >  wrote:
> >> >> >> > > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
> >> >> >> > > > >  wrote:
> >> >> >> > > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
> >> >> >> > > > >>  wrote:
> >> >> >> > > > >> > Recently I've been getting a one second pause
> >> >> >> > > > >> > then an error message when I exit out of stuff
> >> >> >> > > > >> > compiled with up to date EFL -
> >> >> >> > > > >> >
> >> >> >> > > > >> > ERR<8848>:ecore ecore_thread.c  :651
> >> >> >> > > > >> > _ecore_thread_shutdown() 1 of the child thread are
> >> >> >> > > > >> > still running after 1s. This can lead to a segv.
> >> >> >> > > > >> > Sorry.
> >> >> >> > > > >> >
> >> >> >> > > > >> > This is happening on programs that don't actually
> >> >> >> > > > >> > use threads. Have not seen any seggies though.
> >> >> >> > > > >>
> >> >> >> > > > >> Interresting. What library do you use and
> >> >> >> > > > >> initialize ? What svn version are you using ?
> >> >> >> > > > >> Jerome reported to me the same issue, but I have
> >> >> >> > > > >> some very hard time to reproduce the problem.
> >> >> >> > > > >> Having some one else triggering the same problem
> >> >> >> > > > >> could help me understand what is going on.
> >> >> >> > > > >
> >> >> >> > > > > It's been happening for some time, through multiple
> >> >> >> > > > > SVN updates. Seems to be just about all EFL
> >> >> >> > > > > programs, for instance (after a fresh SVN update
> >> >> >> > > > > just now) -
> >> >> >> > > > >
> >> >> >> > > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
> >> >> >> > > > > ERR<19471>:ecore ecore_thread.c:651
> >> >> >> > > > > _ecore_thread_shutdown() 1 of the child thread are
> >> >> >> > > > > still running after 1s. This can lead to a segv.
> >> >> >> > > > > Sorry.
> >> >> >> > > >
> >> >> >> > > > Oki, how many CPU do you have ? What kind are they ?
> >> >> >> > >
> >> >> >> > > Four core AMD -
> >> >> >> > >
> >> >> >> > > vendor_id       : AuthenticAMD
> >> >> >> > > cpu family      : 16
> >> >> >> > > model           : 5
> >> >> >> > > model name      : AMD Phenom(tm) II X4 840 Processor
> >> >> >> > > stepping        : 3
> >> >> >> > > cpu MHz         : 800.000
> >> >> >> > > cache size      : 512 KB
> >> >> >> > > apicid          : 0
> >> >> >> > > initial apicid  : 0
> >> >> >> > > fpu             : yes
> >> >> >> > > fpu_exception   : yes
> >> >> >> > > cpuid level     : 5
> >> >> >> > > wp              : yes
> >> >> >> > > flags           : fpu vme de pse tsc msr pae mce cx8 apic
> >> >> >> > > sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse
> >> >> >> > > sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm
> >> >> >> > > 3dnowext 3dnow constant_tsc rep_good nonstop_tsc
> >> >> >> > > extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy
> >> >> >> > > svm extapic cr8_legacy abm sse4a misalignsse
> >> >> >> > > 3dnowprefetch osvw ibs skinit wdt npt lbrv svm_lock
> >> >> >> > > nrip_save bogomips        : 6429.38 TLB size        :
> >> >> >> > > 1024 4K pages clflush size    : 64
> >> >> >> > > cache_alignment : 64
> >> >> >> > > address sizes   : 48 bits physical, 48 bits virtual
> >> >> >> > > power management: ts ttp tm stc 100mhzsteps hwpstate
> >> >> >> > >
> >> >> >> > > In case it's important - Ubuntu Linux 10.04 fully up to
> >> >> >> > > date.
> >> >> >> > >
> >> >> >> > > After this mornings update it seems to have stopped
> >> >> >> > > happening on the app I'm working on, but still on
> >> >> >> > > elementary_test.  Doing another update right now.
> >> >> >> >
> >> >> >> > Actually figured out that the reason it's not complaining
> >> >> >> > any more is coz something broke eina logging.  Still
> >> >> >> > trying to figure out what's the new way to actually get
> >> >> >> > that working.
> >> >> >> >
> >> >> >>
> >> >> >> Can't actually enable logging in eina now.  Which means the
> >> >> >> original problem is now being hidden.  Hmm, think this
> >> >> >> commit is the logging problem -
> >> >> >>
> >> >> >> Log:
> >> >> >> Eina: add nice m4 macro to check function. Will be usable
> >> >> >> easily in the merge, per EFL lib
> >> >> >>   Please, test. con

Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread Vincent Torri
On Fri, Jun 29, 2012 at 12:54 AM, David Seikel  wrote:
> On Fri, 29 Jun 2012 00:30:17 +0200 Vincent Torri
>  wrote:
>
>> On Fri, Jun 29, 2012 at 12:21 AM, David Seikel 
>> wrote:
>> > On Fri, 29 Jun 2012 00:05:23 +0200 Vincent Torri
>> >  wrote:
>> >
>> >> On Thu, Jun 28, 2012 at 10:36 PM, David Seikel 
>> >> wrote:
>> >> > On Fri, 29 Jun 2012 04:55:27 +1000 David Seikel
>> >> >  wrote:
>> >> >
>> >> >> On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel
>> >> >>  wrote:
>> >> >>
>> >> >> > On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel
>> >> >> >  wrote:
>> >> >> >
>> >> >> > > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL
>> >> >> > >  wrote:
>> >> >> > >
>> >> >> > > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel
>> >> >> > > >  wrote:
>> >> >> > > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
>> >> >> > > > >  wrote:
>> >> >> > > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
>> >> >> > > > >>  wrote:
>> >> >> > > > >> > Recently I've been getting a one second pause then an
>> >> >> > > > >> > error message when I exit out of stuff compiled with
>> >> >> > > > >> > up to date EFL -
>> >> >> > > > >> >
>> >> >> > > > >> > ERR<8848>:ecore ecore_thread.c  :651
>> >> >> > > > >> > _ecore_thread_shutdown() 1 of the child thread are
>> >> >> > > > >> > still running after 1s. This can lead to a segv.
>> >> >> > > > >> > Sorry.
>> >> >> > > > >> >
>> >> >> > > > >> > This is happening on programs that don't actually use
>> >> >> > > > >> > threads. Have not seen any seggies though.
>> >> >> > > > >>
>> >> >> > > > >> Interresting. What library do you use and initialize ?
>> >> >> > > > >> What svn version are you using ? Jerome reported to me
>> >> >> > > > >> the same issue, but I have some very hard time to
>> >> >> > > > >> reproduce the problem. Having some one else triggering
>> >> >> > > > >> the same problem could help me understand what is going
>> >> >> > > > >> on.
>> >> >> > > > >
>> >> >> > > > > It's been happening for some time, through multiple SVN
>> >> >> > > > > updates. Seems to be just about all EFL programs, for
>> >> >> > > > > instance (after a fresh SVN update just now) -
>> >> >> > > > >
>> >> >> > > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
>> >> >> > > > > ERR<19471>:ecore ecore_thread.c:651
>> >> >> > > > > _ecore_thread_shutdown() 1 of the child thread are still
>> >> >> > > > > running after 1s. This can lead to a segv. Sorry.
>> >> >> > > >
>> >> >> > > > Oki, how many CPU do you have ? What kind are they ?
>> >> >> > >
>> >> >> > > Four core AMD -
>> >> >> > >
>> >> >> > > vendor_id       : AuthenticAMD
>> >> >> > > cpu family      : 16
>> >> >> > > model           : 5
>> >> >> > > model name      : AMD Phenom(tm) II X4 840 Processor
>> >> >> > > stepping        : 3
>> >> >> > > cpu MHz         : 800.000
>> >> >> > > cache size      : 512 KB
>> >> >> > > apicid          : 0
>> >> >> > > initial apicid  : 0
>> >> >> > > fpu             : yes
>> >> >> > > fpu_exception   : yes
>> >> >> > > cpuid level     : 5
>> >> >> > > wp              : yes
>> >> >> > > flags           : fpu vme de pse tsc msr pae mce cx8 apic
>> >> >> > > sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht
>> >> >> > > syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow
>> >> >> > > constant_tsc rep_good nonstop_tsc extd_apicid pni monitor
>> >> >> > > cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm
>> >> >> > > sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt npt lbrv
>> >> >> > > svm_lock nrip_save bogomips        : 6429.38
>> >> >> > > TLB size        : 1024 4K pages
>> >> >> > > clflush size    : 64
>> >> >> > > cache_alignment : 64
>> >> >> > > address sizes   : 48 bits physical, 48 bits virtual
>> >> >> > > power management: ts ttp tm stc 100mhzsteps hwpstate
>> >> >> > >
>> >> >> > > In case it's important - Ubuntu Linux 10.04 fully up to
>> >> >> > > date.
>> >> >> > >
>> >> >> > > After this mornings update it seems to have stopped
>> >> >> > > happening on the app I'm working on, but still on
>> >> >> > > elementary_test.  Doing another update right now.
>> >> >> >
>> >> >> > Actually figured out that the reason it's not complaining any
>> >> >> > more is coz something broke eina logging.  Still trying to
>> >> >> > figure out what's the new way to actually get that working.
>> >> >> >
>> >> >>
>> >> >> Can't actually enable logging in eina now.  Which means the
>> >> >> original problem is now being hidden.  Hmm, think this commit is
>> >> >> the logging problem -
>> >> >>
>> >> >> Log:
>> >> >> Eina: add nice m4 macro to check function. Will be usable
>> >> >> easily in the merge, per EFL lib
>> >> >>   Please, test. config.h is the same (except useless macro
>> >> >> HAVE_ICONV_H) and compilation is correct on linux and mingw here
>> >> >>
>> >> >> Author:       caro
>> >> >> Date:         2012-06-27 23:45:12 -0700 (Wed, 27 Jun 2012)
>> >> >> New Revision: 72972
>> >> >
>> >> > I made an evil hack to eina so that I could enable logging, a

Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread David Seikel
On Fri, 29 Jun 2012 00:30:17 +0200 Vincent Torri
 wrote:

> On Fri, Jun 29, 2012 at 12:21 AM, David Seikel 
> wrote:
> > On Fri, 29 Jun 2012 00:05:23 +0200 Vincent Torri
> >  wrote:
> >
> >> On Thu, Jun 28, 2012 at 10:36 PM, David Seikel 
> >> wrote:
> >> > On Fri, 29 Jun 2012 04:55:27 +1000 David Seikel
> >> >  wrote:
> >> >
> >> >> On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel
> >> >>  wrote:
> >> >>
> >> >> > On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel
> >> >> >  wrote:
> >> >> >
> >> >> > > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL
> >> >> > >  wrote:
> >> >> > >
> >> >> > > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel
> >> >> > > >  wrote:
> >> >> > > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
> >> >> > > > >  wrote:
> >> >> > > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
> >> >> > > > >>  wrote:
> >> >> > > > >> > Recently I've been getting a one second pause then an
> >> >> > > > >> > error message when I exit out of stuff compiled with
> >> >> > > > >> > up to date EFL -
> >> >> > > > >> >
> >> >> > > > >> > ERR<8848>:ecore ecore_thread.c  :651
> >> >> > > > >> > _ecore_thread_shutdown() 1 of the child thread are
> >> >> > > > >> > still running after 1s. This can lead to a segv.
> >> >> > > > >> > Sorry.
> >> >> > > > >> >
> >> >> > > > >> > This is happening on programs that don't actually use
> >> >> > > > >> > threads. Have not seen any seggies though.
> >> >> > > > >>
> >> >> > > > >> Interresting. What library do you use and initialize ?
> >> >> > > > >> What svn version are you using ? Jerome reported to me
> >> >> > > > >> the same issue, but I have some very hard time to
> >> >> > > > >> reproduce the problem. Having some one else triggering
> >> >> > > > >> the same problem could help me understand what is going
> >> >> > > > >> on.
> >> >> > > > >
> >> >> > > > > It's been happening for some time, through multiple SVN
> >> >> > > > > updates. Seems to be just about all EFL programs, for
> >> >> > > > > instance (after a fresh SVN update just now) -
> >> >> > > > >
> >> >> > > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
> >> >> > > > > ERR<19471>:ecore ecore_thread.c:651
> >> >> > > > > _ecore_thread_shutdown() 1 of the child thread are still
> >> >> > > > > running after 1s. This can lead to a segv. Sorry.
> >> >> > > >
> >> >> > > > Oki, how many CPU do you have ? What kind are they ?
> >> >> > >
> >> >> > > Four core AMD -
> >> >> > >
> >> >> > > vendor_id       : AuthenticAMD
> >> >> > > cpu family      : 16
> >> >> > > model           : 5
> >> >> > > model name      : AMD Phenom(tm) II X4 840 Processor
> >> >> > > stepping        : 3
> >> >> > > cpu MHz         : 800.000
> >> >> > > cache size      : 512 KB
> >> >> > > apicid          : 0
> >> >> > > initial apicid  : 0
> >> >> > > fpu             : yes
> >> >> > > fpu_exception   : yes
> >> >> > > cpuid level     : 5
> >> >> > > wp              : yes
> >> >> > > flags           : fpu vme de pse tsc msr pae mce cx8 apic
> >> >> > > sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht
> >> >> > > syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow
> >> >> > > constant_tsc rep_good nonstop_tsc extd_apicid pni monitor
> >> >> > > cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm
> >> >> > > sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt npt lbrv
> >> >> > > svm_lock nrip_save bogomips        : 6429.38
> >> >> > > TLB size        : 1024 4K pages
> >> >> > > clflush size    : 64
> >> >> > > cache_alignment : 64
> >> >> > > address sizes   : 48 bits physical, 48 bits virtual
> >> >> > > power management: ts ttp tm stc 100mhzsteps hwpstate
> >> >> > >
> >> >> > > In case it's important - Ubuntu Linux 10.04 fully up to
> >> >> > > date.
> >> >> > >
> >> >> > > After this mornings update it seems to have stopped
> >> >> > > happening on the app I'm working on, but still on
> >> >> > > elementary_test.  Doing another update right now.
> >> >> >
> >> >> > Actually figured out that the reason it's not complaining any
> >> >> > more is coz something broke eina logging.  Still trying to
> >> >> > figure out what's the new way to actually get that working.
> >> >> >
> >> >>
> >> >> Can't actually enable logging in eina now.  Which means the
> >> >> original problem is now being hidden.  Hmm, think this commit is
> >> >> the logging problem -
> >> >>
> >> >> Log:
> >> >> Eina: add nice m4 macro to check function. Will be usable
> >> >> easily in the merge, per EFL lib
> >> >>   Please, test. config.h is the same (except useless macro
> >> >> HAVE_ICONV_H) and compilation is correct on linux and mingw here
> >> >>
> >> >> Author:       caro
> >> >> Date:         2012-06-27 23:45:12 -0700 (Wed, 27 Jun 2012)
> >> >> New Revision: 72972
> >> >
> >> > I made an evil hack to eina so that I could enable logging, and
> >> > the original bug is still there.  It's just visible again
> >> > instead of being hidden.
> >>
> >> it works on my computer, i verified that before committing
>

Re: [E-devel] what's about the webkit-efl status?

2012-06-28 Thread Sanjeev BA
I built it by getting the source from webkit svn using  --efl
option.

On Fri, Jun 29, 2012 at 12:34 AM, Raphael Kubo da Costa
wrote:

> "Dennis.Yxun"  writes:
>
> > hi ALL:
> >   I'm using gentoo linux, and compile webkit-efl from
> > enlightenment-niifaq overlay
> > net-libs/webkit-efl-0.1.98964, source code take from svn r98964 version.
> >  Actually it fails to compile.
> >  And, people from #gentoo-e tell me webkit-efl is unmaintained, thus
> > broken, it that true?
>
> WebKit-EFL is actively maintained by individuals and a few companies;
> however, nobody is currently generating snapshot tarballs these days.
>
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread Vincent Torri
On Fri, Jun 29, 2012 at 12:21 AM, David Seikel  wrote:
> On Fri, 29 Jun 2012 00:05:23 +0200 Vincent Torri
>  wrote:
>
>> On Thu, Jun 28, 2012 at 10:36 PM, David Seikel 
>> wrote:
>> > On Fri, 29 Jun 2012 04:55:27 +1000 David Seikel 
>> > wrote:
>> >
>> >> On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel 
>> >> wrote:
>> >>
>> >> > On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel
>> >> >  wrote:
>> >> >
>> >> > > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL
>> >> > >  wrote:
>> >> > >
>> >> > > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel
>> >> > > >  wrote:
>> >> > > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
>> >> > > > >  wrote:
>> >> > > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
>> >> > > > >>  wrote:
>> >> > > > >> > Recently I've been getting a one second pause then an
>> >> > > > >> > error message when I exit out of stuff compiled with up
>> >> > > > >> > to date EFL -
>> >> > > > >> >
>> >> > > > >> > ERR<8848>:ecore ecore_thread.c  :651
>> >> > > > >> > _ecore_thread_shutdown() 1 of the child thread are still
>> >> > > > >> > running after 1s. This can lead to a segv. Sorry.
>> >> > > > >> >
>> >> > > > >> > This is happening on programs that don't actually use
>> >> > > > >> > threads. Have not seen any seggies though.
>> >> > > > >>
>> >> > > > >> Interresting. What library do you use and initialize ?
>> >> > > > >> What svn version are you using ? Jerome reported to me
>> >> > > > >> the same issue, but I have some very hard time to
>> >> > > > >> reproduce the problem. Having some one else triggering
>> >> > > > >> the same problem could help me understand what is going
>> >> > > > >> on.
>> >> > > > >
>> >> > > > > It's been happening for some time, through multiple SVN
>> >> > > > > updates. Seems to be just about all EFL programs, for
>> >> > > > > instance (after a fresh SVN update just now) -
>> >> > > > >
>> >> > > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
>> >> > > > > ERR<19471>:ecore ecore_thread.c:651
>> >> > > > > _ecore_thread_shutdown() 1 of the child thread are still
>> >> > > > > running after 1s. This can lead to a segv. Sorry.
>> >> > > >
>> >> > > > Oki, how many CPU do you have ? What kind are they ?
>> >> > >
>> >> > > Four core AMD -
>> >> > >
>> >> > > vendor_id       : AuthenticAMD
>> >> > > cpu family      : 16
>> >> > > model           : 5
>> >> > > model name      : AMD Phenom(tm) II X4 840 Processor
>> >> > > stepping        : 3
>> >> > > cpu MHz         : 800.000
>> >> > > cache size      : 512 KB
>> >> > > apicid          : 0
>> >> > > initial apicid  : 0
>> >> > > fpu             : yes
>> >> > > fpu_exception   : yes
>> >> > > cpuid level     : 5
>> >> > > wp              : yes
>> >> > > flags           : fpu vme de pse tsc msr pae mce cx8 apic sep
>> >> > > mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht
>> >> > > syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow
>> >> > > constant_tsc rep_good nonstop_tsc extd_apicid pni monitor cx16
>> >> > > popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a
>> >> > > misalignsse 3dnowprefetch osvw ibs skinit wdt npt lbrv
>> >> > > svm_lock nrip_save bogomips        : 6429.38
>> >> > > TLB size        : 1024 4K pages
>> >> > > clflush size    : 64
>> >> > > cache_alignment : 64
>> >> > > address sizes   : 48 bits physical, 48 bits virtual
>> >> > > power management: ts ttp tm stc 100mhzsteps hwpstate
>> >> > >
>> >> > > In case it's important - Ubuntu Linux 10.04 fully up to date.
>> >> > >
>> >> > > After this mornings update it seems to have stopped happening
>> >> > > on the app I'm working on, but still on elementary_test.  Doing
>> >> > > another update right now.
>> >> >
>> >> > Actually figured out that the reason it's not complaining any
>> >> > more is coz something broke eina logging.  Still trying to
>> >> > figure out what's the new way to actually get that working.
>> >> >
>> >>
>> >> Can't actually enable logging in eina now.  Which means the
>> >> original problem is now being hidden.  Hmm, think this commit is
>> >> the logging problem -
>> >>
>> >> Log:
>> >> Eina: add nice m4 macro to check function. Will be usable easily in
>> >> the merge, per EFL lib
>> >>   Please, test. config.h is the same (except useless macro
>> >> HAVE_ICONV_H) and compilation is correct on linux and mingw here
>> >>
>> >> Author:       caro
>> >> Date:         2012-06-27 23:45:12 -0700 (Wed, 27 Jun 2012)
>> >> New Revision: 72972
>> >
>> > I made an evil hack to eina so that I could enable logging, and the
>> > original bug is still there.  It's just visible again instead of
>> > being hidden.
>>
>> it works on my computer, i verified that before committing
>>
>> > Sooo, that's two bugs now.  No I don't have a proper solution to the
>> > eina logging bug.
>>
>> paste config.log
>
> http://pastebin.com/Q2JLrF9w

the problem is that it can not find libfnmatch or libiberty, which are
the 2 libraries where fnmatch can be found. On my system, it is in
libiberty, so I hav

Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread David Seikel
On Fri, 29 Jun 2012 00:05:23 +0200 Vincent Torri
 wrote:

> On Thu, Jun 28, 2012 at 10:36 PM, David Seikel 
> wrote:
> > On Fri, 29 Jun 2012 04:55:27 +1000 David Seikel 
> > wrote:
> >
> >> On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel 
> >> wrote:
> >>
> >> > On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel
> >> >  wrote:
> >> >
> >> > > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL
> >> > >  wrote:
> >> > >
> >> > > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel
> >> > > >  wrote:
> >> > > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
> >> > > > >  wrote:
> >> > > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
> >> > > > >>  wrote:
> >> > > > >> > Recently I've been getting a one second pause then an
> >> > > > >> > error message when I exit out of stuff compiled with up
> >> > > > >> > to date EFL -
> >> > > > >> >
> >> > > > >> > ERR<8848>:ecore ecore_thread.c  :651
> >> > > > >> > _ecore_thread_shutdown() 1 of the child thread are still
> >> > > > >> > running after 1s. This can lead to a segv. Sorry.
> >> > > > >> >
> >> > > > >> > This is happening on programs that don't actually use
> >> > > > >> > threads. Have not seen any seggies though.
> >> > > > >>
> >> > > > >> Interresting. What library do you use and initialize ?
> >> > > > >> What svn version are you using ? Jerome reported to me
> >> > > > >> the same issue, but I have some very hard time to
> >> > > > >> reproduce the problem. Having some one else triggering
> >> > > > >> the same problem could help me understand what is going
> >> > > > >> on.
> >> > > > >
> >> > > > > It's been happening for some time, through multiple SVN
> >> > > > > updates. Seems to be just about all EFL programs, for
> >> > > > > instance (after a fresh SVN update just now) -
> >> > > > >
> >> > > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
> >> > > > > ERR<19471>:ecore ecore_thread.c:651
> >> > > > > _ecore_thread_shutdown() 1 of the child thread are still
> >> > > > > running after 1s. This can lead to a segv. Sorry.
> >> > > >
> >> > > > Oki, how many CPU do you have ? What kind are they ?
> >> > >
> >> > > Four core AMD -
> >> > >
> >> > > vendor_id       : AuthenticAMD
> >> > > cpu family      : 16
> >> > > model           : 5
> >> > > model name      : AMD Phenom(tm) II X4 840 Processor
> >> > > stepping        : 3
> >> > > cpu MHz         : 800.000
> >> > > cache size      : 512 KB
> >> > > apicid          : 0
> >> > > initial apicid  : 0
> >> > > fpu             : yes
> >> > > fpu_exception   : yes
> >> > > cpuid level     : 5
> >> > > wp              : yes
> >> > > flags           : fpu vme de pse tsc msr pae mce cx8 apic sep
> >> > > mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht
> >> > > syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow
> >> > > constant_tsc rep_good nonstop_tsc extd_apicid pni monitor cx16
> >> > > popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a
> >> > > misalignsse 3dnowprefetch osvw ibs skinit wdt npt lbrv
> >> > > svm_lock nrip_save bogomips        : 6429.38
> >> > > TLB size        : 1024 4K pages
> >> > > clflush size    : 64
> >> > > cache_alignment : 64
> >> > > address sizes   : 48 bits physical, 48 bits virtual
> >> > > power management: ts ttp tm stc 100mhzsteps hwpstate
> >> > >
> >> > > In case it's important - Ubuntu Linux 10.04 fully up to date.
> >> > >
> >> > > After this mornings update it seems to have stopped happening
> >> > > on the app I'm working on, but still on elementary_test.  Doing
> >> > > another update right now.
> >> >
> >> > Actually figured out that the reason it's not complaining any
> >> > more is coz something broke eina logging.  Still trying to
> >> > figure out what's the new way to actually get that working.
> >> >
> >>
> >> Can't actually enable logging in eina now.  Which means the
> >> original problem is now being hidden.  Hmm, think this commit is
> >> the logging problem -
> >>
> >> Log:
> >> Eina: add nice m4 macro to check function. Will be usable easily in
> >> the merge, per EFL lib
> >>   Please, test. config.h is the same (except useless macro
> >> HAVE_ICONV_H) and compilation is correct on linux and mingw here
> >>
> >> Author:       caro
> >> Date:         2012-06-27 23:45:12 -0700 (Wed, 27 Jun 2012)
> >> New Revision: 72972
> >
> > I made an evil hack to eina so that I could enable logging, and the
> > original bug is still there.  It's just visible again instead of
> > being hidden.
> 
> it works on my computer, i verified that before committing
> 
> > Sooo, that's two bugs now.  No I don't have a proper solution to the
> > eina logging bug.
> 
> paste config.log

http://pastebin.com/Q2JLrF9w

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's securi

Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread Vincent Torri
On Thu, Jun 28, 2012 at 10:36 PM, David Seikel  wrote:
> On Fri, 29 Jun 2012 04:55:27 +1000 David Seikel 
> wrote:
>
>> On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel 
>> wrote:
>>
>> > On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel 
>> > wrote:
>> >
>> > > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL
>> > >  wrote:
>> > >
>> > > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel
>> > > >  wrote:
>> > > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
>> > > > >  wrote:
>> > > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
>> > > > >>  wrote:
>> > > > >> > Recently I've been getting a one second pause then an error
>> > > > >> > message when I exit out of stuff compiled with up to date
>> > > > >> > EFL -
>> > > > >> >
>> > > > >> > ERR<8848>:ecore ecore_thread.c  :651
>> > > > >> > _ecore_thread_shutdown() 1 of the child thread are still
>> > > > >> > running after 1s. This can lead to a segv. Sorry.
>> > > > >> >
>> > > > >> > This is happening on programs that don't actually use
>> > > > >> > threads. Have not seen any seggies though.
>> > > > >>
>> > > > >> Interresting. What library do you use and initialize ? What
>> > > > >> svn version are you using ? Jerome reported to me the same
>> > > > >> issue, but I have some very hard time to reproduce the
>> > > > >> problem. Having some one else triggering the same problem
>> > > > >> could help me understand what is going on.
>> > > > >
>> > > > > It's been happening for some time, through multiple SVN
>> > > > > updates. Seems to be just about all EFL programs, for
>> > > > > instance (after a fresh SVN update just now) -
>> > > > >
>> > > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
>> > > > > ERR<19471>:ecore ecore_thread.c:651 _ecore_thread_shutdown() 1
>> > > > > of the child thread are still running after 1s. This can lead
>> > > > > to a segv. Sorry.
>> > > >
>> > > > Oki, how many CPU do you have ? What kind are they ?
>> > >
>> > > Four core AMD -
>> > >
>> > > vendor_id       : AuthenticAMD
>> > > cpu family      : 16
>> > > model           : 5
>> > > model name      : AMD Phenom(tm) II X4 840 Processor
>> > > stepping        : 3
>> > > cpu MHz         : 800.000
>> > > cache size      : 512 KB
>> > > apicid          : 0
>> > > initial apicid  : 0
>> > > fpu             : yes
>> > > fpu_exception   : yes
>> > > cpuid level     : 5
>> > > wp              : yes
>> > > flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr
>> > > pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx
>> > > mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc
>> > > rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm
>> > > cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse
>> > > 3dnowprefetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save
>> > > bogomips        : 6429.38
>> > > TLB size        : 1024 4K pages
>> > > clflush size    : 64
>> > > cache_alignment : 64
>> > > address sizes   : 48 bits physical, 48 bits virtual
>> > > power management: ts ttp tm stc 100mhzsteps hwpstate
>> > >
>> > > In case it's important - Ubuntu Linux 10.04 fully up to date.
>> > >
>> > > After this mornings update it seems to have stopped happening on
>> > > the app I'm working on, but still on elementary_test.  Doing
>> > > another update right now.
>> >
>> > Actually figured out that the reason it's not complaining any more
>> > is coz something broke eina logging.  Still trying to figure out
>> > what's the new way to actually get that working.
>> >
>>
>> Can't actually enable logging in eina now.  Which means the original
>> problem is now being hidden.  Hmm, think this commit is the logging
>> problem -
>>
>> Log:
>> Eina: add nice m4 macro to check function. Will be usable easily in
>> the merge, per EFL lib
>>   Please, test. config.h is the same (except useless macro
>> HAVE_ICONV_H) and compilation is correct on linux and mingw here
>>
>> Author:       caro
>> Date:         2012-06-27 23:45:12 -0700 (Wed, 27 Jun 2012)
>> New Revision: 72972
>
> I made an evil hack to eina so that I could enable logging, and the
> original bug is still there.  It's just visible again instead of being
> hidden.

it works on my computer, i verified that before committing

> Sooo, that's two bugs now.  No I don't have a proper solution to the
> eina logging bug.

paste config.log

Vincent

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread David Seikel
On Fri, 29 Jun 2012 04:55:27 +1000 David Seikel 
wrote:

> On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel 
> wrote:
> 
> > On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel 
> > wrote:
> > 
> > > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL
> > >  wrote:
> > > 
> > > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel
> > > >  wrote:
> > > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
> > > > >  wrote:
> > > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
> > > > >>  wrote:
> > > > >> > Recently I've been getting a one second pause then an error
> > > > >> > message when I exit out of stuff compiled with up to date
> > > > >> > EFL -
> > > > >> >
> > > > >> > ERR<8848>:ecore ecore_thread.c  :651
> > > > >> > _ecore_thread_shutdown() 1 of the child thread are still
> > > > >> > running after 1s. This can lead to a segv. Sorry.
> > > > >> >
> > > > >> > This is happening on programs that don't actually use
> > > > >> > threads. Have not seen any seggies though.
> > > > >>
> > > > >> Interresting. What library do you use and initialize ? What
> > > > >> svn version are you using ? Jerome reported to me the same
> > > > >> issue, but I have some very hard time to reproduce the
> > > > >> problem. Having some one else triggering the same problem
> > > > >> could help me understand what is going on.
> > > > >
> > > > > It's been happening for some time, through multiple SVN
> > > > > updates. Seems to be just about all EFL programs, for
> > > > > instance (after a fresh SVN update just now) -
> > > > >
> > > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
> > > > > ERR<19471>:ecore ecore_thread.c:651 _ecore_thread_shutdown() 1
> > > > > of the child thread are still running after 1s. This can lead
> > > > > to a segv. Sorry.
> > > > 
> > > > Oki, how many CPU do you have ? What kind are they ?
> > > 
> > > Four core AMD -
> > > 
> > > vendor_id   : AuthenticAMD
> > > cpu family  : 16
> > > model   : 5
> > > model name  : AMD Phenom(tm) II X4 840 Processor
> > > stepping: 3
> > > cpu MHz : 800.000
> > > cache size  : 512 KB
> > > apicid  : 0
> > > initial apicid  : 0
> > > fpu : yes
> > > fpu_exception   : yes
> > > cpuid level : 5
> > > wp  : yes
> > > flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr
> > > pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx
> > > mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc
> > > rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm
> > > cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse
> > > 3dnowprefetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save 
> > > bogomips: 6429.38
> > > TLB size: 1024 4K pages
> > > clflush size: 64
> > > cache_alignment : 64
> > > address sizes   : 48 bits physical, 48 bits virtual
> > > power management: ts ttp tm stc 100mhzsteps hwpstate
> > > 
> > > In case it's important - Ubuntu Linux 10.04 fully up to date.
> > > 
> > > After this mornings update it seems to have stopped happening on
> > > the app I'm working on, but still on elementary_test.  Doing
> > > another update right now.
> > 
> > Actually figured out that the reason it's not complaining any more
> > is coz something broke eina logging.  Still trying to figure out
> > what's the new way to actually get that working.
> > 
> 
> Can't actually enable logging in eina now.  Which means the original
> problem is now being hidden.  Hmm, think this commit is the logging
> problem -
> 
> Log:
> Eina: add nice m4 macro to check function. Will be usable easily in
> the merge, per EFL lib 
>   Please, test. config.h is the same (except useless macro
> HAVE_ICONV_H) and compilation is correct on linux and mingw here 
> 
> Author:   caro
> Date: 2012-06-27 23:45:12 -0700 (Wed, 27 Jun 2012)
> New Revision: 72972

I made an evil hack to eina so that I could enable logging, and the
original bug is still there.  It's just visible again instead of being
hidden.

Sooo, that's two bugs now.  No I don't have a proper solution to the
eina logging bug.

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Debugging a Startup Applications Issue

2012-06-28 Thread Jeff Hoogland
Still no extra output when adding those lines to the e_exec.c

On Thu, Jun 28, 2012 at 2:26 PM, Christopher Michael  wrote:

> Hrrmmm, so e_exec is actually executing the apps then (or so it would
> appear) else I would think that would error out. Unsure, I am a bit stumped
> here :/ You could try another fprintf in e_exec.c after 248 to make sure
> that ecore_exe_run is working, but other than that, I am out of ideas here
> :/
>
> Try adding a print out to the above, and in the meantime I will ponder on
> this some more.
>
> Could use something like:
>
> if (!(exe = ecore_exe_run(exec, inst)))
>  fprintf(stderr, "Ecore Failed to Run %s\n", exec);
>
> dh
>
>
>
> On 06/28/2012 08:11 PM, Jeff Hoogland wrote:
>
>> Still zero output with the proper print command:
>>
>>if (!(e_exec( NULL , desktop , NULL , NULL , NULL )))
>> fprintf(stderr, "Failed to exec startup application: %s\n",
>> desktop->name);
>>
>> Added that to the _e_startup function. Other suggestions?
>>
>> On Thu, Jun 28, 2012 at 12:58 PM, Jeff Hoogland > >wrote:
>>
>>  Ha! I realized that just before getting your message - rebuilding my
>>> packages now to test.
>>>
>>>
>>> On Thu, Jun 28, 2012 at 12:57 PM, Christopher Michael <
>>> cpmicha...@comcast.net> wrote:
>>>
>>>
 On 06/28/2012 06:38 PM, Jeff Hoogland wrote:

 Sorry about that. Should have been an fprintf(stderr, ...)  like the the
 previous ones.

 dh


  Sorry for the delay - My Monday-Wednesday is crazy busy.

>
> Devilhorns I added the live to the e_startup function you indicated:
>
> if (!(e_exec( NULL , desktop , NULL , NULL , NULL )))
> printf("Failed to exec startup application: %s\n", desktop->name);
>
> And it doesn't display any output in the .xsession-errors like my other
> print message does.
>
> Other ideas/suggestions?
>
> On Sun, Jun 24, 2012 at 7:21 PM, Daniel Juyung Seo <
> seojuyu...@gmail.com
>
>> wrote:
>>
>
>  Yes Jeff(Bodhi) is the first class advocate of E. We need to help him
> :)
>
>> On Jun 23, 2012 5:41 AM, "Christopher Michael" <
>> cpmicha...@comcast.net>
>> wrote:
>>
>>  Sebastian Dransfeld  wrote:
>>
>>>
>>> On 06/22/2012 06:49 PM, Jeff Hoogland wrote:
>>>
>>>  OK -

 So, I'm having an issue with Enlightenment on my latest Bodhi disc -

  for
>>>
>>
>>  my
>>>
>>>  live user no startup applications run when Enlightenment is
 started...

  At
>>>
>>
>>  the suggestion of Raster/Devilhorns I've started adding print
>>> commands
>>>

  to
>>>
>>
>>  the *e_startup.c*, but I still haven't pinned down the issue.
>>>

 The path to the home directory in *e_startup* is being correctly
 saved

  to
>>>
>>
>>  the buf argument (it is showing the proper
>>>
 /home/bodhi/.e/e/applications/startup/.order). Next I dropped a

 print
 command into the *_e_startup_event_cb* to see if the desktop cache
 is

  being
>>>
>>>  set right (that is the next place I should look right?) And much to
 my
 surprise that function doesn't seem to be getting run at E's
 startup.
 Should that function be running or am I looking in the wrong place?
 Any
 other ideas what I should be looking for that might be causing this

  issue?
>>>
>>>
 The oddest part about the whole thing is that for my installed users
 startup applications work 100% fine.


  If _e_startup_event_cb isn't called, then init should never finish
>>> (check the e_init_undone/e_init_done calls in e_startup).
>>>
>>> S.
>>>
>>>
>>> _____
>>>
>>>
>>> Live Security Virtual Conference
>>> Exclusive live event will cover all the ways today's security and
>>> threat landscape has changed and how IT managers can respond.
>>> Discussions
>>> will include endpoint security, mobile security and the latest in
>>> malware
>>> threats. http://www.accelacomm.com/jaw/**
>>> **sfrnl04242012/114/50122263/
>>> <**http://www.accelacomm.com/jaw/**sfrnl04242012/114/50122263/
>>> >
>>> _____
>>>
>>> enlightenment-devel mailing list
>>> enlightenment-devel@lists.**so**urceforge.net
>>> 
>>> >
>>> https://lists.sourceforge.net/lists/listinfo/**
>>> enlightenment-**devel
>>> >>

Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread David Seikel
On Fri, 29 Jun 2012 04:19:25 +1000 David Seikel 
wrote:

> On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel 
> wrote:
> 
> > On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL 
> > wrote:
> > 
> > > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel 
> > > wrote:
> > > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
> > > >  wrote:
> > > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel
> > > >>  wrote:
> > > >> > Recently I've been getting a one second pause then an error
> > > >> > message when I exit out of stuff compiled with up to date
> > > >> > EFL -
> > > >> >
> > > >> > ERR<8848>:ecore ecore_thread.c  :651
> > > >> > _ecore_thread_shutdown() 1 of the child thread are still
> > > >> > running after 1s. This can lead to a segv. Sorry.
> > > >> >
> > > >> > This is happening on programs that don't actually use
> > > >> > threads. Have not seen any seggies though.
> > > >>
> > > >> Interresting. What library do you use and initialize ? What svn
> > > >> version are you using ? Jerome reported to me the same issue,
> > > >> but I have some very hard time to reproduce the problem. Having
> > > >> some one else triggering the same problem could help me
> > > >> understand what is going on.
> > > >
> > > > It's been happening for some time, through multiple SVN updates.
> > > > Seems to be just about all EFL programs, for instance (after a
> > > > fresh SVN update just now) -
> > > >
> > > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
> > > > ERR<19471>:ecore ecore_thread.c:651 _ecore_thread_shutdown() 1
> > > > of the child thread are still running after 1s. This can lead
> > > > to a segv. Sorry.
> > > 
> > > Oki, how many CPU do you have ? What kind are they ?
> > 
> > Four core AMD -
> > 
> > vendor_id   : AuthenticAMD
> > cpu family  : 16
> > model   : 5
> > model name  : AMD Phenom(tm) II X4 840 Processor
> > stepping: 3
> > cpu MHz : 800.000
> > cache size  : 512 KB
> > apicid  : 0
> > initial apicid  : 0
> > fpu : yes
> > fpu_exception   : yes
> > cpuid level : 5
> > wp  : yes
> > flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr
> > pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx
> > mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc
> > rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm
> > cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse
> > 3dnowprefetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save 
> > bogomips: 6429.38
> > TLB size: 1024 4K pages
> > clflush size: 64
> > cache_alignment : 64
> > address sizes   : 48 bits physical, 48 bits virtual
> > power management: ts ttp tm stc 100mhzsteps hwpstate
> > 
> > In case it's important - Ubuntu Linux 10.04 fully up to date.
> > 
> > After this mornings update it seems to have stopped happening on the
> > app I'm working on, but still on elementary_test.  Doing another
> > update right now.
> 
> Actually figured out that the reason it's not complaining any more is
> coz something broke eina logging.  Still trying to figure out what's
> the new way to actually get that working.
> 

Can't actually enable logging in eina now.  Which means the original
problem is now being hidden.  Hmm, think this commit is the logging
problem -

Log:
Eina: add nice m4 macro to check function. Will be usable easily in the
merge, per EFL lib 
  Please, test. config.h is the same (except useless macro
HAVE_ICONV_H) and compilation is correct on linux and mingw here 

Author:   caro
Date: 2012-06-27 23:45:12 -0700 (Wed, 27 Jun 2012)
New Revision: 72972

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread David Seikel
On Thu, 28 Jun 2012 23:59:58 +1000 David Seikel 
wrote:

> On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL 
> wrote:
> 
> > On Thu, Jun 28, 2012 at 10:58 AM, David Seikel 
> > wrote:
> > > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL
> > >  wrote:
> > >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel 
> > >> wrote:
> > >> > Recently I've been getting a one second pause then an error
> > >> > message when I exit out of stuff compiled with up to date EFL -
> > >> >
> > >> > ERR<8848>:ecore ecore_thread.c  :651
> > >> > _ecore_thread_shutdown() 1 of the child thread are still
> > >> > running after 1s. This can lead to a segv. Sorry.
> > >> >
> > >> > This is happening on programs that don't actually use threads.
> > >> >  Have not seen any seggies though.
> > >>
> > >> Interresting. What library do you use and initialize ? What svn
> > >> version are you using ? Jerome reported to me the same issue,
> > >> but I have some very hard time to reproduce the problem. Having
> > >> some one else triggering the same problem could help me
> > >> understand what is going on.
> > >
> > > It's been happening for some time, through multiple SVN updates.
> > > Seems to be just about all EFL programs, for instance (after a
> > > fresh SVN update just now) -
> > >
> > > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
> > > ERR<19471>:ecore ecore_thread.c:651 _ecore_thread_shutdown() 1 of
> > > the child thread are still running after 1s. This can lead to a
> > > segv. Sorry.
> > 
> > Oki, how many CPU do you have ? What kind are they ?
> 
> Four core AMD -
> 
> vendor_id   : AuthenticAMD
> cpu family  : 16
> model   : 5
> model name  : AMD Phenom(tm) II X4 840 Processor
> stepping: 3
> cpu MHz : 800.000
> cache size  : 512 KB
> apicid  : 0
> initial apicid  : 0
> fpu : yes
> fpu_exception   : yes
> cpuid level : 5
> wp  : yes
> flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
> mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext
> fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good
> nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm
> extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit
> wdt npt lbrv svm_lock nrip_save 
> bogomips: 6429.38
> TLB size: 1024 4K pages
> clflush size: 64
> cache_alignment : 64
> address sizes   : 48 bits physical, 48 bits virtual
> power management: ts ttp tm stc 100mhzsteps hwpstate
> 
> In case it's important - Ubuntu Linux 10.04 fully up to date.
> 
> After this mornings update it seems to have stopped happening on the
> app I'm working on, but still on elementary_test.  Doing another
> update right now.

Actually figured out that the reason it's not complaining any more is
coz something broke eina logging.  Still trying to figure out what's
the new way to actually get that working.

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Debugging a Startup Applications Issue

2012-06-28 Thread Christopher Michael

On 06/28/2012 06:38 PM, Jeff Hoogland wrote:

Sorry about that. Should have been an fprintf(stderr, ...)  like the the 
previous ones.

dh

> Sorry for the delay - My Monday-Wednesday is crazy busy.
>
> Devilhorns I added the live to the e_startup function you indicated:
>
> if (!(e_exec( NULL , desktop , NULL , NULL , NULL )))
> printf("Failed to exec startup application: %s\n", desktop->name);
>
> And it doesn't display any output in the .xsession-errors like my other
> print message does.
>
> Other ideas/suggestions?
>
> On Sun, Jun 24, 2012 at 7:21 PM, Daniel Juyung Seo 
> wrote:
>
>> Yes Jeff(Bodhi) is the first class advocate of E. We need to help him :)
>> On Jun 23, 2012 5:41 AM, "Christopher Michael" 
>> wrote:
>>
>>> Sebastian Dransfeld  wrote:
>>>
>>> On 06/22/2012 06:49 PM, Jeff Hoogland wrote:
 OK -

 So, I'm having an issue with Enlightenment on my latest Bodhi disc -
>> for
>>> my
 live user no startup applications run when Enlightenment is started...
>> At
 the suggestion of Raster/Devilhorns I've started adding print commands
>> to
 the *e_startup.c*, but I still haven't pinned down the issue.

 The path to the home directory in *e_startup* is being correctly saved
>> to
 the buf argument (it is showing the proper
 /home/bodhi/.e/e/applications/startup/.order). Next I dropped a print
 command into the *_e_startup_event_cb* to see if the desktop cache is
>>> being
 set right (that is the next place I should look right?) And much to my
 surprise that function doesn't seem to be getting run at E's startup.
 Should that function be running or am I looking in the wrong place? Any
 other ideas what I should be looking for that might be causing this
>>> issue?

 The oddest part about the whole thing is that for my installed users
 startup applications work 100% fine.

>>>
>>> If _e_startup_event_cb isn't called, then init should never finish
>>> (check the e_init_undone/e_init_done calls in e_startup).
>>>
>>> S.
>>>
>>>
>>> _
>>>
>>> Live Security Virtual Conference
>>> Exclusive live event will cover all the ways today's security and
>>> threat landscape has changed and how IT managers can respond. Discussions
>>> will include endpoint security, mobile security and the latest in malware
>>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>>> _
>>>
>>> enlightenment-devel mailing list
>>> enlightenment-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>>
>>>
>>> Many thanks Seb :-) Wanted to get this sorted for Jef asapBodhi is a
>>> stabple in E workd (afai am concerned). They provide easy access to E and
>>> users love Bodhi (wrt reviews). So IMO we shoukd support them (Jeff) as
>>> much as we can !! Many thanks Seb for the help !!;-)
>>>
>>> BR
>>> Cheers
>>> Dh
>>>
>>> --
>>> Sent from my Android phone with K-9 Mail. Please excuse my brevity.

>



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Debugging a Startup Applications Issue

2012-06-28 Thread Jeff Hoogland
Sorry for the delay - My Monday-Wednesday is crazy busy.

Devilhorns I added the live to the e_startup function you indicated:

if (!(e_exec( NULL , desktop , NULL , NULL , NULL )))
printf("Failed to exec startup application: %s\n", desktop->name);

And it doesn't display any output in the .xsession-errors like my other
print message does.

Other ideas/suggestions?

On Sun, Jun 24, 2012 at 7:21 PM, Daniel Juyung Seo wrote:

> Yes Jeff(Bodhi) is the first class advocate of E. We need to help him :)
> On Jun 23, 2012 5:41 AM, "Christopher Michael" 
> wrote:
>
> > Sebastian Dransfeld  wrote:
> >
> > On 06/22/2012 06:49 PM, Jeff Hoogland wrote:
> > > OK -
> > >
> > > So, I'm having an issue with Enlightenment on my latest Bodhi disc -
> for
> > my
> > > live user no startup applications run when Enlightenment is started...
> At
> > > the suggestion of Raster/Devilhorns I've started adding print commands
> to
> > > the *e_startup.c*, but I still haven't pinned down the issue.
> > >
> > > The path to the home directory in *e_startup* is being correctly saved
> to
> > > the buf argument (it is showing the proper
> > > /home/bodhi/.e/e/applications/startup/.order). Next I dropped a print
> > > command into the *_e_startup_event_cb* to see if the desktop cache is
> > being
> > > set right (that is the next place I should look right?) And much to my
> > > surprise that function doesn't seem to be getting run at E's startup.
> > > Should that function be running or am I looking in the wrong place? Any
> > > other ideas what I should be looking for that might be causing this
> > issue?
> > >
> > > The oddest part about the whole thing is that for my installed users
> > > startup applications work 100% fine.
> > >
> >
> > If _e_startup_event_cb isn't called, then init should never finish
> > (check the e_init_undone/e_init_done calls in e_startup).
> >
> > S.
> >
> >
> > _
> >
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _
> >
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> >
> > Many thanks Seb :-) Wanted to get this sorted for Jef asapBodhi is a
> > stabple in E workd (afai am concerned). They provide easy access to E and
> > users love Bodhi (wrt reviews). So IMO we shoukd support them (Jeff) as
> > much as we can !! Many thanks Seb for the help !!;-)
> >
> > BR
> > Cheers
> > Dh
> >
> > --
> > Sent from my Android phone with K-9 Mail. Please excuse my brevity.
> >
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>



-- 
~Jeff Hoogland 
Thoughts on Technology , Tech Blog
Bodhi Linux , Enlightenment for your Desktop
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: discomfitor trunk/eeze/src/bin

2012-06-28 Thread Vincent Torri
On Thu, Jun 28, 2012 at 4:45 PM, Gustavo Sverzut Barbieri
 wrote:
> On Thursday, June 28, 2012, Enlightenment SVN wrote:
>
>> Log:
>> eeze scanner log dom -> ERR
>>
>>
>> Author:       discomfitor
>> Date:         2012-06-28 03:23:11 -0700 (Thu, 28 Jun 2012)
>> New Revision: 72994
>> Trac:         http://trac.enlightenment.org/e/changeset/72994
>>
>> Modified:
>>  trunk/eeze/src/bin/eeze_scanner.c
>>
>> Modified: trunk/eeze/src/bin/eeze_scanner.c
>> ===
>> --- trunk/eeze/src/bin/eeze_scanner.c   2012-06-28 10:19:45 UTC (rev 72993)
>> +++ trunk/eeze/src/bin/eeze_scanner.c   2012-06-28 10:23:11 UTC (rev 72994)
>> @@ -431,8 +431,8 @@
>>
>>    sigs_setup();
>>    es_log_dom = eina_log_domain_register("eeze_scanner", EINA_COLOR_CYAN);
>> -   eina_log_domain_level_set("eeze_scanner", EINA_LOG_LEVEL_DBG);
>> -   eina_log_domain_level_set("eeze", EINA_LOG_LEVEL_DBG);
>> +   eina_log_domain_level_set("eeze_scanner", EINA_LOG_LEVEL_ERR);
>> +   eina_log_domain_level_set("eeze", EINA_LOG_LEVEL_ERR);
>
>
>
>
> You shouldn't do this! Use EINA_LOG_LEVELS=eeze:2 or the level you want. By
> default it will be EINA_LOG_LEVEL= value if nothing specific is used.

I agree

Vincent

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: stefan trunk/eina/src/tests

2012-06-28 Thread Vincent Torri
On Thu, Jun 28, 2012 at 5:15 PM, Enlightenment SVN
 wrote:
> Log:
> eina/tests: Bring in the needed flags for coverage after the rework.
>
>  Vicent, this is like you did it for benchmark. If you want any other
>  setup for coverage feel free to change.

i don't have that problem. I think that it's because different libc,
sometimes dlopen is in libc, sometimes in libdl, etc..

That patch does not hrurt, so it's ok if it fixes the problem

Vincent

>
> Author:       stefan
> Date:         2012-06-28 08:15:56 -0700 (Thu, 28 Jun 2012)
> New Revision: 73016
> Trac:         http://trac.enlightenment.org/e/changeset/73016
>
> Modified:
>  trunk/eina/src/tests/Makefile.am
>
> Modified: trunk/eina/src/tests/Makefile.am
> ===
> --- trunk/eina/src/tests/Makefile.am    2012-06-28 15:15:50 UTC (rev 73015)
> +++ trunk/eina/src/tests/Makefile.am    2012-06-28 15:15:56 UTC (rev 73016)
> @@ -70,10 +70,10 @@
>  eina_test_value.c
>  # eina_test_model.c
>
> -eina_suite_LDADD = @CHECK_LIBS@ $(top_builddir)/src/lib/libeina.la -lm
> +eina_suite_LDADD = @CHECK_LIBS@ $(top_builddir)/src/lib/libeina.la 
> @EINA_LIBS@ -lm
>
>  cxx_compile_test_SOURCES = cxx_compile_test.cxx
> -cxx_compile_test_LDADD = $(top_builddir)/src/lib/libeina.la
> +cxx_compile_test_LDADD = $(top_builddir)/src/lib/libeina.la @EINA_LIBS@
>
>  module_dummydir = $(libdir)/eina/test
>  module_dummy_LTLIBRARIES = module_dummy.la
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] broke file selector in e17

2012-06-28 Thread The Rasterman
bte - u broke file selector - text totally overlaps icons now and doenst
compress (filena...) or scroll. :)

-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] what's about the webkit-efl status?

2012-06-28 Thread Raphael Kubo da Costa
"Dennis.Yxun"  writes:

> hi ALL:
>   I'm using gentoo linux, and compile webkit-efl from
> enlightenment-niifaq overlay
> net-libs/webkit-efl-0.1.98964, source code take from svn r98964 version.
>  Actually it fails to compile.
>  And, people from #gentoo-e tell me webkit-efl is unmaintained, thus
> broken, it that true?

WebKit-EFL is actively maintained by individuals and a few companies;
however, nobody is currently generating snapshot tarballs these days.


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Magic checks before NULL checks in Eina

2012-06-28 Thread Michael Blumenkrantz
On Thu, 28 Jun 2012 11:22:21 -0300
Gustavo Sverzut Barbieri  wrote:

> On Thursday, June 28, 2012, Michael Blumenkrantz wrote:
> 
> > On Wed, 27 Jun 2012 23:43:23 -0300
> > Raphael Kubo da Costa  wrote:
> >
> > > Cedric BAIL > writes:
> > >
> > > > I personally think that eina_iterator_free like any free function
> > > > should just work fine with NULL. I was against at that time, but
> > > > others won. So we do have this incoherency where some of our free
> > > > function work with NULL and some don't.
> > >
> > > So what can we do to improve the situation here (if it does need to be
> > > improved)? Speaking more generically, what criteria are used to decide
> > > that a function should be decorated with EINA_ARG_NONNULL and/or have
> > > magic checks performed?
> > >
> >
> > I am hugely in favor of having all _free() and _del() functions take NULL
> > arguments without erroring.
> 
> 
> I disagree, in regular situation it should never return a NULL handle, so
> you should never have a NULL handle to free. If that happened you did some
> mistake in the code and it's easier to spot and fix.
> 
> Compatibility with libc is moot: should we also crash on other functions as
> well?! :-)
> 
> 
> 
> >
> >
> > --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net 
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> 
> 

You're making a slippery slope argument 
(http://en.wikipedia.org/wiki/Slippery_slope).

My statement, and the one I was referencing, was about free and delete
functions, not on all functions. Your insinuation that allowing silent passing
of a NULL param to deletion functions would cause crashes is inane; the purpose
of this is to simplify if (X) del(X), which is annoying and pointless. libc
understands this, which is why it doesn't crash on free(NULL). A "regular
situation" such as you claim never occurs does, in fact, happen in literally
every single cleanup function in every app and library.

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: discomfitor trunk/eeze/src/bin

2012-06-28 Thread Gustavo Sverzut Barbieri
On Thursday, June 28, 2012, Enlightenment SVN wrote:

> Log:
> eeze scanner log dom -> ERR
>
>
> Author:   discomfitor
> Date: 2012-06-28 03:23:11 -0700 (Thu, 28 Jun 2012)
> New Revision: 72994
> Trac: http://trac.enlightenment.org/e/changeset/72994
>
> Modified:
>  trunk/eeze/src/bin/eeze_scanner.c
>
> Modified: trunk/eeze/src/bin/eeze_scanner.c
> ===
> --- trunk/eeze/src/bin/eeze_scanner.c   2012-06-28 10:19:45 UTC (rev 72993)
> +++ trunk/eeze/src/bin/eeze_scanner.c   2012-06-28 10:23:11 UTC (rev 72994)
> @@ -431,8 +431,8 @@
>
>sigs_setup();
>es_log_dom = eina_log_domain_register("eeze_scanner", EINA_COLOR_CYAN);
> -   eina_log_domain_level_set("eeze_scanner", EINA_LOG_LEVEL_DBG);
> -   eina_log_domain_level_set("eeze", EINA_LOG_LEVEL_DBG);
> +   eina_log_domain_level_set("eeze_scanner", EINA_LOG_LEVEL_ERR);
> +   eina_log_domain_level_set("eeze", EINA_LOG_LEVEL_ERR);




You shouldn't do this! Use EINA_LOG_LEVELS=eeze:2 or the level you want. By
default it will be EINA_LOG_LEVEL= value if nothing specific is used.

I saw you did it for EFM, same thing.



>
>tmp = getenv("TMPDIR");
>if (!tmp) tmp = "/tmp";
>
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net 
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>


-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] what's about the webkit-efl status?

2012-06-28 Thread Daniel Juyung Seo
no, webkit-efl is maintained by profusion and samsung.
someone can answer here? if there is no answer, i will ask webkit-efl guy
soon.
On Jun 28, 2012 6:28 PM, "Dennis.Yxun"  wrote:

> hi ALL:
>  I'm using gentoo linux, and compile webkit-efl from
> enlightenment-niifaq overlay
> net-libs/webkit-efl-0.1.98964, source code take from svn r98964 version.
>  Actually it fails to compile.
>  And, people from #gentoo-e tell me webkit-efl is unmaintained, thus
> broken, it that true?
>
> Dennis
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: yoz trunk/elementary/src/lib

2012-06-28 Thread Gustavo Lima Chaves
* Daniel Juyung Seo  [2012-06-28 23:39:28 +0900]:

> So this comes with some other widgets which are using scroller internally?

Naturally.

-- 
Gustavo Lima Chaves
Computer Engineer @ ProFUSION Embedded Systems

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: yoz trunk/elementary/src/lib

2012-06-28 Thread Daniel Juyung Seo
So this comes with some other widgets which are using scroller internally?
On Jun 28, 2012 11:04 PM, "Gustavo Lima Chaves" 
wrote:

> * Carsten Haitzler  [2012-06-28 19:15:20 +0900]:
>
> > On Tue, 26 Jun 2012 13:42:00 -0300 Gustavo Sverzut Barbieri
> >  said:
> >
> > > On Tue, Jun 26, 2012 at 11:29 AM, Carsten Haitzler <
> ras...@rasterman.com>
> > > wrote:
> > > > On Tue, 26 Jun 2012 10:46:04 +0900 Daniel Juyung Seo <
> seojuyu...@gmail.com>
> > > > said:
> > > >
> > > >> Great! So it's EFL 1.1/1.3/1.7 this time?
> > > >> Or just 1.7 for all of them?
> > > >
> > > > 1.7 for all. :)
> > >
> > > Glima is about to merge some work that refactor's scroller into an
> > > interface. That will help to reduce the number of required functions
> > > and also clean up a bit all the users of scroller. But it will also
> > > require some changes to Evas (no API/ABI breaks, just additions) and
> > > Elementary.
> > >
> > > So could it wait a bit until this gets in?
> >
> > so how long will that be? that is the key question.
>
> I already have list and photocam ready. Scroller is coming in
> today. Now that the base is done, porting will be straightforward and
> fast. Say, ~ 1 week?
>
> --
> Gustavo Lima Chaves
> Computer Engineer @ ProFUSION Embedded Systems
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 BUG CALL

2012-06-28 Thread Daniel Juyung Seo
fix it fix it!!
this is very annoying.
On Jun 28, 2012 11:17 PM, "Michael Blumenkrantz" <
michael.blumenkra...@gmail.com> wrote:

> it's a problem with shelf gadget redraws after my recent commit that
> clamped the size of a shelf to the size of the screen
>
> On Thu, Jun 28, 2012 at 2:50 PM, David Seikel  wrote:
>
> > On Thu, 28 Jun 2012 23:46:39 +1000 David Seikel 
> > wrote:
> >
> > > On Thu, 28 Jun 2012 13:10:44 +0100 Michael Blumenkrantz
> > >  wrote:
> > >
> > > > no idea, you could try sending me your ~/.e I guess
> > > >
> > > > pager size is a known bug that will be fixed soonish, you can work
> > > > around it by setting your shelf to autohide or using pager as a
> > > > gadget
> > > >
> > > > On Thu, Jun 28, 2012 at 1:04 PM, Ross Vandegrift 
> > > > wrote:
> > > >
> > > > > On Wed, 2012-06-27 at 13:07 +0100, Michael Blumenkrantz wrote:
> > > > > > tried again, still can't reproduce
> > > > >
> > > > > Hmmm, any idea what I could look at?  I can reproduce on my
> > > > > workstation and laptop, in a normal X session or Xephyr, with a
> > > > > fresh profile or an existing one.  I pulled 72968 to check, and it
> > > > > is still there.
> > > > >
> > > > > In case it matters: Xorg 1.12.1902 (Debian testing), no OpenGL, no
> > > > > non-stock E17 modules.
> > > > >
> > > > >
> > > > >
> > > > > Different issue: pager squishes all my virtual desktops so they
> > > > > are super-skinny, even though the whole is still as wide as it
> > > > > normally is:
> > > > > http://www.enlightenment.org/ss/e-4fec46bb7882e9.74897488.jpg
> > > > >
> > > > > I can fix it by changing the number of virtual desktops, and then
> > > > > changing it back.
> > >
> > > I'm getting a squished pager AND other modules on that same shelf.
> > > Calendar, clock, and cpufreq.  The tclock and uptime modules work
> > > fine, though they are text only.  Is this known issue affecting them
> > > to?
> >
> > Changing the number of virtual desktops also fixed up the other
> > modules.  Autohide did nothing.
> >
> > --
> > A big old stinking pile of genius that no one wants
> > coz there are too many silver coated monkeys in the world.
> >
> >
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> >
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Magic checks before NULL checks in Eina

2012-06-28 Thread Gustavo Sverzut Barbieri
On Thursday, June 28, 2012, Michael Blumenkrantz wrote:

> On Wed, 27 Jun 2012 23:43:23 -0300
> Raphael Kubo da Costa  wrote:
>
> > Cedric BAIL > writes:
> >
> > > I personally think that eina_iterator_free like any free function
> > > should just work fine with NULL. I was against at that time, but
> > > others won. So we do have this incoherency where some of our free
> > > function work with NULL and some don't.
> >
> > So what can we do to improve the situation here (if it does need to be
> > improved)? Speaking more generically, what criteria are used to decide
> > that a function should be decorated with EINA_ARG_NONNULL and/or have
> > magic checks performed?
> >
>
> I am hugely in favor of having all _free() and _del() functions take NULL
> arguments without erroring.


I disagree, in regular situation it should never return a NULL handle, so
you should never have a NULL handle to free. If that happened you did some
mistake in the code and it's easier to spot and fix.

Compatibility with libc is moot: should we also crash on other functions as
well?! :-)



>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net 
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>


-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 BUG CALL

2012-06-28 Thread Michael Blumenkrantz
it's a problem with shelf gadget redraws after my recent commit that
clamped the size of a shelf to the size of the screen

On Thu, Jun 28, 2012 at 2:50 PM, David Seikel  wrote:

> On Thu, 28 Jun 2012 23:46:39 +1000 David Seikel 
> wrote:
>
> > On Thu, 28 Jun 2012 13:10:44 +0100 Michael Blumenkrantz
> >  wrote:
> >
> > > no idea, you could try sending me your ~/.e I guess
> > >
> > > pager size is a known bug that will be fixed soonish, you can work
> > > around it by setting your shelf to autohide or using pager as a
> > > gadget
> > >
> > > On Thu, Jun 28, 2012 at 1:04 PM, Ross Vandegrift 
> > > wrote:
> > >
> > > > On Wed, 2012-06-27 at 13:07 +0100, Michael Blumenkrantz wrote:
> > > > > tried again, still can't reproduce
> > > >
> > > > Hmmm, any idea what I could look at?  I can reproduce on my
> > > > workstation and laptop, in a normal X session or Xephyr, with a
> > > > fresh profile or an existing one.  I pulled 72968 to check, and it
> > > > is still there.
> > > >
> > > > In case it matters: Xorg 1.12.1902 (Debian testing), no OpenGL, no
> > > > non-stock E17 modules.
> > > >
> > > >
> > > >
> > > > Different issue: pager squishes all my virtual desktops so they
> > > > are super-skinny, even though the whole is still as wide as it
> > > > normally is:
> > > > http://www.enlightenment.org/ss/e-4fec46bb7882e9.74897488.jpg
> > > >
> > > > I can fix it by changing the number of virtual desktops, and then
> > > > changing it back.
> >
> > I'm getting a squished pager AND other modules on that same shelf.
> > Calendar, clock, and cpufreq.  The tclock and uptime modules work
> > fine, though they are text only.  Is this known issue affecting them
> > to?
>
> Changing the number of virtual desktops also fixed up the other
> modules.  Autohide did nothing.
>
> --
> A big old stinking pile of genius that no one wants
> coz there are too many silver coated monkeys in the world.
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: yoz trunk/elementary/src/lib

2012-06-28 Thread Gustavo Lima Chaves
* Carsten Haitzler  [2012-06-28 19:15:20 +0900]:

> On Tue, 26 Jun 2012 13:42:00 -0300 Gustavo Sverzut Barbieri
>  said:
>
> > On Tue, Jun 26, 2012 at 11:29 AM, Carsten Haitzler 
> > wrote:
> > > On Tue, 26 Jun 2012 10:46:04 +0900 Daniel Juyung Seo 
> > > 
> > > said:
> > >
> > >> Great! So it's EFL 1.1/1.3/1.7 this time?
> > >> Or just 1.7 for all of them?
> > >
> > > 1.7 for all. :)
> >
> > Glima is about to merge some work that refactor's scroller into an
> > interface. That will help to reduce the number of required functions
> > and also clean up a bit all the users of scroller. But it will also
> > require some changes to Evas (no API/ABI breaks, just additions) and
> > Elementary.
> >
> > So could it wait a bit until this gets in?
>
> so how long will that be? that is the key question.

I already have list and photocam ready. Scroller is coming in
today. Now that the base is done, porting will be straightforward and
fast. Say, ~ 1 week?

--
Gustavo Lima Chaves
Computer Engineer @ ProFUSION Embedded Systems

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Magic checks before NULL checks in Eina

2012-06-28 Thread David Seikel
On Thu, 28 Jun 2012 06:53:55 +0100 Michael Blumenkrantz
 wrote:

> On Wed, 27 Jun 2012 23:43:23 -0300
> Raphael Kubo da Costa  wrote:
> 
> > Cedric BAIL  writes:
> > 
> > > I personally think that eina_iterator_free like any free function
> > > should just work fine with NULL. I was against at that time, but
> > > others won. So we do have this incoherency where some of our free
> > > function work with NULL and some don't.
> > 
> > So what can we do to improve the situation here (if it does need to
> > be improved)? Speaking more generically, what criteria are used to
> > decide that a function should be decorated with EINA_ARG_NONNULL
> > and/or have magic checks performed?
> > 
> 
> I am hugely in favor of having all _free() and _del() functions take
> NULL arguments without erroring.

I agree with that to.

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Thread error, on non threaded programs.

2012-06-28 Thread David Seikel
On Thu, 28 Jun 2012 11:13:44 +0900 Cedric BAIL 
wrote:

> On Thu, Jun 28, 2012 at 10:58 AM, David Seikel 
> wrote:
> > On Thu, 28 Jun 2012 09:48:53 +0900 Cedric BAIL 
> > wrote:
> >> On Thu, Jun 28, 2012 at 2:28 AM, David Seikel 
> >> wrote:
> >> > Recently I've been getting a one second pause then an error
> >> > message when I exit out of stuff compiled with up to date EFL -
> >> >
> >> > ERR<8848>:ecore ecore_thread.c  :651
> >> > _ecore_thread_shutdown() 1 of the child thread are still running
> >> > after 1s. This can lead to a segv. Sorry.
> >> >
> >> > This is happening on programs that don't actually use threads.
> >> >  Have not seen any seggies though.
> >>
> >> Interresting. What library do you use and initialize ? What svn
> >> version are you using ? Jerome reported to me the same issue, but I
> >> have some very hard time to reproduce the problem. Having some one
> >> else triggering the same problem could help me understand what is
> >> going on.
> >
> > It's been happening for some time, through multiple SVN updates.
> > Seems to be just about all EFL programs, for instance (after a fresh
> > SVN update just now) -
> >
> > ~/e17_svn/SVN/trunk/elementary/src/bin$ ./elementary_test
> > ERR<19471>:ecore ecore_thread.c:651 _ecore_thread_shutdown() 1 of
> > the child thread are still running after 1s. This can lead to a
> > segv. Sorry.
> 
> Oki, how many CPU do you have ? What kind are they ?

Four core AMD -

vendor_id   : AuthenticAMD
cpu family  : 16
model   : 5
model name  : AMD Phenom(tm) II X4 840 Processor
stepping: 3
cpu MHz : 800.000
cache size  : 512 KB
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 5
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext
fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good
nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm
extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit
wdt npt lbrv svm_lock nrip_save 
bogomips: 6429.38
TLB size: 1024 4K pages
clflush size: 64
cache_alignment : 64
address sizes   : 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate

In case it's important - Ubuntu Linux 10.04 fully up to date.

After this mornings update it seems to have stopped happening on the
app I'm working on, but still on elementary_test.  Doing another update
right now.

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 BUG CALL

2012-06-28 Thread David Seikel
On Thu, 28 Jun 2012 23:46:39 +1000 David Seikel 
wrote:

> On Thu, 28 Jun 2012 13:10:44 +0100 Michael Blumenkrantz
>  wrote:
> 
> > no idea, you could try sending me your ~/.e I guess
> > 
> > pager size is a known bug that will be fixed soonish, you can work
> > around it by setting your shelf to autohide or using pager as a
> > gadget
> > 
> > On Thu, Jun 28, 2012 at 1:04 PM, Ross Vandegrift 
> > wrote:
> > 
> > > On Wed, 2012-06-27 at 13:07 +0100, Michael Blumenkrantz wrote:
> > > > tried again, still can't reproduce
> > >
> > > Hmmm, any idea what I could look at?  I can reproduce on my
> > > workstation and laptop, in a normal X session or Xephyr, with a
> > > fresh profile or an existing one.  I pulled 72968 to check, and it
> > > is still there.
> > >
> > > In case it matters: Xorg 1.12.1902 (Debian testing), no OpenGL, no
> > > non-stock E17 modules.
> > >
> > >
> > >
> > > Different issue: pager squishes all my virtual desktops so they
> > > are super-skinny, even though the whole is still as wide as it
> > > normally is:
> > > http://www.enlightenment.org/ss/e-4fec46bb7882e9.74897488.jpg
> > >
> > > I can fix it by changing the number of virtual desktops, and then
> > > changing it back.
> 
> I'm getting a squished pager AND other modules on that same shelf.
> Calendar, clock, and cpufreq.  The tclock and uptime modules work
> fine, though they are text only.  Is this known issue affecting them
> to?

Changing the number of virtual desktops also fixed up the other
modules.  Autohide did nothing.

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 BUG CALL

2012-06-28 Thread David Seikel
On Thu, 28 Jun 2012 13:10:44 +0100 Michael Blumenkrantz
 wrote:

> no idea, you could try sending me your ~/.e I guess
> 
> pager size is a known bug that will be fixed soonish, you can work
> around it by setting your shelf to autohide or using pager as a gadget
> 
> On Thu, Jun 28, 2012 at 1:04 PM, Ross Vandegrift 
> wrote:
> 
> > On Wed, 2012-06-27 at 13:07 +0100, Michael Blumenkrantz wrote:
> > > tried again, still can't reproduce
> >
> > Hmmm, any idea what I could look at?  I can reproduce on my
> > workstation and laptop, in a normal X session or Xephyr, with a
> > fresh profile or an existing one.  I pulled 72968 to check, and it
> > is still there.
> >
> > In case it matters: Xorg 1.12.1902 (Debian testing), no OpenGL, no
> > non-stock E17 modules.
> >
> >
> >
> > Different issue: pager squishes all my virtual desktops so they are
> > super-skinny, even though the whole is still as wide as it normally
> > is: http://www.enlightenment.org/ss/e-4fec46bb7882e9.74897488.jpg
> >
> > I can fix it by changing the number of virtual desktops, and then
> > changing it back.

I'm getting a squished pager AND other modules on that same shelf.
Calendar, clock, and cpufreq.  The tclock and uptime modules work fine,
though they are text only.  Is this known issue affecting them to?

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 BUG CALL

2012-06-28 Thread Simon Lees
>
> Message: 1
> Date: Wed, 27 Jun 2012 09:05:09 +0100
> From: Michael Blumenkrantz 
> Subject: Re: [E-devel] E17 BUG CALL Was (Re: enlightenment-devel
>Digest, Vol 74, Issue 135)
> To: Enlightenment developer list
>
> Message-ID:
> >
> Content-Type: text/plain; charset=ISO-8859-1
>
> On Wed, Jun 27, 2012 at 5:52 AM, Simon Lees  wrote:
>
> > >
> > >
> > > Message: 2
> > > Date: Tue, 26 Jun 2012 10:06:47 +0100
> > > From: Michael Blumenkrantz 
> > > Subject: Re: [E-devel] enlightenment-devel Digest, Vol 74, Issue 133
> > > To: Enlightenment developer list
> > >
> > > Message-ID:
> > > > w5b7f_boh4yeqh...@mail.gmail.com
> > > >
> > > Content-Type: text/plain; charset=ISO-8859-1
> > >
> > > On Tue, Jun 26, 2012 at 8:52 AM, Simon Lees  wrote:
> > >
> > > > Hi All i've attempted to send this a few times over the last few days
> > but
> > > > it hasn't got through for some reason so ill try one last time.
> > > >
> > > > Hi,
> > > > Here is the list that i can think of that i haven't got to making bug
> > > > reports partly because i was thinking of looking at them sometime
> > > however i
> > > > doubt that will be soon.
> > > > I'll Also prefix this list by saying i am impressed with how far e17
> > has
> > > > come in the 6 - 9 months i have been using it. I've enjoyed its
> > > flexibility
> > > > which is something i missed since Gnome and KDE both dropped compiz
> > > fusion.
> > > > How hard can it be to provide a 3x3 Grid of workspaces. Enlightenment
> > > does
> > > > this well and looks good at the same time so i think i will be
> sticking
> > > > with it for a while. And maybe oneday ill have time to contribute
> > > something
> > > > to it but until then thanks to all the people that do.
> > > >
> > >
> > > Glad to hear it. Just to clarify, you're using E17? From SVN?
> > >
> > > Correct i tend to rebuild every couple of weeks or so.
> >
> >
> > > >
> > > > * It is not possible to add a shelf to the monitor on my primary card
> > at
> > > > all.
> > > >
> > >
> > > How are you attempting to add the shelf?
> > >
> >
> > Main Menu Desktops -> Shelves -> Add A Shelf, I think i also tried from
> the
> > Shelf Settings dialogue. I noticed you made some changes here so i will
> > check them out tomorrow night.
> >
> >
>

Still Issues here on Rev 72988. The shelf settings now only show the
shelves on the corresponding screen however i still have issues. If i open
the Shelf settings on all 3 screens, Display 0 (Center) show's no
Configured screens (Graphics Card 0) and has no shelfs, Screen 1 on the
Left has a Shelf on the bottom that the config shows fine the same with
Screen 2 both on the second Graphics Card.

When i press Add on shelf settings 0 all 3 of the configs go blank and the
shelf appears on the bottom right of screen 1,

If i reload the shelf settings for screen 1 i now see a configured shelf
bottom and a configured shelf bottom_right, and if i reload shelf settings
on screen 2 i just see bottom right.

If i then select shelf bottom right on screen 1 and press the delete
button. The bottom shelf on screen 2 is removed and the bottom right on
screen 1 is still there.  The settings on shelf 1 and shelf 2 now both show
Shelf Bottom and shelf bottom right.

>From screen 2 although i could see both shelves in the settings i could not
remove them or press the setup or contents button. So i pressed Add on
shelf 2 and got a shelf bottom right on that screen. Which i tried to
delete and it deleted the bottom shelf on screen 1.

I figured this was as good a place as any to stop trying to break it
further, however, no matter how many times i tried to add a shelf on screen
0 i got another shelf bottom right on screen 1 I added 5 or 6.

Once i stopped playing around and removed everything and was about to put
it back how it was i added a shelf from screen 1 and it went to bottom
right on screen 0 then i added one on screen 0 and it went to bottom right
on screen 1 then i added one on screen 2 and it stayed on screen 2.

So now i have a shelf on the bottom of each screen and i am happy. I
appreciate this may also be hard to debug and i may be special and unique
in having these issues so if it doesn't get fixed i wont mind.


>
> > > >
> > > > * I have a key binding set to move windows between workspaces but if
> i
> > > have
> > >
> >
> >
> > > > a window in workspace 1 and attempt to move it through workspace 2
> into
> > > > workspace 3 and there is a full screen application in workspace 2 the
> > end
> > > > result is the full screen window ends up in workspace 3 and the
> window
> > i
> > > > was attempting to move ends up in workspace 2.
> > >
> >
> > Any thoughts on this issue? I can see why it would happen but its also
> one
> > of the more annoying issues I face now that full screen windows behave
> > normally
> >
> >
> Could not reproduce. The only case where this could occur would be if you
> have a fullscreen app which somehow grabs focus while you are execut

[E-devel] [patch][elementary] diskselector, duplicate icon for rounded item

2012-06-28 Thread Kim Shinwoo
Dear All, Hello.

The diskselector has round mode which can be set by
elm_diskselector_round_enabled_set().
In case of round mode is enabled, the icon does not display properly
because diskselector replace the icon for the additional items - not copy
and paste.
To enable round mode, diskselector adds over/under itmes(additional itmes)
by using normal mode items. So there is a icon to set two places in
diskselector.
But diskselector does not duplicate the icon.. this makes item without icon
but there should be.. I'm not sure the best way to duplicate icon.
So please review the patch and give some feedbacks. Thanks.

Sincerely
Shinwoo Kim.


elm_diskselector.diff
Description: Binary data
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 BUG CALL

2012-06-28 Thread Michael Blumenkrantz
no idea, you could try sending me your ~/.e I guess

pager size is a known bug that will be fixed soonish, you can work around
it by setting your shelf to autohide or using pager as a gadget

On Thu, Jun 28, 2012 at 1:04 PM, Ross Vandegrift  wrote:

> On Wed, 2012-06-27 at 13:07 +0100, Michael Blumenkrantz wrote:
> > tried again, still can't reproduce
>
> Hmmm, any idea what I could look at?  I can reproduce on my workstation
> and laptop, in a normal X session or Xephyr, with a fresh profile or an
> existing one.  I pulled 72968 to check, and it is still there.
>
> In case it matters: Xorg 1.12.1902 (Debian testing), no OpenGL, no
> non-stock E17 modules.
>
>
>
> Different issue: pager squishes all my virtual desktops so they are
> super-skinny, even though the whole is still as wide as it normally is:
> http://www.enlightenment.org/ss/e-4fec46bb7882e9.74897488.jpg
>
> I can fix it by changing the number of virtual desktops, and then
> changing it back.
>
> Ross
>
> >
> > On Wed, Jun 27, 2012 at 12:45 PM, Ross Vandegrift 
> wrote:
> >
> > > On Thu, 2012-06-21 at 12:46 +0100, Michael Blumenkrantz wrote:
> > > > On Thu, Jun 21, 2012 at 12:07 PM, Ross Vandegrift 
> > > wrote:
> > > > > Window autoraise doesn't work with sloppy focus:
> > > > >
> > > > > 1) Same focus settings as above, plus window autoraise.
> > > > > 2) Open two overlapping windows on a virtual desktop.
> > > > > 3) Position the pointer in the area were they overlap.
> > > > > 4) Flip to a different virtual desktop, and then back.
> > > > > 5) The windows autoraise over one another forever.
> > > > >
> > > >
> > > > also doesn't happen here
> > >
> > > I still see this on 72833, and can reproduce it with a fresh profile:
> > >
> > > 1) Create a new user, go through first-time setup wizard.
> > > 2) In Settings -> Windows -> Window Stacking, enable "Raise windows on
> > > mouse over".
> > > 3) Open two windows which overlap as described above.
> > > 4) Position the mouse in their intersection.
> > > 5) Use keyboard to flip to different virtual desktp, and then back.
> > > 6) Autoraising forever.
> > > 7) Anything with manually forces focus changes returns things to
> normal.
> > >
> > > Sorry - just realized I wasn't clear that 5 requires flipping via the
> > > keyboard.
> > >
> > > Ross
> > >
> > >
> > >
> --
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> Discussions
> > > will include endpoint security, mobile security and the latest in
> malware
> > > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > ___
> > > enlightenment-devel mailing list
> > > enlightenment-devel@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> > >
> > >
> >
> --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 BUG CALL

2012-06-28 Thread Ross Vandegrift
On Wed, 2012-06-27 at 13:07 +0100, Michael Blumenkrantz wrote:
> tried again, still can't reproduce

Hmmm, any idea what I could look at?  I can reproduce on my workstation
and laptop, in a normal X session or Xephyr, with a fresh profile or an
existing one.  I pulled 72968 to check, and it is still there.

In case it matters: Xorg 1.12.1902 (Debian testing), no OpenGL, no
non-stock E17 modules.



Different issue: pager squishes all my virtual desktops so they are
super-skinny, even though the whole is still as wide as it normally is:
http://www.enlightenment.org/ss/e-4fec46bb7882e9.74897488.jpg

I can fix it by changing the number of virtual desktops, and then
changing it back.

Ross

> 
> On Wed, Jun 27, 2012 at 12:45 PM, Ross Vandegrift  wrote:
> 
> > On Thu, 2012-06-21 at 12:46 +0100, Michael Blumenkrantz wrote:
> > > On Thu, Jun 21, 2012 at 12:07 PM, Ross Vandegrift 
> > wrote:
> > > > Window autoraise doesn't work with sloppy focus:
> > > >
> > > > 1) Same focus settings as above, plus window autoraise.
> > > > 2) Open two overlapping windows on a virtual desktop.
> > > > 3) Position the pointer in the area were they overlap.
> > > > 4) Flip to a different virtual desktop, and then back.
> > > > 5) The windows autoraise over one another forever.
> > > >
> > >
> > > also doesn't happen here
> >
> > I still see this on 72833, and can reproduce it with a fresh profile:
> >
> > 1) Create a new user, go through first-time setup wizard.
> > 2) In Settings -> Windows -> Window Stacking, enable "Raise windows on
> > mouse over".
> > 3) Open two windows which overlap as described above.
> > 4) Position the mouse in their intersection.
> > 5) Use keyboard to flip to different virtual desktp, and then back.
> > 6) Autoraising forever.
> > 7) Anything with manually forces focus changes returns things to normal.
> >
> > Sorry - just realized I wasn't clear that 5 requires flipping via the
> > keyboard.
> >
> > Ross
> >
> >
> > --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > enlightenment-devel mailing list
> > enlightenment-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> >
> >
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



signature.asc
Description: This is a digitally signed message part
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: yoz trunk/elementary/src/lib

2012-06-28 Thread The Rasterman
On Tue, 26 Jun 2012 13:42:00 -0300 Gustavo Sverzut Barbieri
 said:

> On Tue, Jun 26, 2012 at 11:29 AM, Carsten Haitzler 
> wrote:
> > On Tue, 26 Jun 2012 10:46:04 +0900 Daniel Juyung Seo 
> > said:
> >
> >> Great! So it's EFL 1.1/1.3/1.7 this time?
> >> Or just 1.7 for all of them?
> >
> > 1.7 for all. :)
> 
> Glima is about to merge some work that refactor's scroller into an
> interface. That will help to reduce the number of required functions
> and also clean up a bit all the users of scroller. But it will also
> require some changes to Evas (no API/ABI breaks, just additions) and
> Elementary.
> 
> So could it wait a bit until this gets in?

so how long will that be? that is the key question.

> The benefit at the end is that we could deprecate/remove all the
> elm_*_scroll_policy_set() and similar, having a single one that
> operates on such interface.
> 
> 
> -- 
> Gustavo Sverzut Barbieri
> http://profusion.mobi embedded systems
> --
> MSN: barbi...@gmail.com
> Skype: gsbarbieri
> Mobile: +55 (19) 9225-2202
> 
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] what's about the webkit-efl status?

2012-06-28 Thread Dennis.Yxun
hi ALL:
  I'm using gentoo linux, and compile webkit-efl from
enlightenment-niifaq overlay
net-libs/webkit-efl-0.1.98964, source code take from svn r98964 version.
 Actually it fails to compile.
 And, people from #gentoo-e tell me webkit-efl is unmaintained, thus
broken, it that true?

Dennis

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster IN trunk/ecore: . src/lib/ecore_input

2012-06-28 Thread Vincent Torri
@since !! (function AND typedef)

Vincent

On Thu, Jun 28, 2012 at 10:17 AM, Enlightenment SVN
 wrote:
> Log:
> add compose sequence decode/hanling to ecore-input. needs manual use
>  to detect though. needs to be added to edje_entry and terminology.
>
>
>
> Author:       raster
> Date:         2012-06-28 01:17:13 -0700 (Thu, 28 Jun 2012)
> New Revision: 72982
> Trac:         http://trac.enlightenment.org/e/changeset/72982
>
> Added:
>  trunk/ecore/src/lib/ecore_input/ecore_input_compose.c 
> trunk/ecore/src/lib/ecore_input/ecore_input_compose.h
> Modified:
>  trunk/ecore/ChangeLog trunk/ecore/src/lib/ecore_input/Ecore_Input.h 
> trunk/ecore/src/lib/ecore_input/Makefile.am
>
> Modified: trunk/ecore/ChangeLog
> ===
> --- trunk/ecore/ChangeLog       2012-06-28 08:11:45 UTC (rev 72981)
> +++ trunk/ecore/ChangeLog       2012-06-28 08:17:13 UTC (rev 72982)
> @@ -777,3 +777,10 @@
>
>        * Fix xim module to pass of Windows key as Mod4, not Mod5
>        * Add support for AltGr key in X
> +
> +2012-06-28  Carsten Haitzler (The Rasterman)
> +
> +        * Add compose sequence handling to ecore_input to be able to
> +        query a sequence of keysyms for a final compose string (utf8)
> +        that you free if you get it.
> +
>
> Modified: trunk/ecore/src/lib/ecore_input/Ecore_Input.h
> ===
> --- trunk/ecore/src/lib/ecore_input/Ecore_Input.h       2012-06-28 08:11:45 
> UTC (rev 72981)
> +++ trunk/ecore/src/lib/ecore_input/Ecore_Input.h       2012-06-28 08:17:13 
> UTC (rev 72982)
> @@ -92,6 +92,13 @@
>         ECORE_OUT
>      } Ecore_Event_IO;
>
> +   typedef enum _Ecore_Compose_State
> +     {
> +        ECORE_COMPOSE_NONE,
> +        ECORE_COMPOSE_MIDDLE,
> +        ECORE_COMPOSE_DONE
> +     } Ecore_Compose_State;
> +
>    struct _Ecore_Event_Key
>      {
>         const char      *keyname;
> @@ -215,6 +222,8 @@
>    EAPI unsigned int         ecore_event_modifier_mask(Ecore_Event_Modifier 
> modifier);
>    EAPI Ecore_Event_Modifier ecore_event_update_modifier(const char *key, 
> Ecore_Event_Modifiers *modifiers, int inc);
>
> +   EAPI Ecore_Compose_State  ecore_compose_get(const Eina_List *seq, char 
> **seqstr_ret);
> +
>  #ifdef __cplusplus
>  }
>  #endif
>
> Modified: trunk/ecore/src/lib/ecore_input/Makefile.am
> ===
> --- trunk/ecore/src/lib/ecore_input/Makefile.am 2012-06-28 08:11:45 UTC (rev 
> 72981)
> +++ trunk/ecore/src/lib/ecore_input/Makefile.am 2012-06-28 08:17:13 UTC (rev 
> 72982)
> @@ -12,7 +12,9 @@
>  includesdir = $(includedir)/ecore-@VMAJ@
>
>  libecore_input_la_SOURCES = \
> -ecore_input.c
> +ecore_input.c \
> +ecore_input_compose.c \
> +ecore_input_compose.h
>
>  libecore_input_la_LIBADD = \
>  $(top_builddir)/src/lib/ecore/libecore.la \
>
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel