Send a signal to a thread
#include <signal.h>
int pthread_kill( pthread_t thread,
int sig );
BlackBerry 10.0.0
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pthread_kill() function sends the signal sig to the thread thread. The target thread and calling thread must be in the same process. If sig is zero, error checking is performed but no signal is sent.
In order to send signals to a process with a different real or effective user ID, the calling process must have the PROCMGR_AID_SIGNAL ability enabled. For more information, see procmgr_ability() .
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | Yes |
| Thread | Yes |