diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-04-12 05:09:13 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-04-12 05:09:13 +0200 |
commit | 3a3ef53624823f79d935f68d074d73aad9033a2d (patch) | |
tree | 7c7f85a3953230f99f29ee739e453798851eebd7 /doc | |
parent | document siginfo and add it to macros.h (diff) | |
download | mds-3a3ef53624823f79d935f68d074d73aad9033a2d.tar.gz mds-3a3ef53624823f79d935f68d074d73aad9033a2d.tar.bz2 mds-3a3ef53624823f79d935f68d074d73aad9033a2d.tar.xz |
valgrind is not using sigrtmin, it is using sigrtmax
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/info/mds.texinfo | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/info/mds.texinfo b/doc/info/mds.texinfo index a051a6c..0806894 100644 --- a/doc/info/mds.texinfo +++ b/doc/info/mds.texinfo @@ -425,12 +425,8 @@ instead of @command{SIGUSR1}. If you need servers to free up allocated memory that they do not use, send the signal @command{SIGDANGER}, or if not defined -@command{SIGRTMIN + 1}@footnote{@command{valgrind} -uses @command{SIGRTMIN} for internal stuff, so -we cannot use @command{SIGRTMIN} as it is hence -unavailable when running under @command{valgrind}}. -Unimportant servers may choose to die on -@command{SIGDANGER}. +@command{SIGRTMIN + 1}. Unimportant servers +may choose to die on @command{SIGDANGER}. Server may also choose to support the signal @command{SIGINFO}, or if not defined @@ -441,6 +437,11 @@ is send by a user to the server, if she wants the server to dump information about the server's state or statistics to the TTY. +@command{valgrind} uses @command{SIGRTMAX} for +its own internal stuff. Therefore servers must +not use @command{SIGRTMAX} as it is hence unavailable +when running under @command{valgrind}. + @node Filesystem |