Ben Noordhuis
8a538ce372
Remove per-process globals from per-thread context.
13 years ago
Ryan Dahl
9caeceef6d
isolates have globals stored in struct globals
13 years ago
Ben Noordhuis
edbec3f8f3
isolates: add _newIsolate() and _joinIsolate() to process object
13 years ago
Ben Noordhuis
a778a25cab
build: move internals to separate header file
13 years ago
Ben Noordhuis
39e2c469db
build: add --without-isolates configure switch
13 years ago
Ben Noordhuis
2a7a2ca986
isolates: add atexit() functionality for isolates
13 years ago
Ben Noordhuis
c3346f6760
isolates: isolate-ify the main loop
13 years ago
Ben Noordhuis
0d5a6b2d9d
uv: upgrade to f5c2a4a
13 years ago
koichik
e1c043f43a
docs: fix docs to not suggest variable leaks
Fixes #2106 .
13 years ago
koichik
a337ac7584
http: fix XMLHttpRequest piped in a writable file stream hangs next request
Fixes #2263 .
13 years ago
koichik
b962ff35dd
tls: fix test-https-client-reject fails
Fixes #2417 .
13 years ago
Ben Noordhuis
70e6f3f115
docs: document http.Server.close() semantics
13 years ago
koichik
e6b6075024
http: Avoid 'data'/'end' events after pause()
Fixes #1040 .
13 years ago
koichik
7aa5924dc6
http: fix resource leak
Fixes #2069
13 years ago
Ben Noordhuis
0de6ec5f08
win: fix mismatched new[]/delete
13 years ago
Ben Noordhuis
ed5bad754c
bench: fix use of fd after close
13 years ago
Ryan Dahl
48a9a2d355
Add deprecation message for http.Client
13 years ago
Ryan Dahl
c2d9e62f16
Merge remote branch 'origin/v0.6'
Conflicts:
deps/v8/src/version.cc
13 years ago
Ryan Dahl
e4731f8168
Upgrade V8 to 3.8.2.1
13 years ago
Ryan Dahl
d85c85aac1
Change 'real example' in addon doc
13 years ago
Ryan Dahl
624f70e88f
GYP: rename options.gypi to config.gypi
Sounds more familiar to unix users used to config.h
13 years ago
Bert Belder
c6347dcfb4
Add another nextTick benchmark
It tests how many iterations the event loop can make per second.
13 years ago
Phil Sung
cf2513e1aa
buffer: don't pollute global namespace in buffer.readInt*
13 years ago
Ben Noordhuis
b261e37a34
test: ensure callback is executed
13 years ago
Ju-yeong Park
5976d58796
net: raise exception when the socket is closed
13 years ago
Dave Irvine
045bfe0da5
docs: document 'encoding' arg of hash.update()
13 years ago
Ben Noordhuis
d8c178bc16
timers: fix performance regression
Fix a 5-7% performance regression in the http_simple benchmark that was
introduced by the following commits:
348d8cd
timers: remove _idleTimeout from item in .unenroll()
f2f3028
timers: fix memory leak in setTimeout
098fef6
timers: remember extra setTimeout() arguments when timeout==0
Fix suggested by Bert Belder.
13 years ago
Seong-Rak Choi
892ba87866
docs: fix javascript error on document page
`highlight()` is called twice. It causes following javascript error.
> Uncaught Found <pre> element with class="sh_sourcecode",
> but no such language exists
Fixes #2393 .
13 years ago
Shannen
ef659192a1
docs: use "Level 1" HTML5 features
Since we're using an HTML doctype we might as well use "Level 1" HTML5 features.
See more: http://mathiasbynens.be/notes/html5-levels#level-1
Fixes #2386 .
13 years ago
Ryan Dahl
6ac22bfb04
Add gitignore file for addon tests
13 years ago
Ryan Dahl
60a9e1e40f
Upgrade GYP to r1115
13 years ago
Ryan Dahl
6029127cea
Upgrade V8 to 3.6.6.15
13 years ago
Ryan Dahl
f7f8af8420
Merge remote branch 'origin/v0.6'
Conflicts:
Makefile
lib/_debugger.js
13 years ago
Ryan Dahl
73cf8e82e7
Add HandleScope to http-parser binding
Fixes production crashes. We were not able to reproduce in the test suite.
13 years ago
Ryan Dahl
4eaf4ce26a
Upgrade V8 to 3.8.2
13 years ago
koichik
07c27e040e
tls: Fix node swallows openssl error on request
Fixes #2308 .
Fixes #2246 .
13 years ago
Ben Noordhuis
a82f5389d9
deps: fix openssl build on x86_64
13 years ago
Ben Noordhuis
b24c515dbf
uv: upgrade to 10de090
13 years ago
Ben Noordhuis
7a7f1062bf
tls: remove duplicate assignment
13 years ago
Ryan Dahl
18b92201be
Support addons with gyp
Initial pass.
13 years ago
Ryan Dahl
7edfb02984
Remove visibility=hidden options from common.gypi
Not necessary and preventing addon loading.
13 years ago
Ryan Dahl
6c5f1f58f3
Remove unnecessary stuff from node.gyp
13 years ago
Bert Belder
f4e34f1b76
Remove unnecessary statement
13 years ago
Ryan Dahl
b603578b53
Fix 'make install'
Broken in 45605c because configure does not spit out proper JavaScript.
Needed to change single quotes to double.
13 years ago
James Hartig
348d8cd04a
timers: remove _idleTimeout from item in .unenroll()
Stops .active() from reactivating the timer.
Fixes #2114 .
13 years ago
Ben Noordhuis
aac717da8d
Add missing return statement in _debugPause() binding.
13 years ago
jbergstroem
45605c9b39
gyp: switch json for pprint when generating config
13 years ago
jbergstroem
f9994114ab
build: remove unused cmakelist
13 years ago
Maciej Małecki
5c7532e5b3
assert: test `RegExp`'s properties when checking for equality
Previous code ignored the fact that `/a/ != /a/g`.
Test case included.
13 years ago
Pedro Teixeira
a805012d6f
assert: .deepEqual() support for RegExp objects
14 years ago