Re: [E-devel] @CEDRIC

2013-12-20 Thread Boris Faure
On 13-12-20 14:35, Cedric BAIL wrote:
 On Fri, Dec 20, 2013 at 2:05 PM, Michael Blumenkrantz
 michael.blumenkra...@gmail.com wrote:
  okay, it's been a couple years now where I've asked nicely, I've shamed you 
  in IRC, and I've even talked to you about it in person, but it seems 
  there's no way to resolve this.
 
 And as I have always answered, I have no idea what you are talking about.
 
  FIX YOUR EDITOR'S INDENT SETTINGS
 
 I follow the rules defined in our coding style here :
 https://phab.enlightenment.org/w/ecoding/emacs/ which is I things the
 definition of our coding style. If it is not our official coding
 style, then I have been misleading.

Maybe add the following line just to be sure (or maybe your e-coding
style hooks are not correctly called):
(setq-default indent-tabs-mode nil)

In order to view the infamous tabs, I suggest you read:
http://www.emacswiki.org/emacs/WhiteSpace

(or maybe you should just use vim…)
-- 
Boris Faure
Pointer Arithmetician


pgpzeZWQSzUdj.pgp
Description: PGP signature
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] @CEDRIC

2013-12-20 Thread Guillaume Friloux
On 20/12/2013 08:10, Carsten Haitzler (The Rasterman) wrote:
 On Fri, 20 Dec 2013 07:46:52 +0100 Guillaume Friloux
 guillaume.fril...@gmail.com said:

 On 20/12/2013 06:43, Michael Blumenkrantz wrote:
 of course you don't, because your editor shows them the same way it shows
 spaces. I have no idea how to configure emacs (if that's what you're using)
 for efl style, but whatever settings you have are not right.


 I have used emacs and jed in the past, i have never been able to fix
 this behavior.
 in ~/.jedrc:

 USE_TABS = 0;

 :)

 if you want to format right just these in ~/.jedrc:

 TAB_DEFAULT= 8;
 USE_TABS   = 0;
 C_INDENT   = 3;
 C_BRACE= 2;
 C_BRA_NEWLINE  = 0;
 C_Colon_Offset = 1;
 C_CONTINUED_OFFSET = 0;

 then u'll hve something that works very much like emacs... but formats right. 
 :)


This is too late, nano is just awesome =)

-- 
  Guillaume Friloux
  C Developer  Master of the arcanes
  www.aspfrance.com
  Twitter : @ASP_France
  LinkedIn : aspfrance

,'*   _   ___ ___
   ' /   ..  /_\ / __| _ \
   | '  '  |/ _ \\__ \  _/
   | `.__) |   /_/_\_\___/_|
   \   `*  | __| _ __ _ _ _  __ ___
`..'   | _| '_/ _` | ' \/ _/ -_)
   |_||_| \__,_|_||_\__\___|


--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] @CEDRIC

2013-12-20 Thread Gustavo Sverzut Barbieri
On Fri, Dec 20, 2013 at 3:35 AM, Cedric BAIL cedric.b...@free.fr wrote:
 On Fri, Dec 20, 2013 at 2:05 PM, Michael Blumenkrantz
 michael.blumenkra...@gmail.com wrote:
 okay, it's been a couple years now where I've asked nicely, I've shamed you 
 in IRC, and I've even talked to you about it in person, but it seems there's 
 no way to resolve this.

 And as I have always answered, I have no idea what you are talking about.

 FIX YOUR EDITOR'S INDENT SETTINGS

 I follow the rules defined in our coding style here :
 https://phab.enlightenment.org/w/ecoding/emacs/ which is I things the
 definition of our coding style. If it is not our official coding
 style, then I have been misleading.

 seriously. I go back to code that I USED to be able to read when I wrote it, 
 and now it's impossible because YOUR EDITOR USES TABS AND NOBODY ELSE DOES.

 I don't see any, really.

that's one common problem. To see the tabs and other whitespaces:


(defun whitespace-toggle-verbose ()
  Toggle verbosity of whitespace-mode
  (interactive)
  (whitespace-toggle-options '(spaces newlines space-mark newline-mark)))

that will mark all kinds of whitespace as people often use in VIM, you
can toggle it with this function.

For the record my c-mode is identical to that one in wiki, but I have
it to be applied automatically... maybe you fail to apply it? I use:


(defun e-c-mode-hooks ()
  (let ((path (buffer-file-name)))
(cond
 ((string-match /git/e path) (c-set-style e)
   (whitespace-toggle-verbose))
 )
)
  )
(add-hook 'c-mode-common-hook 'e-c-mode-hooks)

That will apply it to all projects that have /git/e in their path.

-- 
Gustavo Sverzut Barbieri
--
Mobile: +55 (19) 9225-2202
Contact: http://www.gustavobarbieri.com.br/contact

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] @CEDRIC

2013-12-19 Thread Cedric BAIL
On Fri, Dec 20, 2013 at 2:05 PM, Michael Blumenkrantz
michael.blumenkra...@gmail.com wrote:
 okay, it's been a couple years now where I've asked nicely, I've shamed you 
 in IRC, and I've even talked to you about it in person, but it seems there's 
 no way to resolve this.

And as I have always answered, I have no idea what you are talking about.

 FIX YOUR EDITOR'S INDENT SETTINGS

I follow the rules defined in our coding style here :
https://phab.enlightenment.org/w/ecoding/emacs/ which is I things the
definition of our coding style. If it is not our official coding
style, then I have been misleading.

 seriously. I go back to code that I USED to be able to read when I wrote it, 
 and now it's impossible because YOUR EDITOR USES TABS AND NOBODY ELSE DOES.

I don't see any, really.
-- 
Cedric BAIL

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] @CEDRIC

2013-12-19 Thread Michael Blumenkrantz
On Fri, 20 Dec 2013 14:35:06 +0900
Cedric BAIL cedric.b...@free.fr wrote:

 On Fri, Dec 20, 2013 at 2:05 PM, Michael Blumenkrantz
 michael.blumenkra...@gmail.com wrote:
  okay, it's been a couple years now where I've asked nicely, I've shamed you 
  in IRC, and I've even talked to you about it in person, but it seems 
  there's no way to resolve this.
 
 And as I have always answered, I have no idea what you are talking about.
 
  FIX YOUR EDITOR'S INDENT SETTINGS
 
 I follow the rules defined in our coding style here :
 https://phab.enlightenment.org/w/ecoding/emacs/ which is I things the
 definition of our coding style. If it is not our official coding
 style, then I have been misleading.

it's not. we don't have tabs and we definitely don't have 8 space tabs.

 
  seriously. I go back to code that I USED to be able to read when I wrote 
  it, and now it's impossible because YOUR EDITOR USES TABS AND NOBODY ELSE 
  DOES.
 
 I don't see any, really.

of course you don't, because your editor shows them the same way it shows 
spaces. I have no idea how to configure emacs (if that's what you're using) for 
efl style, but whatever settings you have are not right.


as proof, run `grep -P '\t' $files` in some efl directory that you've worked 
on, and I can guarantee that ONLY the lines you've worked on will show up.

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] @CEDRIC

2013-12-19 Thread Daniel Juyung Seo
On Fri, Dec 20, 2013 at 2:43 PM, Michael Blumenkrantz 
michael.blumenkra...@gmail.com wrote:

 On Fri, 20 Dec 2013 14:35:06 +0900
 Cedric BAIL cedric.b...@free.fr wrote:

  On Fri, Dec 20, 2013 at 2:05 PM, Michael Blumenkrantz
  michael.blumenkra...@gmail.com wrote:
   okay, it's been a couple years now where I've asked nicely, I've
 shamed you in IRC, and I've even talked to you about it in person, but it
 seems there's no way to resolve this.
 
  And as I have always answered, I have no idea what you are talking about.
 
   FIX YOUR EDITOR'S INDENT SETTINGS
 
  I follow the rules defined in our coding style here :
  https://phab.enlightenment.org/w/ecoding/emacs/ which is I things the
  definition of our coding style. If it is not our official coding
  style, then I have been misleading.

 it's not. we don't have tabs and we definitely don't have 8 space tabs.

 
   seriously. I go back to code that I USED to be able to read when I
 wrote it, and now it's impossible because YOUR EDITOR USES TABS AND NOBODY
 ELSE DOES.
 
  I don't see any, really.

 of course you don't, because your editor shows them the same way it shows
 spaces. I have no idea how to configure emacs (if that's what you're using)
 for efl style, but whatever settings you have are not right.


 as proof, run `grep -P '\t' $files` in some efl directory that you've
 worked on, and I can guarantee that ONLY the lines you've worked on will
 show up.


I also found tabs from Cedric's commit.
Especially, this line starts with tab.
https://git.enlightenment.org/devs/cedric/amnesia.git/tree/src/bin/amnesia_main.c#n96

Thanks.

Daniel Juyung Seo (SeoZ)



 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
 Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] @CEDRIC

2013-12-19 Thread Guillaume Friloux
On 20/12/2013 06:43, Michael Blumenkrantz wrote:

 of course you don't, because your editor shows them the same way it shows 
 spaces. I have no idea how to configure emacs (if that's what you're using) 
 for efl style, but whatever settings you have are not right.


I have used emacs and jed in the past, i have never been able to fix 
this behavior.
Thats why i use nano since some years.
I think it starts putting tab character (at begin of line) after the 3rd 
tabulation or something like that.

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] @CEDRIC

2013-12-19 Thread The Rasterman
On Fri, 20 Dec 2013 07:46:52 +0100 Guillaume Friloux
guillaume.fril...@gmail.com said:

 On 20/12/2013 06:43, Michael Blumenkrantz wrote:
 
  of course you don't, because your editor shows them the same way it shows
  spaces. I have no idea how to configure emacs (if that's what you're using)
  for efl style, but whatever settings you have are not right.
 
 
 I have used emacs and jed in the past, i have never been able to fix 
 this behavior.

in ~/.jedrc:

USE_TABS = 0;

:)

if you want to format right just these in ~/.jedrc:

TAB_DEFAULT= 8;
USE_TABS   = 0;
C_INDENT   = 3;
C_BRACE= 2;
C_BRA_NEWLINE  = 0;
C_Colon_Offset = 1;
C_CONTINUED_OFFSET = 0;

then u'll hve something that works very much like emacs... but formats right. :)

 Thats why i use nano since some years.
 I think it starts putting tab character (at begin of line) after the 3rd 
 tabulation or something like that.
 
 --
 Rapidly troubleshoot problems before they affect your business. Most IT 
 organizations don't have a clear picture of how application performance 
 affects their revenue. With AppDynamics, you get 100% visibility into your 
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 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


--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] cedric! you bad man!

2013-01-24 Thread Daniel Juyung Seo
On Thu, Jan 24, 2013 at 9:08 PM, Carsten Haitzler ras...@rasterman.com wrote:
 ==24505== Invalid read of size 4
 ==24505==at 0x43098C5: eina_cow_write (eina_cow.c:376)
 ==24505==by 0x441C203: _map_enable_set (evas_map.c:451)
 ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x4573015: _edje_part_recalc (edje_calc.c:3445)
 ==24505==by 0x456992E: _edje_recalc_do (edje_calc.c:656)
 ==24505==by 0x45E789D: _part_swallow (edje_util.c:3350)
 ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x45E7812: edje_object_part_swallow (edje_util.c:3325)
 ==24505==by 0x8054B12: main_term_new (main.c:1248)
 ==24505==by 0x8056D9E: elm_main (main.c:1982)
 ==24505==by 0x8057041: main (main.c:2036)
 ==24505==  Address 0x949c7c0 is 0 bytes inside a block of size 56 
 client-defined
 ==24505==at 0x430E30C: _eina_chained_mempool_alloc_in
 (eina_chained_mempool.c:206) ==24505==by 0x430E4D1:
 eina_chained_mempool_malloc (eina_chained_mempool.c:303) ==24505==by
 0x4308DDA: eina_mempool_malloc (eina_inline_mempool.x:103) ==24505==by
 0x43099ED: eina_cow_write (eina_cow.c:397) ==24505==by 0x441C95D: _map_set
 (evas_map.c:617) ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x4573015: _edje_part_recalc (edje_calc.c:3445)
 ==24505==by 0x456992E: _edje_recalc_do (edje_calc.c:656)
 ==24505==by 0x45E789D: _part_swallow (edje_util.c:3350)
 ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x45E7812: edje_object_part_swallow (edje_util.c:3325)
 ==24505==by 0x8054B12: main_term_new (main.c:1248)
 ==24505==by 0x8056D9E: elm_main (main.c:1982)
 ==24505==by 0x8057041: main (main.c:2036)


Hello

 *SPANK*

+1.

Daniel Juyung Seo (SeoZ)


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


 --
 Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
 MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
 with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
 MVPs and experts. ON SALE this month only -- learn more at:
 http://p.sf.net/sfu/learnnow-d2d
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] cedric! you bad man!

2013-01-24 Thread Cedric BAIL
Again! Are you sure you have an up-to-date efl tree? It really is the error
I chased this morning.

Cedric Bail
On Jan 24, 2013 9:08 PM, Carsten Haitzler ras...@rasterman.com wrote:

 ==24505== Invalid read of size 4
 ==24505==at 0x43098C5: eina_cow_write (eina_cow.c:376)
 ==24505==by 0x441C203: _map_enable_set (evas_map.c:451)
 ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x4573015: _edje_part_recalc (edje_calc.c:3445)
 ==24505==by 0x456992E: _edje_recalc_do (edje_calc.c:656)
 ==24505==by 0x45E789D: _part_swallow (edje_util.c:3350)
 ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x45E7812: edje_object_part_swallow (edje_util.c:3325)
 ==24505==by 0x8054B12: main_term_new (main.c:1248)
 ==24505==by 0x8056D9E: elm_main (main.c:1982)
 ==24505==by 0x8057041: main (main.c:2036)
 ==24505==  Address 0x949c7c0 is 0 bytes inside a block of size 56
client-defined
 ==24505==at 0x430E30C: _eina_chained_mempool_alloc_in
 (eina_chained_mempool.c:206) ==24505==by 0x430E4D1:
 eina_chained_mempool_malloc (eina_chained_mempool.c:303) ==24505==by
 0x4308DDA: eina_mempool_malloc (eina_inline_mempool.x:103) ==24505==by
 0x43099ED: eina_cow_write (eina_cow.c:397) ==24505==by 0x441C95D:
_map_set
 (evas_map.c:617) ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x4573015: _edje_part_recalc (edje_calc.c:3445)
 ==24505==by 0x456992E: _edje_recalc_do (edje_calc.c:656)
 ==24505==by 0x45E789D: _part_swallow (edje_util.c:3350)
 ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
 ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
 ==24505==by 0x4872025: eo_do_internal (eo.c:434)
 ==24505==by 0x45E7812: edje_object_part_swallow (edje_util.c:3325)
 ==24505==by 0x8054B12: main_term_new (main.c:1248)
 ==24505==by 0x8056D9E: elm_main (main.c:1982)
 ==24505==by 0x8057041: main (main.c:2036)

 *SPANK*

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



--
 Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
 MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
 with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
 MVPs and experts. ON SALE this month only -- learn more at:
 http://p.sf.net/sfu/learnnow-d2d
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] cedric! you bad man!

2013-01-24 Thread The Rasterman
On Thu, 24 Jan 2013 22:30:03 +0900 Cedric BAIL moa.blueb...@gmail.com said:

 Again! Are you sure you have an up-to-date efl tree? It really is the error
 I chased this morning.

up to date efl updated and rebuilt just prior to this valgrind fun.

 Cedric Bail
 On Jan 24, 2013 9:08 PM, Carsten Haitzler ras...@rasterman.com wrote:
 
  ==24505== Invalid read of size 4
  ==24505==at 0x43098C5: eina_cow_write (eina_cow.c:376)
  ==24505==by 0x441C203: _map_enable_set (evas_map.c:451)
  ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
  ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
  ==24505==by 0x4872025: eo_do_internal (eo.c:434)
  ==24505==by 0x4573015: _edje_part_recalc (edje_calc.c:3445)
  ==24505==by 0x456992E: _edje_recalc_do (edje_calc.c:656)
  ==24505==by 0x45E789D: _part_swallow (edje_util.c:3350)
  ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
  ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
  ==24505==by 0x4872025: eo_do_internal (eo.c:434)
  ==24505==by 0x45E7812: edje_object_part_swallow (edje_util.c:3325)
  ==24505==by 0x8054B12: main_term_new (main.c:1248)
  ==24505==by 0x8056D9E: elm_main (main.c:1982)
  ==24505==by 0x8057041: main (main.c:2036)
  ==24505==  Address 0x949c7c0 is 0 bytes inside a block of size 56
 client-defined
  ==24505==at 0x430E30C: _eina_chained_mempool_alloc_in
  (eina_chained_mempool.c:206) ==24505==by 0x430E4D1:
  eina_chained_mempool_malloc (eina_chained_mempool.c:303) ==24505==by
  0x4308DDA: eina_mempool_malloc (eina_inline_mempool.x:103) ==24505==by
  0x43099ED: eina_cow_write (eina_cow.c:397) ==24505==by 0x441C95D:
 _map_set
  (evas_map.c:617) ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
  ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
  ==24505==by 0x4872025: eo_do_internal (eo.c:434)
  ==24505==by 0x4573015: _edje_part_recalc (edje_calc.c:3445)
  ==24505==by 0x456992E: _edje_recalc_do (edje_calc.c:656)
  ==24505==by 0x45E789D: _part_swallow (edje_util.c:3350)
  ==24505==by 0x4871CF3: _eo_op_internal (eo.c:363)
  ==24505==by 0x4871E46: _eo_dov_internal (eo.c:403)
  ==24505==by 0x4872025: eo_do_internal (eo.c:434)
  ==24505==by 0x45E7812: edje_object_part_swallow (edje_util.c:3325)
  ==24505==by 0x8054B12: main_term_new (main.c:1248)
  ==24505==by 0x8056D9E: elm_main (main.c:1982)
  ==24505==by 0x8057041: main (main.c:2036)
 
  *SPANK*
 
  --
  - Codito, ergo sum - I code, therefore I am --
  The Rasterman (Carsten Haitzler)ras...@rasterman.com
 
 
 
 --
  Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
  MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
  with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
  MVPs and experts. ON SALE this month only -- learn more at:
  http://p.sf.net/sfu/learnnow-d2d
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 --
 Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
 MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
 with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
 MVPs and experts. ON SALE this month only -- learn more at:
 http://p.sf.net/sfu/learnnow-d2d
 ___
 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


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] cedric! you bad man!

2013-01-24 Thread Cedric BAIL
On Fri, Jan 25, 2013 at 12:53 AM, Carsten Haitzler ras...@rasterman.com wrote:
 On Thu, 24 Jan 2013 22:30:03 +0900 Cedric BAIL moa.blueb...@gmail.com said:

 Again! Are you sure you have an up-to-date efl tree? It really is the error
 I chased this morning.

 up to date efl updated and rebuilt just prior to this valgrind fun.

Meeeh ! That's supposed to be fixed :( I am looking at it.
--
Cedric BAIL

--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] cedric! you bad man!

2013-01-24 Thread The Rasterman
On Fri, 25 Jan 2013 10:23:00 +0900 Cedric BAIL moa.blueb...@gmail.com said:

 On Fri, Jan 25, 2013 at 12:53 AM, Carsten Haitzler ras...@rasterman.com
 wrote:
  On Thu, 24 Jan 2013 22:30:03 +0900 Cedric BAIL moa.blueb...@gmail.com
  said:
 
  Again! Are you sure you have an up-to-date efl tree? It really is the error
  I chased this morning.
 
  up to date efl updated and rebuilt just prior to this valgrind fun.
 
 Meeeh ! That's supposed to be fixed :( I am looking at it.

it gave me an opportunity to spank you... i wouldn't miss out on that.
:P

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


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Cedric is lazy to.

2012-05-23 Thread Cedric BAIL
On Tue, May 22, 2012 at 5:06 PM, David Seikel onef...@gmail.com wrote:
 On Tue, 22 May 2012 10:26:03 +1000 David Seikel onef...@gmail.com
 wrote:
 Just a reminder to Cedric to fix up what he broke in edje_cc.  It
 falls asleep quite often, never stopping.  He said last night in IRC
 that disabling glib integration will fix that, but it made no
 difference.

 Trying to compile latest SVN I have to killall -TERM edje_cc all the
 damn time.  Seems to be about half of the time it's needed.

 That was painful.  Had to kill edje_cc every few minutes, but I was busy
 doing other stuff.  So the entire SVN compile took all day.  I should
 have just put sleep 300; killall -KILL edje_cc in a loop.

Hey, I haven't been lazy at all. I have successfully teach raster how
to efficiently bork svn ! That was quite a work :-)
-- 
Cedric BAIL

--
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] Cedric is lazy to.

2012-05-23 Thread David Seikel
On Wed, 23 May 2012 15:19:15 +0200 Cedric BAIL cedric.b...@free.fr
wrote:

 On Tue, May 22, 2012 at 5:06 PM, David Seikel onef...@gmail.com
 wrote:
  On Tue, 22 May 2012 10:26:03 +1000 David Seikel onef...@gmail.com
  wrote:
  Just a reminder to Cedric to fix up what he broke in edje_cc.  It
  falls asleep quite often, never stopping.  He said last night in
  IRC that disabling glib integration will fix that, but it made no
  difference.
 
  Trying to compile latest SVN I have to killall -TERM edje_cc all
  the damn time.  Seems to be about half of the time it's needed.
 
  That was painful.  Had to kill edje_cc every few minutes, but I was
  busy doing other stuff.  So the entire SVN compile took all day.  I
  should have just put sleep 300; killall -KILL edje_cc in a loop.
 
 Hey, I haven't been lazy at all. I have successfully teach raster how
 to efficiently bork svn ! That was quite a work :-)

lol

-- 
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] Cedric is lazy to.

2012-05-23 Thread Iván Briano
2012/5/23 David Seikel onef...@gmail.com:
 On Wed, 23 May 2012 15:19:15 +0200 Cedric BAIL cedric.b...@free.fr
 wrote:

 On Tue, May 22, 2012 at 5:06 PM, David Seikel onef...@gmail.com
 wrote:
  On Tue, 22 May 2012 10:26:03 +1000 David Seikel onef...@gmail.com
  wrote:
  Just a reminder to Cedric to fix up what he broke in edje_cc.  It
  falls asleep quite often, never stopping.  He said last night in
  IRC that disabling glib integration will fix that, but it made no
  difference.
 
  Trying to compile latest SVN I have to killall -TERM edje_cc all
  the damn time.  Seems to be about half of the time it's needed.
 
  That was painful.  Had to kill edje_cc every few minutes, but I was
  busy doing other stuff.  So the entire SVN compile took all day.  I
  should have just put sleep 300; killall -KILL edje_cc in a loop.

 Hey, I haven't been lazy at all. I have successfully teach raster how
 to efficiently bork svn ! That was quite a work :-)

 lol


Maybe this helps?


   \_ /opt/e17/bin/edje_cc -id ../../data/themes -f
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
|   \_ [embryo_cc] defunct
\_ /opt/e17/bin/edje_cc -id ../../data/themes -f
\_ [embryo_cc] defunct
\_ [embryo_cc] defunct
\_ [embryo_cc] defunct
\_ [embryo_cc] defunct
\_ [embryo_cc] defunct

 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
 

Re: [E-devel] Cedric is lazy to.

2012-05-23 Thread Daniel Juyung Seo
Yes in terms of breaking svn, you are not lazy :)

Daniel Juyung Seo (SeoZ)

On Wed, May 23, 2012 at 10:19 PM, Cedric BAIL cedric.b...@free.fr wrote:
 On Tue, May 22, 2012 at 5:06 PM, David Seikel onef...@gmail.com wrote:
 On Tue, 22 May 2012 10:26:03 +1000 David Seikel onef...@gmail.com
 wrote:
 Just a reminder to Cedric to fix up what he broke in edje_cc.  It
 falls asleep quite often, never stopping.  He said last night in IRC
 that disabling glib integration will fix that, but it made no
 difference.

 Trying to compile latest SVN I have to killall -TERM edje_cc all the
 damn time.  Seems to be about half of the time it's needed.

 That was painful.  Had to kill edje_cc every few minutes, but I was busy
 doing other stuff.  So the entire SVN compile took all day.  I should
 have just put sleep 300; killall -KILL edje_cc in a loop.

 Hey, I haven't been lazy at all. I have successfully teach raster how
 to efficiently bork svn ! That was quite a work :-)
 --
 Cedric BAIL

 --
 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] Cedric is lazy to.

2012-05-23 Thread David Seikel
Looks like raster fixed it and I can compile again.  Still compiling
stuff and so far so good, I got further than I did before.

-- 
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