diff options
author | bptato <nincsnevem662@gmail.com> | 2024-01-29 13:13:00 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-01-29 13:24:58 +0100 |
commit | 619d5296dbfc77c37c13b86e4e96c356f1c3f61a (patch) | |
tree | 3f4c265b6eb142159a98874efa814277ece3dc89 /doc | |
parent | f9c74eac1260cd02302a70adaa4806c297428163 (diff) | |
download | chawan-619d5296dbfc77c37c13b86e4e96c356f1c3f61a.tar.gz |
client: stop entire process group on suspend()
* pass 0 so e.g. git does not hang * use sigtstp so e.g. cgi scripts can clean up if needed
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/config.md b/doc/config.md index 58a07823..7c7ca27d 100644 --- a/doc/config.md +++ b/doc/config.md @@ -657,8 +657,9 @@ A list of built-in pager functions can be found below. <tr> <td>`suspend()`</td> <td>Temporarily suspend the browser (by delivering the client process a -SIGSTOP signal.)<br> -Note: this does not suspend buffer processes.</td> +SIGTSTP signal.)<br> +Note: this suspends the entire process group, including e.g. buffer processes or +CGI scripts.</td> </tr> </table> |