[Pharo-project] OSProcess: can't #chDir: '/' on Linux
Hi, OSProcess thisOSProcess chDir: '/'. always returns a /: Resource temporarily unavailable I'm using Pharo 2.0 with #bleedingEdge OSProcess. -- Damien Cassou http://damiencassou.seasidehosting.st "Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
I get something similiar on osx, however the CWD is changed nevertheless... did you try doing an `ls` afterwards? On 2012-05-03, at 12:14, Damien Cassou wrote:
Hi,
OSProcess thisOSProcess chDir: '/'.
always returns a
/: Resource temporarily unavailable
I'm using Pharo 2.0 with #bleedingEdge OSProcess.
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
On Thu, May 3, 2012 at 1:58 PM, Camillo Bruni <camillobruni@gmail.com> wrote:
I get something similiar on osx, however the CWD is changed nevertheless... did you try doing an `ls` afterwards?
you are right, at least #getCwd returns '/' after the execution. Still, there is a problem as Coral won't work after this notification for example. -- Damien Cassou http://damiencassou.seasidehosting.st "Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
On Thu, May 03, 2012 at 12:14:21PM +0200, Damien Cassou wrote:
Hi,
OSProcess thisOSProcess chDir: '/'.
always returns a
/: Resource temporarily unavailable
Thanks, this is a bug in the plugin that has apparently been there since at least 2006. It's a reversed #ifTrue:ifFalse: so the primitive answers errno on success rather than on failure. Fixed in VMConstruction-Plugins-OSProcessPlugin-dtl.35 on SqueakSource, the patch will need to go into the oscog branch of OSProcessPlugin also. Dave
I'm using Pharo 2.0 with #bleedingEdge OSProcess.
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
participants (3)
-
Camillo Bruni -
Damien Cassou -
David T. Lewis