From 3dc8584574afe11d3f54a5027c70e9404384d4e8 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 2 Mar 2011 00:47:12 +0000 Subject: [PATCH] Fix and clarity 'kill' documentation git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3328 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- nuttx/Documentation/NuttShell.html | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/nuttx/Documentation/NuttShell.html b/nuttx/Documentation/NuttShell.html index 754057917..87e8592e9 100644 --- a/nuttx/Documentation/NuttShell.html +++ b/nuttx/Documentation/NuttShell.html @@ -8,7 +8,7 @@

NuttShell (NSH)

-

Last Updated: February 28, 2011

+

Last Updated: March 1, 2011

@@ -1006,8 +1006,33 @@ kill -<signal> <pid>

Synopsis. - Send the to the task identified by . + Send the <signal> to the task identified by <pid>.

+ +

+ NOTE: + NuttX does not support a FULL POSIX signalling system. + Standard signals like SIGCHLD, SIGINTR, SIGKILL, etc. do not exist in NuttX and sending those signal may not have the result that you expect. + Rather, NuttX supports only what are referred to as POSIX real-time signals. + These signals may be used to communicate with running tasks, may be use to waiting waiting tasks, etc. + But, as an example, kill -9 (SIGKILL) will not terminate a task. +