summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-22 21:59:05 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-22 21:59:05 +0000
commitf4a74d79f3111b79f408eb4070e125cad78e9082 (patch)
treead245c3f71a14d7f0e84e734ec201f08c9ddd87d /nuttx/include
parentf3427f57661698850483d9638892a7c25456078c (diff)
downloadpx4-nuttx-f4a74d79f3111b79f408eb4070e125cad78e9082.tar.gz
px4-nuttx-f4a74d79f3111b79f408eb4070e125cad78e9082.tar.bz2
px4-nuttx-f4a74d79f3111b79f408eb4070e125cad78e9082.zip
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
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/nuttx/arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/include/nuttx/arch.h b/nuttx/include/nuttx/arch.h
index b8e62e6c2..d8b8438e8 100644
--- a/nuttx/include/nuttx/arch.h
+++ b/nuttx/include/nuttx/arch.h
@@ -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
/****************************************************************************