# File lib/mongrel/configurator.rb, line 74
74:     def write_pid_file
75:       if RUBY_PLATFORM !~ /mswin/
76:         log "Writing PID file to #{@pid_file}"
77:         open(@pid_file,"w") {|f| f.write(Process.pid) }
78:       end
79:     end