Lines Matching +full:handle +full:- +full:sigint
4 :c:type:`uv_signal_t` --- Signal handle
7 Signal handles implement Unix style signal handling on a per-event loop bases.
10 -------------
14 * SIGINT is normally delivered when the user presses CTRL+C. However, like
25 32-bit libuv app is running on 64-bit system, SIGWINCH will be emulated. In
27 For a writable :c:type:`uv_tty_t` handle libuv will only detect size changes
28 when the cursor is moved. When a readable :c:type:`uv_tty_t` handle is used,
29 resizing of the console buffer will be detected only if the handle is in raw
40 .. versionchanged:: 1.31.0 32-bit libuv SIGWINCH support on 64-bit Windows was
44 ----------
58 ----------
62 Signal handle type.
64 .. c:type:: void (*uv_signal_cb)(uv_signal_t* handle, int signum)
74 Signal being monitored by this handle. Readonly.
80 ---
84 Initialize the handle.
88 Start the handle with the given callback, watching for the given signal.
99 Stop the handle, the callback will no longer be called.