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