forked from Imagelibrary/rtems
Read-ahead requests were previously executed in the context of the reading task. This blocks the reading task until the complete read with read-ahead transfer is finished. A read-ahead task is introduced to off-load the read-ahead transfer. This allows the reading task to work with the requested block more quickly. The read-ahead is triggered after two misses of ascending consecutive blocks or a read hit of a block read by the most-recent read-ahead transfer. The read-ahead feature is configurable and can be disabled.
20 lines
500 B
Makefile
20 lines
500 B
Makefile
rtems_tests_PROGRAMS = block13
|
|
block13_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = block13.scn block13.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(block13_OBJECTS)
|
|
LINK_LIBS = $(block13_LDLIBS)
|
|
|
|
block13$(EXEEXT): $(block13_OBJECTS) $(block13_DEPENDENCIES)
|
|
@rm -f block13$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|