Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-05-15 18:28:10 +0400
committerRyan <ry@tinyclouds.org>2009-05-15 18:28:10 +0400
commitbaed9d514d0c145fdf696324601f67dda89adf3c (patch)
tree1189b0a8897c6942cd52909f15d577c1f69fed56 /configure
parent81691c7dc5919cc04ff65ab354e47225604e1de1 (diff)
Inform V8 of external allocations.
This is sloppy: after each ObjectWrap allocation the user needs to call ObjectWrap::InformV8ofAllocation(). In addition each class deriving from ObjectWrap needs to implement the virtual method size() which should return the size of the derived class. If I was better at C++ I could possibly make this less ugly. For now this is how it is. Memory usage looks much better after this commit.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 226ac215e55..191e069d3f9 100755
--- a/configure
+++ b/configure
@@ -95,7 +95,7 @@ uninstall:
test: all
@for i in test/test*.js; do \\
echo "\$\$i: "; \\
- build/default/node \$\$i && echo PASS || echo FAIL; \\
+ build/debug/node \$\$i && echo PASS || echo FAIL; \\
done
clean: