summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lpc214x
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-07 15:20:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-07 15:20:21 +0000
commit488264ef3ea16f95b481417634cdf5f931ebee1f (patch)
tree1c79d0ce5cdbf20d619eff0b3482e94c397b99f0 /nuttx/arch/arm/src/lpc214x
parent0963242e626874e958db8efdafc2f9a165e756b2 (diff)
downloadpx4-nuttx-488264ef3ea16f95b481417634cdf5f931ebee1f.tar.gz
px4-nuttx-488264ef3ea16f95b481417634cdf5f931ebee1f.tar.bz2
px4-nuttx-488264ef3ea16f95b481417634cdf5f931ebee1f.zip
Implement a simple vfork(). ARM only for now
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5486 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/lpc214x')
-rw-r--r--nuttx/arch/arm/src/lpc214x/Make.defs7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/lpc214x/Make.defs b/nuttx/arch/arm/src/lpc214x/Make.defs
index ae5ed15fb..6821d512b 100644
--- a/nuttx/arch/arm/src/lpc214x/Make.defs
+++ b/nuttx/arch/arm/src/lpc214x/Make.defs
@@ -1,7 +1,7 @@
##############################################################################
# lpc214x/Make.defs
#
-# Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007, 2008, 2013 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -35,13 +35,14 @@
HEAD_ASRC = lpc214x_head.S
-CMN_ASRCS = up_saveusercontext.S up_fullcontextrestore.S up_vectors.S
+CMN_ASRCS = up_saveusercontext.S up_fullcontextrestore.S up_vectors.S \
+ up_vfork.S
CMN_CSRCS = up_allocateheap.c up_assert.c up_blocktask.c up_copystate.c \
up_createstack.c up_dataabort.c up_mdelay.c up_udelay.c \
up_exit.c up_idle.c up_initialize.c up_initialstate.c \
up_interruptcontext.c up_prefetchabort.c up_releasepending.c \
up_releasestack.c up_reprioritizertr.c up_syscall.c up_unblocktask.c \
- up_undefinedinsn.c up_usestack.c up_lowputs.c
+ up_undefinedinsn.c up_usestack.c up_lowputs.c up__vfork.c
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
CMN_CSRCS += up_schedulesigaction.c up_sigdeliver.c