source: rtems/testsuites/libtests/block13/Makefile.am @ 39ee704e

4.115
Last change on this file since 39ee704e was 39ee704e, checked in by Sebastian Huber <sebastian.huber@…>, on 05/31/12 at 08:27:29

libblock: Add read-ahead task

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.

  • Property mode set to 100644
File size: 500 bytes
Line 
1rtems_tests_PROGRAMS = block13
2block13_SOURCES = init.c
3
4dist_rtems_tests_DATA = block13.scn block13.doc
5
6include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
7include $(top_srcdir)/../automake/compile.am
8include $(top_srcdir)/../automake/leaf.am
9
10AM_CPPFLAGS += -I$(top_srcdir)/../support/include
11
12LINK_OBJS = $(block13_OBJECTS)
13LINK_LIBS = $(block13_LDLIBS)
14
15block13$(EXEEXT): $(block13_OBJECTS) $(block13_DEPENDENCIES)
16        @rm -f block13$(EXEEXT)
17        $(make-exe)
18
19include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.