diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-10-29 23:34:10 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-10-29 23:36:41 +0100 |
commit | ad0a4cefb8b4bf469bb1caa6e671a1009e40a81f (patch) | |
tree | 62bc5a8fe4319a9eddc872305a87ad68059d930c /benchmark/http_simple.js | |
parent | 6959a1d6d16164f40bbeb5f65faaf17028932054 (diff) | |
download | node-new-ad0a4cefb8b4bf469bb1caa6e671a1009e40a81f.tar.gz |
Namespace EVERYTHING under process; introduce GLOBAL
http://groups.google.com/group/nodejs/browse_thread/thread/1034fd2ad2cd93e8
Diffstat (limited to 'benchmark/http_simple.js')
-rw-r--r-- | benchmark/http_simple.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js index 43435ad5bc..ab4955bafa 100644 --- a/benchmark/http_simple.js +++ b/benchmark/http_simple.js @@ -1,7 +1,7 @@ -libDir = node.path.join(node.path.dirname(__filename), "../lib"); +libDir = process.path.join(process.path.dirname(__filename), "../lib"); require.paths.unshift(libDir); -node.mixin(require("/utils.js")); +process.mixin(require("/utils.js")); http = require("/http.js"); fixed = "" |