From 409020a67d3388e4eda90af546e0fbe25b0adec3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 4 Mar 2010 09:58:31 -0800 Subject: [PATCH] Use kqueue on macintosh --- benchmark/http_simple.rb | 8 +++++--- src/node.cc | 4 +++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/benchmark/http_simple.rb b/benchmark/http_simple.rb index ee33f57f1db..d1176e5abee 100644 --- a/benchmark/http_simple.rb +++ b/benchmark/http_simple.rb @@ -86,10 +86,12 @@ end if $0 == __FILE__ #require DIR + '/../lib/ebb' require 'rubygems' - require 'rack' - require 'thin' - require 'ebb' +# require 'rack' # Rack::Handler::Mongrel.run(SimpleApp.new, :Port => 8000) + + require 'thin' Thin::Server.start("0.0.0.0", 8000, SimpleApp.new) + +# require 'ebb' # Ebb::start_server(SimpleApp.new, :port => 8000) end diff --git a/src/node.cc b/src/node.cc index 11c6a7de8e0..205c8aeab52 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1240,10 +1240,12 @@ int main(int argc, char *argv[]) { evcom_ignore_sigpipe(); // Initialize the default ev loop. -#ifdef __sun +#if defined(__sun) // TODO(Ryan) I'm experiencing abnormally high load using Solaris's // EVBACKEND_PORT. Temporarally forcing select() until I debug. ev_default_loop(EVBACKEND_SELECT); +#elif defined(__APPLE__) + ev_default_loop(EVBACKEND_KQUEUE); #else ev_default_loop(EVFLAG_AUTO); #endif