Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Fixes #1503. make libuv backend default on unix
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Aug 29, 2011
1 parent b5144b2 commit ff7f7ae
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions src/node.cc
Expand Up @@ -146,15 +146,7 @@ static uv_async_t eio_done_poll_notifier;
static uv_idle_t eio_poller;


// XXX use_uv defaults to false on POSIX platforms and to true on Windows
// platforms. This can be set with "--use-uv" command-line flag. We intend
// to remove the legacy backend once the libuv backend is passing all of the
// tests.
#ifdef __POSIX__
static bool use_uv = false;
#else
static bool use_uv = true;
#endif

// disabled by default for now
static bool use_http1 = false;
Expand Down Expand Up @@ -2341,7 +2333,7 @@ static void PrintHelp() {
" --v8-options print v8 command line options\n"
" --vars print various compiled-in variables\n"
" --max-stack-size=val set max v8 stack size (bytes)\n"
" --use-uv use the libuv backend\n"
" --use-legacy use the legacy backend (default: libuv)\n"
" --use-http1 use the legacy http library\n"
"\n"
"Enviromental variables:\n"
Expand All @@ -2364,8 +2356,8 @@ static void ParseArgs(int argc, char **argv) {
if (strstr(arg, "--debug") == arg) {
ParseDebugOpt(arg);
argv[i] = const_cast<char*>("");
} else if (!strcmp(arg, "--use-uv")) {
use_uv = true;
} else if (!strcmp(arg, "--use-legacy")) {
use_uv = false;
argv[i] = const_cast<char*>("");
} else if (!strcmp(arg, "--use-http1")) {
use_http1 = true;
Expand Down

0 comments on commit ff7f7ae

Please sign in to comment.