- Jan 21, 2012
-
-
Roman Shtylman authored
Removed during the early stages of node 0.5 refactoring to libuv.
-
Ben Noordhuis authored
-
koichik authored
Fixes #2577.
-
Nicolas LaCasse authored
Fix zlib crashes on error due to improper use of removeListener in the error handler
-
isaacs authored
This was a very significant improvement that should have been called out explicitly. I added 'review all libuv changes' to my build checklist. It won't happen again. Sorry, @igorzi.
-
- Jan 20, 2012
-
-
isaacs authored
-
isaacs authored
* Update V8 to 3.6.6.19 * Numeric key hash collision fix for V8 (Erik Corry, Fedor Indutny) * Add missing TTY key translations for F1-F5 on Windows (Brandon Benvie) * path.extname bugfix with . and .. paths (Bert Belder) * cluster: don't always kill the master on uncaughtException (Ben * Noordhuis) * Update npm to 1.1.0-2 (isaacs) * typed arrays: set class name (Ben Noordhuis) * zlib binding cleanup (isaacs, Bert Belder) * dgram: use slab memory allocator (Michael Bernstein) * fix segfault #2473
-
isaacs authored
-
- Jan 19, 2012
-
-
Fedor Indutny authored
Update with fixes from: http://codereview.chromium.org/9190001/
-
Artur Adib authored
-
- Jan 18, 2012
-
-
Brandon Benvie authored
-
Bert Belder authored
Closes GH-2526
-
Ben Noordhuis authored
uncaughtException handlers installed by the user override the default one that the cluster module installs, the one that kills off the master process. Fixes #2556.
-
Dan Williams authored
-
Ryan Dahl authored
-
Bert Belder authored
-
Andreas Madsen authored
-
Andreas Madsen authored
In case of a write failure when using fork() an error would be thrown. The thrown exception was missing the `errno` property.
-
Fedor Indutny authored
- If V8 snapshots are enabled then the hash is only randomized at build time. --- backport @10366, @10367 and @10402 to 3.6 Add seed to hash of numeric keyed properties. Minor cleanups of numeric seeded hashing patch. Split NumberDictionary into a randomly seeded and an unseeded version. We don't want to randomize the stub cache. Review URL: http://codereview.chromium.org/9190001/
-
koichik authored
Fixes #2549.
-
- Jan 17, 2012
-
-
Ben Noordhuis authored
Make obj.toString and Object.prototype.toString work correctly for typed arrays.
-
isaacs authored
-
- Jan 14, 2012
-
-
Ben Noordhuis authored
Passing a non-buffer or non-string argument to Socket.prototype.write triggered an assert: Assertion failed: (Buffer::HasInstance(args[0])), function Write, file ../src/stream_wrap.cc, line 289. Fixes #2532.
-
- Jan 13, 2012
-
-
Guillermo Rauch authored
* Added Docs button and `button` class. * Refactored download button style into `.button` * Applied color overrides for download/docs buttons. * Pointed docs link to latest available docs.
-
mrb authored
Change udp memory allocation scheme from uv_buf_init to slab allocation. Takes slab allocation scheme from stream_wrap.
-
- Jan 12, 2012
-
-
Ben Noordhuis authored
-
Igor Zinkovsky authored
fixes #2521
-
Fedor Indutny authored
-
- Jan 11, 2012
-
-
Maciej Małecki authored
`punycode` is a third party code which generates a lot of lint errors. Upstream was contacted in order to fix it in bestiejs/punycode.js#6, but request was denied. Therefore, it's reasonable to exclude this file from linting process. Ref #2456.
-
Ryan Dahl authored
smaller.
-
Ben Noordhuis authored
-
Bert Belder authored
-
Ryan Dahl authored
Tested in production. See also http://code.google.com/p/v8/issues/detail?id=1889
-
- Jan 10, 2012
-
-
Ben Noordhuis authored
The process handle is uninitialized when uv_spawn() fails so don't export the handle to JS land when that happens. Attempts to close the uninitialized handle resulted in segmentation faults and memory corruption. Fixes #2481.
-
Ben Noordhuis authored
-
- Jan 09, 2012
-
-
Ben Noordhuis authored
-
Ryunosuke SATO authored
Fixes #2490.
-
Ben Noordhuis authored
Speeds up the benchmark below by about 680% (0.5s versus 3.4s on my Core 2 Duo). var crypto = require('crypto'); var hash = crypto.createHash('sha1'); var data = new Buffer(1024); for (var i = 0; i < 128 * 1024; ++i) hash.update(data); Fixes #2494. -
Ben Noordhuis authored
Overrides the path to the python binary. Defaults to `python`.
-