64ac24e738
Semaphores are no longer performance-critical, so a generic C implementation is better for maintainability, debuggability and extensibility. Thanks to Peter Zijlstra for fixing the lockdep warning. Thanks to Harvey Harrison for pointing out that the unlikely() was unnecessary. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Acked-by: Ingo Molnar <mingo@elte.hu>
12 lines
247 B
Makefile
12 lines
247 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
extra-y := vmlinux.lds
|
|
|
|
obj-y := process.o traps.o ptrace.o irq.o \
|
|
sys_h8300.o time.o signal.o \
|
|
setup.o gpio.o init_task.o syscalls.o \
|
|
entry.o
|
|
|
|
obj-$(CONFIG_MODULES) += module.o h8300_ksyms.o
|