diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-11-30 11:04:31 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-11-30 11:04:31 -0800 |
commit | 81afb54c0aad56d65071ec1fab898f197fca21a2 (patch) | |
tree | 6f030b972a4204ff0a558a79ff99a9b0651dbcbb /src | |
parent | db98d6e4e0c9e7adc4f2a4c335bf3b2df30b4b89 (diff) | |
download | node-new-81afb54c0aad56d65071ec1fab898f197fca21a2.tar.gz |
Fix comment
Diffstat (limited to 'src')
-rw-r--r-- | src/node.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node.cc b/src/node.cc index 135ee9de9b..9736df5df4 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1879,7 +1879,7 @@ int Start(int argc, char *argv[]) { // Initialize the default ev loop. #if defined(__sun) // TODO(Ryan) I'm experiencing abnormally high load using Solaris's - // EVBACKEND_PORT. Temporarally forcing select() until I debug. + // EVBACKEND_PORT. Temporarally forcing poll(). ev_default_loop(EVBACKEND_POLL); #elif defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 ev_default_loop(EVBACKEND_KQUEUE); |