[windows] Process.kill is NOOP in JRuby on Windows
--------------------------------------------------

                 Key: JRUBY-4317
                 URL: http://jira.codehaus.org/browse/JRUBY-4317
             Project: JRuby
          Issue Type: Bug
          Components: Core Classes/Modules, Windows
    Affects Versions: JRuby 1.4
            Reporter: Vladimir Sizikov


Currently, in RubyProcess, we have the following code:

{code}
  // Windows does not support these functions, so we won't even try
  // This also matches Ruby behavior for JRUBY-2353.
  if (Platform.IS_WINDOWS) {
    return runtime.getNil();
  }
{code}

Which is wrong, silently ignoring the call. We either should raise 
NotImplementedError, or actually implement kill() on Windows, via jnr.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to