sched: Move dump.c to sched_dumponexit.c
The dump.c is a part of sched module, so move it to sched directory. Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
859247c224
commit
55e3cf7e2d
@ -24,10 +24,6 @@ if(CONFIG_ARCH_DEADLOCKDUMP)
|
|||||||
list(APPEND SRCS deadlock.c)
|
list(APPEND SRCS deadlock.c)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CONFIG_DUMP_ON_EXIT)
|
|
||||||
list(APPEND SRCS dump.c)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CONFIG_BOARD_COREDUMP_SYSLOG OR CONFIG_BOARD_COREDUMP_BLKDEV)
|
if(CONFIG_BOARD_COREDUMP_SYSLOG OR CONFIG_BOARD_COREDUMP_BLKDEV)
|
||||||
list(APPEND SRCS coredump.c)
|
list(APPEND SRCS coredump.c)
|
||||||
endif()
|
endif()
|
||||||
|
@ -24,10 +24,6 @@ ifeq ($(CONFIG_ARCH_DEADLOCKDUMP),y)
|
|||||||
CSRCS += deadlock.c
|
CSRCS += deadlock.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_DUMP_ON_EXIT),y)
|
|
||||||
CSRCS += dump.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq ($(CONFIG_BOARD_COREDUMP_SYSLOG)$(CONFIG_BOARD_COREDUMP_BLKDEV),)
|
ifneq ($(CONFIG_BOARD_COREDUMP_SYSLOG)$(CONFIG_BOARD_COREDUMP_BLKDEV),)
|
||||||
CSRCS += coredump.c
|
CSRCS += coredump.c
|
||||||
endif
|
endif
|
||||||
|
@ -120,6 +120,10 @@ if(CONFIG_SCHED_BACKTRACE)
|
|||||||
list(APPEND SRCS sched_backtrace.c)
|
list(APPEND SRCS sched_backtrace.c)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_DUMP_ON_EXIT)
|
||||||
|
list(APPEND SRCS sched_dumponexit.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
if(CONFIG_SMP_CALL)
|
if(CONFIG_SMP_CALL)
|
||||||
list(APPEND SRCS sched_smp.c)
|
list(APPEND SRCS sched_smp.c)
|
||||||
endif()
|
endif()
|
||||||
|
@ -96,6 +96,10 @@ ifeq ($(CONFIG_SCHED_BACKTRACE),y)
|
|||||||
CSRCS += sched_backtrace.c
|
CSRCS += sched_backtrace.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_DUMP_ON_EXIT),y)
|
||||||
|
CSRCS += sched_dumponexit.c
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_SMP_CALL),y)
|
ifeq ($(CONFIG_SMP_CALL),y)
|
||||||
CSRCS += sched_smp.c
|
CSRCS += sched_smp.c
|
||||||
endif
|
endif
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* sched/misc/dump.c
|
* sched/sched/sched_dumponexit.c
|
||||||
*
|
*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* contributor license agreements. See the NOTICE file distributed with
|
Loading…
Reference in New Issue
Block a user