Revert "microkernel: remove deprecated task IRQs"
This reverts commit d73a9bb9c6
.
The patch was intended for 1.6.0 release.
Change-Id: Id42058b746a3d2a54e4b1a2983eb58bd10b1ed40
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
ba57243d98
commit
4760753ab0
9 changed files with 358 additions and 0 deletions
16
Kbuild
16
Kbuild
|
@ -1,5 +1,11 @@
|
|||
# vim: filetype=make
|
||||
|
||||
ifneq ($(strip $(CONFIG_MAX_NUM_TASK_IRQS)),)
|
||||
ifneq (${CONFIG_MAX_NUM_TASK_IRQS},0)
|
||||
TASK_IRQS=y
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq ("$(wildcard $(MDEF_FILE))","")
|
||||
MDEF_FILE_PATH=$(strip $(MDEF_FILE))
|
||||
else
|
||||
|
@ -22,6 +28,16 @@ define filechk_prj.mdef
|
|||
echo " TASKGROUP FPU";\
|
||||
echo " TASKGROUP SSE";\
|
||||
echo; \
|
||||
if test "$(TASK_IRQS)" = "y"; then \
|
||||
echo "% Task IRQ objects";\
|
||||
echo "% EVENT NAME HANDLER"; \
|
||||
echo "% ======================================="; \
|
||||
i=0; \
|
||||
while [ $$i -lt $(CONFIG_MAX_NUM_TASK_IRQS) ]; do \
|
||||
echo " EVENT _TaskIrqEvt$$i NULL"; \
|
||||
i=$$(($$i+1));\
|
||||
done; \
|
||||
fi; \
|
||||
if test -e "$(MDEF_FILE_PATH)"; then \
|
||||
cat $(MDEF_FILE_PATH); \
|
||||
fi;)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue