From 50c5eb49ab4e050706ec4640e83786561136040b Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Wed, 4 Mar 2020 13:45:45 +0000 Subject: [PATCH] doc: link setRawMode() from signal docs Fixes: https://github.com/nodejs/node/issues/32065 PR-URL: https://github.com/nodejs/node/pull/32088 Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Jeremiah Senkpiel --- doc/api/process.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index 8d4d9c428d2f0f..3f848ae075f688 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -502,7 +502,7 @@ process.on('SIGTERM', handle); * `'SIGTERM'` is not supported on Windows, it can be listened on. * `'SIGINT'` from the terminal is supported on all platforms, and can usually be generated with `+C` (though this may be configurable). It is not - generated when terminal raw mode is enabled. + generated when [terminal raw mode][] is enabled and `+C` is used. * `'SIGBREAK'` is delivered on Windows when `+` is pressed, on non-Windows platforms it can be listened on, but there is no way to send or generate it. @@ -2545,6 +2545,7 @@ cases: [process_emit_warning]: #process_process_emitwarning_warning_type_code_ctor [process_warning]: #process_event_warning [report documentation]: report.html +[terminal raw mode]: tty.html#tty_readstream_setrawmode_mode [uv_rusage_t]: http://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t [wikipedia_minor_fault]: https://en.wikipedia.org/wiki/Page_fault#Minor [wikipedia_major_fault]: https://en.wikipedia.org/wiki/Page_fault#Major