node/lib/internal
Rich Trott 57a51a00e8 child_process: guard against race condition
It is possible that the internal hnadleMessage() might try to send to
a channel that has been closed. The result can be an AssertionError.
Guard against this.

Fixes: https://github.com/nodejs/node/issues/4205
PR-URL: https://github.com/nodejs/node/pull/4418
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-12-27 13:10:28 -08:00
..
streams streams: refactor LazyTransform to internal/ 2015-09-14 19:58:04 -07:00
child_process.js child_process: guard against race condition 2015-12-27 13:10:28 -08:00
cluster.js cluster: remove handles when disconnecting worker 2015-11-06 23:02:11 +01:00
freelist.js iojs: introduce internal modules 2015-03-25 22:12:18 +03:00
linkedlist.js lib,test: deprecate _linklist 2015-10-08 17:32:08 -07:00
module.js module,repl: remove repl require() hack 2015-11-30 23:58:27 +01:00
readline.js readline: deprecate undocumented exports 2015-11-19 17:01:25 -05:00
readme.md doc: add internal modules notice 2015-08-25 11:58:50 -04:00
repl.js repl: remove unused function 2015-12-26 11:30:49 -08:00
socket_list.js lib,src: remove usage of events.EventEmitter 2015-09-23 00:23:08 +05:30
util.js module: always decorate thrown errors 2015-12-19 14:15:38 -05:00
v8_prof_polyfill.js tools: add --prof-process flag to node binary 2015-12-08 02:00:46 +01:00
v8_prof_processor.js tools: add --prof-process flag to node binary 2015-12-08 02:00:46 +01:00

Internal Modules

The modules in lib/internal are intended for internal use in Node.js core only, and are not accessible with require() from user modules. These are subject to change at any time. Reliance on these modules outside of core is not supported in any way.