blob: 1d9559f3f3a0f544e609af8cc4755d6db54a5ad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
x15_SOURCES-y += \
kern/arg.c \
kern/bitmap.c \
kern/bulletin.c \
kern/cbuf.c \
kern/clock.c \
kern/condition.c \
kern/console.c \
kern/cpumap.c \
kern/error.c \
kern/fmt.c \
kern/init.c \
kern/intr.c \
kern/kernel.c \
kern/kmem.c \
kern/latomic.c \
kern/log.c \
kern/mutex.c \
kern/panic.c \
kern/percpu.c \
kern/plist.c \
kern/printf.c \
kern/rbtree.c \
kern/rcu.c \
kern/rdxtree.c \
kern/rtmutex.c \
kern/semaphore.c \
kern/shutdown.c \
kern/sleepq.c \
kern/spinlock.c \
kern/sref.c \
kern/string.c \
kern/symbol.c \
kern/syscnt.c \
kern/task.c \
kern/thread.c \
kern/timer.c \
kern/turnstile.c \
kern/work.c \
kern/xcall.c
x15_SOURCES-$(CONFIG_SHELL) += kern/shell.c
x15_SOURCES-$(CONFIG_MUTEX_ADAPTIVE) += kern/mutex/mutex_adaptive.c
x15_SOURCES-$(CONFIG_MUTEX_PLAIN) += kern/mutex/mutex_plain.c
x15_SOURCES-$(CONFIG_PERFMON) += kern/perfmon.c
|