diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-09-13 18:36:58 -0700 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2018-09-18 10:05:06 -0400 |
commit | baa621c85e2ab76f23c0a5f87f1979f8d5b2549e (patch) | |
tree | 4975fbef785214f61f67b309b1d514850e5e1150 /docs/src | |
parent | baa81465ad85992edf0cb9ac8a15b7d5e0faac12 (diff) | |
download | libuv-baa621c85e2ab76f23c0a5f87f1979f8d5b2549e.tar.gz libuv-baa621c85e2ab76f23c0a5f87f1979f8d5b2549e.zip |
doc: clarify that some remarks apply to windows
PR-URL: https://github.com/libuv/libuv/pull/1988
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/signal.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/src/signal.rst b/docs/src/signal.rst index 24354e4f..f52b6470 100644 --- a/docs/src/signal.rst +++ b/docs/src/signal.rst @@ -17,12 +17,12 @@ Reception of some signals is emulated on Windows: program is given approximately 10 seconds to perform cleanup. After that Windows will unconditionally terminate it. -Watchers for other signals can be successfully created, but these signals -are never received. These signals are: `SIGILL`, `SIGABRT`, `SIGFPE`, `SIGSEGV`, -`SIGTERM` and `SIGKILL.` +* Watchers for other signals can be successfully created, but these signals + are never received. These signals are: `SIGILL`, `SIGABRT`, `SIGFPE`, `SIGSEGV`, + `SIGTERM` and `SIGKILL.` -Calls to raise() or abort() to programmatically raise a signal are -not detected by libuv; these will not trigger a signal watcher. +* Calls to raise() or abort() to programmatically raise a signal are + not detected by libuv; these will not trigger a signal watcher. .. note:: On Linux SIGRT0 and SIGRT1 (signals 32 and 33) are used by the NPTL pthreads library to |