mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-20 08:03:56 +00:00
Adapt high-level components to new parent API
This patch adjusts the various users of the 'Child' API to the changes on the account of the new non-blocking parent interface. It also removes the use of the no-longer-available 'Connection::KEEP_OPEN' feature. With the adjustment, we took the opportunity to redesign several components to fit the non-blocking execution model much better, in particular the demo applications. Issue #2120
This commit is contained in:
committed by
Christian Helmuth
parent
8bafb9d41b
commit
b44f0554bd
2
repos/libports/lib/import/import-acpica.mk
Normal file
2
repos/libports/lib/import/import-acpica.mk
Normal file
@ -0,0 +1,2 @@
|
||||
INC_DIR += $(call select_from_ports,acpica)/src/lib/acpica/source/include
|
||||
CC_OPT += -DACPI_INLINE=inline -Wno-unused-variable
|
@ -3,8 +3,6 @@ REQUIRES := x86
|
||||
ACPICA_DIR := $(call select_from_ports,acpica)/src/lib/acpica
|
||||
ACPICA_COMP := $(ACPICA_DIR)/source/components
|
||||
|
||||
INC_DIR += $(ACPICA_DIR)/source/include
|
||||
|
||||
SRC_C += debugger/dbdisply.c debugger/dbobject.c debugger/dbxface.c
|
||||
SRC_C += $(addprefix disassembler/, $(notdir $(wildcard $(ACPICA_COMP)/disassembler/*.c)))
|
||||
SRC_C += $(addprefix dispatcher/, $(notdir $(wildcard $(ACPICA_COMP)/dispatcher/*.c)))
|
||||
@ -17,10 +15,10 @@ SRC_C += $(addprefix resources/, $(notdir $(wildcard $(ACPICA_COMP)/resources/*.
|
||||
SRC_C += $(addprefix tables/, $(notdir $(wildcard $(ACPICA_COMP)/tables/*.c)))
|
||||
SRC_C += $(addprefix utilities/, $(notdir $(wildcard $(ACPICA_COMP)/utilities/*.c)))
|
||||
|
||||
SRC_CC += osl.cc iomem.cc pci.cc
|
||||
SRC_CC += scan_root.cc
|
||||
SRC_CC += osl.cc iomem.cc pci.cc scan_root.cc env.cc
|
||||
|
||||
include $(REP_DIR)/lib/import/import-acpica.mk
|
||||
|
||||
CC_OPT += -Wno-unused-function -Wno-unused-variable
|
||||
CC_C_OPT += -DACPI_LIBRARY
|
||||
|
||||
vpath %.c $(ACPICA_COMP)
|
||||
|
Reference in New Issue
Block a user