mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-30 02:28:54 +00:00
7f73e5e879
This patch moves details about the stack allocation and organization the base-internal headers. Thereby, I replaced the notion of "thread contexts" by "stacks" as this term is much more intuitive. The fact that we place thread-specific information at the bottom of the stack is not worth introducing new terminology. Issue #1832
14 lines
353 B
Makefile
14 lines
353 B
Makefile
SRC_CC += console/log_console.cc
|
|
SRC_CC += cpu/cache.cc
|
|
SRC_CC += env/env.cc env/stack_area.cc env/reinitialize.cc
|
|
SRC_CC += thread/thread_start.cc
|
|
SRC_CC += irq/platform.cc
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
|
|
|
LIBS += base-common
|