e1d867b686
This patch adds support for executing multiple concurrent requests on different devices on the same AHCI controller. The libdriver library has been extended to include a generic multithreading interface, and the AHCI driver has been extended to make use of this interface. The original version of this code has been written by Arne Welzel.
12 lines
207 B
Makefile
12 lines
207 B
Makefile
# Makefile for libdriver
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= driver
|
|
|
|
SRCS= driver.c drvlib.c driver_st.c driver_mt.c mq.c event.c
|
|
|
|
.if ${USE_STATECTL} != "no"
|
|
CPPFLAGS+= -DUSE_STATECTL
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|