aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-05-15 16:28:10 +0200
committerRyan <ry@tinyclouds.org>2009-05-15 16:28:10 +0200
commitbaed9d514d0c145fdf696324601f67dda89adf3c (patch)
tree1189b0a8897c6942cd52909f15d577c1f69fed56 /configure
parent81691c7dc5919cc04ff65ab354e47225604e1de1 (diff)
downloadandroid-node-v8-baed9d514d0c145fdf696324601f67dda89adf3c.tar.gz
android-node-v8-baed9d514d0c145fdf696324601f67dda89adf3c.tar.bz2
android-node-v8-baed9d514d0c145fdf696324601f67dda89adf3c.zip
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 226ac215e5..191e069d3f 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: