summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/common/up_sigdeliver.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-09-17 22:12:03 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-09-17 22:12:03 +0000
commit589e1a74a4f4e8a337df1c18e417db35631485d8 (patch)
treee10ae30edb0e21f2e78f4c68456c9fe137b6a47d /nuttx/arch/arm/src/common/up_sigdeliver.c
parentd7a9800e3ecdd8f6bce4b5ee83bfe91e4238b61e (diff)
downloadpx4-nuttx-589e1a74a4f4e8a337df1c18e417db35631485d8.tar.gz
px4-nuttx-589e1a74a4f4e8a337df1c18e417db35631485d8.tar.bz2
px4-nuttx-589e1a74a4f4e8a337df1c18e417db35631485d8.zip
Fix LPC2148 PLL setup
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@925 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/common/up_sigdeliver.c')
-rw-r--r--nuttx/arch/arm/src/common/up_sigdeliver.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/arch/arm/src/common/up_sigdeliver.c b/nuttx/arch/arm/src/common/up_sigdeliver.c
index 4b2f1c27b..04202b1a4 100644
--- a/nuttx/arch/arm/src/common/up_sigdeliver.c
+++ b/nuttx/arch/arm/src/common/up_sigdeliver.c
@@ -38,15 +38,20 @@
****************************************************************************/
#include <nuttx/config.h>
+
#include <sys/types.h>
#include <sched.h>
#include <debug.h>
+
#include <nuttx/irq.h>
#include <nuttx/arch.h>
+
#include "os_internal.h"
#include "up_internal.h"
#include "up_arch.h"
+#ifndef CONFIG_DISABLE_SIGNALS
+
/****************************************************************************
* Definitions
****************************************************************************/
@@ -135,3 +140,6 @@ void up_sigdeliver(void)
up_fullcontextrestore(regs);
#endif
}
+
+#endif /* !CONFIG_DISABLE_SIGNALS */
+