On Mon, 15 Oct 2012 07:31:04 -0700 Dave Ray <ap...@jonive.com> said:

> Hi,
> Yes, it exists. But there may be something wrong with the full path e17 is
> looking for:
> 
> $ ls -al /var/folders/p9/p447lsgn76z04gn3hdvlzgs40000gn/T
> total 0
> drwx------  4 davidray  davidray  136 Oct 15 07:24 .
> drwxr-xr-x  5 davidray  davidray  170 Oct 15 07:12 ..
> drwx------  3 davidray  davidray  102 Oct 15 07:19
> enlightenment-davidray@0000000000000000 srwxr-xr-x  1 davidray  davidray    0
> Oct 15 07:13 icssuis501
> 
> $ ls
> -al /var/folders/p9/p447lsgn76z04gn3hdvlzgs40000gn/T/enlightenment-davidray
> \@0000000000000000/ total 0 drwx------  3 davidray  davidray  102 Oct 15
> 07:19 . drwx------  4 davidray  davidray  136 Oct 15 07:25 ..
> srwxrwxrwx  1 davidray  davidray    0 Oct 15 07:19 disp-:0.0-1743%F0??
> $
> 
> So it looks like the dir exists, but there is a mismatch in the full path. I
> have no idea how these filenames are created, the % and ? in the path look
> weird.

%F0?? ... almost looks like something became corrupt. the path buffer is
limtied to 1024 bytes but your path is much less than that. the code literally
is:

                  snprintf(buf3, sizeof(buf3), "%s/disp-%s-%i",
                           buf, disp, pid);
so u have buf and disp output find but pid has junk appended to it and snprintf
sure as hell doesnt append that. oooh wait...

ecore_con will APPEND "|%i" to it:

               snprintf(buf,
                        sizeof(buf),
                        "%s|%i",
                        svr->name,
                        svr->port);

does osx disallow '|' in file paths?

> -Dave
> 
> 
> On Oct 15, 2012, at 2:32 AM, Carsten Haitzler (The Rasterman) wrote:
> 
> > does /var/folders/p9/p447lsgn76z04gn3hdvlzgs40000gn/T/
> > 
> > exist as a dir? you know that if you set $XDG_RUNTIME_DIR or
> > $SD_USER_SOCKETS_DIR then this dir will be used as as the ipc dir. if not
> > set $TMPDIR is user and if that isnt set... /tmp is used. it seems you have
> > set one of the above $ENVVARS to a dir that doesnt exist?
> > 
> >>  http://pastebin.com/FgK781Mm
> 
> 
> ------------------------------------------------------------------------------
> Don't let slow site performance ruin your business. Deploy New Relic APM
> Deploy New Relic app performance management and know exactly
> what is happening inside your Ruby, Python, PHP, Java, and .NET app
> Try New Relic at no cost today and get our sweet Data Nerd shirt too!
> http://p.sf.net/sfu/newrelic-dev2dev
> _______________________________________________
> 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


------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to