mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 04:07:41 +08:00
* Makefile.am, configure.ac: Add test case for the _Thread_queue_Enqueue_priority interrupt critical section where the TCB we are using as a current pointer is removed from the thread queue when we flash interrupts while searching forward. * spintrcritical06/.cvsignore, spintrcritical06/Makefile.am, spintrcritical06/init.c, spintrcritical06/spintrcritical06.doc, spintrcritical06/spintrcritical06.scn: New files.
32 lines
893 B
Makefile
32 lines
893 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = spintrcritical06
|
|
spintrcritical06_SOURCES = init.c \
|
|
../spintrcritical_support/intrcritical.c
|
|
|
|
dist_rtems_tests_DATA = spintrcritical06.scn
|
|
dist_rtems_tests_DATA += spintrcritical06.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
spintrcritical06_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
AM_CPPFLAGS += -I$(top_srcdir)/spintrcritical_support
|
|
AM_CPPFLAGS += -DPRIORITY_NO_TIMEOUT_FORWARD
|
|
|
|
LINK_OBJS = $(spintrcritical06_OBJECTS) $(spintrcritical06_LDADD)
|
|
LINK_LIBS = $(spintrcritical06_LDLIBS)
|
|
|
|
spintrcritical06$(EXEEXT): $(spintrcritical06_OBJECTS) $(spintrcritical06_DEPENDENCIES)
|
|
@rm -f spintrcritical06$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|