From: Laurent Sansonetti Date: 2006-06-27T21:37:55+09:00 Subject: [rubycore:04804] and darwin Hi, Apparently the change introduced by [rubycore:04804] does not work on Darwin. The resulted process title is polluted with lots of unnecessary space characters (515 to be precise). Disabling this piece of code in ruby.c fixes the problem: + if (s + 1 == envspace.begin) { + s = envspace.end; + ruby_setenv("", NULL); /* duplicate environ vars */ + } I did not investigated more, but is this change supposed to work with setproctitle-less systems? Thanks, Laurent