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:
authorisaacs <i@izs.me>2012-12-17 20:45:21 +0400
committerisaacs <i@izs.me>2012-12-17 22:47:17 +0400
commit6c5356bfe26abcac24276681805744ea2d2d3af3 (patch)
treea9da30f19aedb99acfcc31fcbd0bac56e9f8d4e1 /src/node_buffer.h
parent1c265c54a20a6f5c6d50ce671dc5df6901d11221 (diff)
Revert "buffer: allocate memory with mmap()"
Also Revert "buffer: use MAP_ANON, fix OS X build" This reverts commit ddb15603e74e9aa865f3e1099dc2cc5886f9c46e. This reverts commit 2433ec8276838e90136669d5b1215ba597f15fdd.
Diffstat (limited to 'src/node_buffer.h')
-rw-r--r--src/node_buffer.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/node_buffer.h b/src/node_buffer.h
index a41fffa606a..137a6cfb402 100644
--- a/src/node_buffer.h
+++ b/src/node_buffer.h
@@ -68,9 +68,6 @@ class NODE_EXTERN Buffer: public ObjectWrap {
// mirrors deps/v8/src/objects.h
static const unsigned int kMaxLength = 0x3fffffff;
- // exported in lib/buffer.js as Buffer.poolSize
- static const unsigned int kPoolSize = 32768;
-
static v8::Persistent<v8::FunctionTemplate> constructor_template;
static bool HasInstance(v8::Handle<v8::Value> val);