summaryrefslogtreecommitdiff
path: root/nuttx/sched/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-12 01:53:20 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-12 01:53:20 +0000
commit144f389d2032ddd8a2ffbae3282788baa531e6c5 (patch)
treeeb10fa2fccfbb8d92e837afbdb11927d61c2e32b /nuttx/sched/Makefile
parente4d2f8d32a3c3fa79a7e76c7260fa5e5a12872d1 (diff)
downloadpx4-nuttx-144f389d2032ddd8a2ffbae3282788baa531e6c5.tar.gz
px4-nuttx-144f389d2032ddd8a2ffbae3282788baa531e6c5.tar.bz2
px4-nuttx-144f389d2032ddd8a2ffbae3282788baa531e6c5.zip
More priority inheritance logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1593 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/Makefile')
-rw-r--r--nuttx/sched/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 51554323d..b16ab0b94 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -48,7 +48,7 @@ TSK_SRCS = task_create.c task_init.c task_setup.c task_activate.c \
exit.c abort.c atexit.c getpid.c \
sched_addreadytorun.c sched_removereadytorun.c sched_addprioritized.c \
sched_mergepending.c sched_addblocked.c sched_removeblocked.c \
- sched_free.c sched_gettcb.c sched_releasetcb.c
+ sched_free.c sched_gettcb.c sched_verifytcb.c sched_releasetcb.c
SCHED_SRCS = sched_setparam.c sched_setpriority.c sched_getparam.c \
sched_setscheduler.c sched_getscheduler.c \
@@ -56,7 +56,7 @@ SCHED_SRCS = sched_setparam.c sched_setpriority.c sched_getparam.c \
sched_getprioritymax.c sched_getprioritymin.c \
sched_lock.c sched_unlock.c sched_lockcount.c
ifeq ($(CONFIG_PRIORITY_INHERITANCE),y)
-SEM_SRCS += sched_reprioritize.c
+SCHED_SRCS += sched_reprioritize.c
endif
ENV_SRCS = env_getenvironptr.c env_dup.c env_share.c env_release.c \