Aim for native Win32 compatibility
Created by: Zapotek
2 things prevent this right now:
-
fork()-- inRPC::Server::Dispatcher,RPC::Server::Instance, process helpers andBrowser.- The
fork()calls can be replaced byspawn()[1] by passing the necessary arguments as environmental variables to a script.
- The
-
sys/proctable-- inRPC::Server::DispatcherandUI::Outputto show resource usage when debugging.- Thankfully,
sys/proctablesupports Windows so I just need to encapsulate it in anArachniclass which presents the same interface for all platforms.
- Thankfully,
[1] http://www.ruby-doc.org/core-1.9.3/Process.html#method-c-spawn