From: Ryan Dahl Date: Mon, 29 Aug 2011 21:01:05 +0000 (-0700) Subject: Fixes #1503. make libuv backend default on unix X-Git-Tag: v0.5.6~86 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff7f7ae386a1097de7ebdfad3439cd5cf7456b4f;p=platform%2Fupstream%2Fnodejs.git Fixes #1503. make libuv backend default on unix --- diff --git a/src/node.cc b/src/node.cc index 84909c9..83094fa 100644 --- a/src/node.cc +++ b/src/node.cc @@ -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; @@ -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" @@ -2364,8 +2356,8 @@ static void ParseArgs(int argc, char **argv) { if (strstr(arg, "--debug") == arg) { ParseDebugOpt(arg); argv[i] = const_cast(""); - } else if (!strcmp(arg, "--use-uv")) { - use_uv = true; + } else if (!strcmp(arg, "--use-legacy")) { + use_uv = false; argv[i] = const_cast(""); } else if (!strcmp(arg, "--use-http1")) { use_http1 = true;