Re: [E-devel] Debugging edc at runtime is possible?

2016-09-23 Thread The Rasterman
On Wed, 21 Sep 2016 01:19:06 +0900 Jiwon Kim said: > Hi all. > > I wonder about debugging edc script. (or maybe it's just idea :) ) > Is it possible to debug at running time of application? > Likes gdb (or with gdb), attach to app, > and set break point to 'program' syntex

Re: [E-devel] Debugging edc at runtime is possible?

2016-09-22 Thread Hermet Park
U can use printf() in the program script for debugging. ie) programs { .. script { printf("call %d\n", xxx); } } the printf logs will be printed ony when app launched with EINA_LOG_LEVEL=3 or more. --

Re: [E-devel] Debugging edc at runtime is possible?

2016-09-20 Thread Michael Blumenkrantz
On Tue, 20 Sep 2016 09:52:53 -0700 Cedric BAIL wrote: > Hello, > > On Tue, Sep 20, 2016 at 9:19 AM, Jiwon Kim wrote: > > I wonder about debugging edc script. (or maybe it's just idea :) ) > > Is it possible to debug at running time of application? > >

Re: [E-devel] Debugging edc at runtime is possible?

2016-09-20 Thread Cedric BAIL
Hello, On Tue, Sep 20, 2016 at 9:19 AM, Jiwon Kim wrote: > I wonder about debugging edc script. (or maybe it's just idea :) ) > Is it possible to debug at running time of application? > Likes gdb (or with gdb), attach to app, > and set break point to 'program' syntex (edc's

[E-devel] Debugging edc at runtime is possible?

2016-09-20 Thread Jiwon Kim
Hi all. I wonder about debugging edc script. (or maybe it's just idea :) ) Is it possible to debug at running time of application? Likes gdb (or with gdb), attach to app, and set break point to 'program' syntex (edc's program blocks). If we can check edc's (when/which) program running and