A few fixes related to dispatched signals in kernel mode (there are still issues)

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5777 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2013-03-22 21:59:05 +00:00
parent eaee3fc423
commit 2a77c20228
6 changed files with 27 additions and 11 deletions
+1 -1
View File
@@ -534,7 +534,7 @@ void up_pthread_start(pthread_startroutine_t entrypt, pthread_addr_t arg)
#if defined(CONFIG_NUTTX_KERNEL) && defined(__KERNEL__) && !defined(CONFIG_DISABLE_SIGNALS)
void up_signal_handler(_sa_sigaction_t sighand, int signo,
FAR siginfo_t *info, FAR void *ucontext);
FAR siginfo_t *info, FAR void *ucontext) noreturn_function;
#endif
/****************************************************************************