-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Nodejs 0.5.10 and asynchronous addons #1920
Comments
You need to compile with |
I think that there is something else. I took update and build project with no success. Here is what I did. Fyi: I also tried this few days ago at saturday without success. git pull origin master make -j2 The went to addon project node-waf configure clean build |
Sorry, If you want to future-proof your module, switch to the libuv API. It should be relatively painless in your case, look for the |
Sorry. It was just typo on my comment. I used """ export CXXFLAGS="export -DEV_MULTIPLICITY=1" """. At least compile time messages looked fine (-DEV_... added). But I'll check uv_async-module. Thank you for your tip. |
PR-URL: nodejs/node#1996 Notable changes * module: The number of syscalls made during a require() have been significantly reduced again (see nodejs#1801 from v2.2.0 for previous work), which should lead to a performance improvement (Pierre Inglebert) nodejs#1920. * npm: - Upgrade to v2.11.2 (Rebecca Turner) nodejs#1956. - Upgrade to v2.11.3 (Forrest L Norvell) nodejs#2018. * zlib: A bug was discovered where the process would abort if the final part of a zlib decompression results in a buffer that would exceed the maximum length of 0x3fffffff bytes (~1GiB). This was likely to only occur during buffered decompression (rather than streaming). This is now fixed and will instead result in a thrown RangeError (Michaël Zasso) nodejs#1811.
I wrote simple databse plugin that use eio to make asynchronous db queries. Plugin works fine with 0.4.12 but core dumps with 0.5.10xxx. I didn't find anything useful from documents so is there something that has changed or is it just a old plain bug ?-) I assume that my code is fine as I have removed all unneccessary and it still core dumps...and yes it works fine with old version.
Here is code. Program never reaches EIO_Query (core dump just after returning this function).
The text was updated successfully, but these errors were encountered: