Ben Noordhuis
1fb9cfcdb1
v8: debug: fix error handling in SendConnectMessage()
The old error handling code checked if the return value of Socket::Send() != 0,
which is wrong because Socket::Send() can write less bytes than requested or
return -1 on error.
13 years ago
isaacs
43ff46becf
v8: Floating patches
13 years ago
isaacs
46b09e4190
Roll V8 back to 3.10.8.13
13 years ago
Ben Noordhuis
5f41140535
deps: upgrade libuv to 649ad50
13 years ago
isaacs
e5d3ea7771
Upgrade npm to 1.1.24
13 years ago
Ben Noordhuis
cb76999bad
deps: upgrade libuv to 06e0319
13 years ago
Ben Noordhuis
0a2076b26a
deps: upgrade libuv to c8c9fe1
13 years ago
isaacs
b9e40fbaac
Upgrade npm to 1.1.24
13 years ago
isaacs
04e484c484
v8: Don't use 'echo -n' in configure script
13 years ago
Bert Belder
3b6a00b664
Unbreak the Windows build
The v8 team apparently decided that all build products should go
into ./build/«type», and updated their common.gypi file to do so.
Unfortunately v8's common.gypi is only used for some targets. All
the other targets would still look in the old place to find their
their dependencies, which effectively broke the build.
In the long run it would be good for node to send all build
output to ./build too, on all platforms.
13 years ago
Ben Noordhuis
eabf3c8d0f
v8: debug: fix error handling in SendConnectMessage()
The old error handling code checked if the return value of Socket::Send() != 0,
which is wrong because Socket::Send() can write less bytes than requested or
return -1 on error.
13 years ago
isaacs
7946ad2634
v8: Floating patches
13 years ago
isaacs
cbdf3393a2
Upgrade v8 to 3.11.7
13 years ago
Bert Belder
30a0e58d63
uv: upgrade to 87dbffbd
13 years ago
Fedor Indutny
761e0c460a
deps: upgrade libuv to 7556590
13 years ago
isaacs
719376730d
upgrade npm to 1.1.23
This also upgrades node-gyp to 0.4.3
13 years ago
Ben Noordhuis
0bd410a66a
deps: cherry-pick libuv commit 4690204
libuv cannot be upgraded right now (API change in upstream libuv) but this
commit fixes a segmentation fault on SunOS systems, hence the cherry-pick.
13 years ago
Ben Noordhuis
0fd2834539
deps: upgrade libuv to 2ec0986
13 years ago
Ben Noordhuis
578f69bcf4
deps: upgrade libuv to 28766dc
13 years ago
isaacs
24de89bd0e
Upgrade uv to 604802a
13 years ago
Ben Noordhuis
1358bac6d1
deps: upgrade libuv to 5b9c451
13 years ago
Igor Zinkovsky
dff467d982
update uv to 2df831723fad25d2d97b824b2e52c65082af2723
13 years ago
Ben Noordhuis
039fac633e
deps: upgrade libuv to a478847
The event loop's reference counting scheme in this version of libuv has changed.
Update the libuv bindings to reflect that fact.
13 years ago
isaacs
3b95d88bf2
v8: s/echo -n/echo/. Not all sh's are bash.
13 years ago
isaacs
2cca7488bf
Patches floating on V8
13 years ago
isaacs
3f3f958c14
Upgrade V8 to 3.11.1
13 years ago
isaacs
ea4b1c1c0c
Upgrade libuv to bc4126b
13 years ago
vegorov@chromium.org
52f0c37d09
Runtime_NotifyDeoptimized should search for function activation in all thread stacks.
R=fschneider@chromium.org
BUG=v8:1763
Review URL: http://codereview.chromium.org/8240004
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@9588 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
13 years ago
yangguo@chromium.org
29b2fdb0c5
Force inlining CopyChars and String::Get.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10332054
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@11527 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
13 years ago
isaacs
33a9ac6087
Upgrade npm to 1.1.21
Somehow this got downgraded in the last v0.6 merge. Very strange.
13 years ago
isaacs
aaf0453b7c
Upgrade npm to 1.1.21
13 years ago
isaacs
719cd461d3
Upgrade uv to 936795a2c
13 years ago
Ben Noordhuis
6b426a2edd
Revert "v8: fix "pure virtual method called" runtime error"
It makes mksnapshot die with a segmentation fault on sunos with gcc 4.5.2.
This reverts commit c21c51a6fc
.
13 years ago
Ben Noordhuis
75c6255d16
deps: remove libuv sanity check
Remove reference count check. Unbreaks test suite. This needs to be addressed.
13 years ago
Ben Noordhuis
89e311b1ae
deps: back-port openssl patch
Check for potentially exploitable overflows in asn1_d2i_read_bio
BUF_mem_grow and BUF_mem_grow_clean. Refuse attempts to shrink buffer
in CRYPTO_realloc_clean.
Taken from OpenSSL CVS. Addresses CVE-2012-2110.
13 years ago
isaacs
1ac05cc5ad
Upgrade npm to 1.1.18
13 years ago
Bert Belder
d2dd9d108d
uv: upgrade to e2cae340a6
13 years ago
Bert Belder
0b75eee364
uv: upgrade to d41cc9118d
13 years ago
Bert Belder
e221cd4a53
uv: upgrade to aea5db5da1
13 years ago
Ben Noordhuis
48cdbffd24
v8: posix: try to send() whole buffer
Retry the send() syscall after a partial write.
13 years ago
Ben Noordhuis
ebfb8a5613
v8: posix: handle EINTR in socket functions
The socket functions did not handle EINTR (syscall interrupted by signal) which
tripped up the debug agent.
13 years ago
Ben Noordhuis
4359e8154d
v8: debug: fix error handling in SendConnectMessage()
The old error handling code checked if the return value of Socket::Send() != 0,
which is wrong because Socket::Send() can write less bytes than requested or
return -1 on error.
13 years ago
Ben Noordhuis
c21c51a6fc
v8: fix "pure virtual method called" runtime error
Fixes #2912 .
13 years ago
Dane Springmeyer
e5b787e84d
deps: fix v8 build error
Pull in build error fix from http://code.google.com/p/v8/source/detail?r=9505
Missed in 5d69bbfbd
.
13 years ago
isaacs
6bb9868271
Reapply patches floating on V8
13 years ago
isaacs
6ed5ef5fe0
Upgrade V8 to 3.9.24.9
13 years ago
isaacs
c8bbd13ea8
Upgrade npm to 1.1.17
13 years ago
isaacs
37fd953378
uv: Cherry-pick joyent/libuv@3c41597
13 years ago
lrn@chromium.org
5d69bbfbdb
Fix bug in x64 RegExp detecting start of string.
Also add missing MIPS case in regexp tracer.
Fixes issues v8:1748 and v8:1746
BUG=v8:1748, v8:1746
TEST=mjsunit/regress/regress-1748.js
Review URL: http://codereview.chromium.org/8116001
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@9504 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
13 years ago
Dave Pacheco
0f74729758
disable omit-frame-pointer on solaris systems
13 years ago