Ruben Daniels

Results 12 comments of Ruben Daniels

I tried it in node 0.6.19 and node 0.8.17. Both show the same behavior. It also crashes with a real process, but it's harder to reproduce. It definitely happens during...

Just tried it with this example: ``` var pty = require("pty.js"); function go(){ var proc = pty.spawn("ls", [], { cwd: "/Users/rubendaniels/Development/newclient" }); proc.on("error", function(err){ console.log(err); }); proc.on("data", function(data){ console.log(data); });...

fyi, I had pty.js crashing both with v0.1.5 and 0.2.2. So I'm guessing this is not something new. But perhaps its something unique to my system? Could it be a...

Also, important to note is that it doesn't crash on the first execution of pty.spawn, but after N executions. N being some tenfold.

I just tried it with node 0.8.22 and it doesn't crash anymore.

ok, so part of the problem was fixed by compiling pty.js for the specific node versions I tried. So now it only crashes on exit of the node process, not...

I tried not doing the SIGTERM but it is still crashing. Note that most of the time I'm testing using node-webkit, although the behavior I previously reported was using plain...

I tried the line 427 change. Still same thing. I'll get some confirmation on this on a standalone node on different systems on Monday.

I haven't gotten around to this yet, but I will asap. Btw, where are you located?

I just got this confirmed by a colleague using OSX. Is there any way you can help debugging this?