2014-08-09 00:44:08 +02:00
|
|
|
############################################################################
|
|
|
|
# sched/task/Make.defs
|
|
|
|
#
|
2021-02-08 16:33:58 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2014-08-09 00:44:08 +02:00
|
|
|
#
|
2021-02-08 16:33:58 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2014-08-09 00:44:08 +02:00
|
|
|
#
|
2021-02-08 16:33:58 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2014-08-09 00:44:08 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2014-10-07 15:42:36 +02:00
|
|
|
CSRCS += task_create.c task_init.c task_setup.c task_activate.c
|
|
|
|
CSRCS += task_start.c task_delete.c task_exit.c task_exithook.c
|
2016-12-10 22:16:46 +01:00
|
|
|
CSRCS += task_getgroup.c task_getpid.c task_prctl.c task_recover.c
|
|
|
|
CSRCS += task_restart.c task_spawnparms.c task_setcancelstate.c
|
2020-12-07 12:42:58 +01:00
|
|
|
CSRCS += task_cancelpt.c task_terminate.c task_gettid.c exit.c
|
2016-11-19 18:41:05 +01:00
|
|
|
|
2020-12-14 13:07:42 +01:00
|
|
|
ifeq ($(CONFIG_SCHED_HAVE_PARENT),y)
|
|
|
|
CSRCS += task_getppid.c
|
|
|
|
endif
|
|
|
|
|
2014-08-09 00:44:08 +02:00
|
|
|
ifeq ($(CONFIG_ARCH_HAVE_VFORK),y)
|
|
|
|
ifeq ($(CONFIG_SCHED_WAITPID),y)
|
2014-10-07 15:42:36 +02:00
|
|
|
CSRCS += task_vfork.c
|
2014-08-09 00:44:08 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-09-16 23:37:05 +02:00
|
|
|
ifneq ($(CONFIG_BUILD_KERNEL),y)
|
2014-10-07 15:42:36 +02:00
|
|
|
CSRCS += task_spawn.c
|
2014-09-14 16:22:21 +02:00
|
|
|
endif
|
|
|
|
|
2016-12-10 23:06:14 +01:00
|
|
|
ifeq ($(CONFIG_CANCELLATION_POINTS),y)
|
2016-12-10 23:34:14 +01:00
|
|
|
CSRCS += task_setcanceltype.c task_testcancel.c
|
2016-12-10 23:06:14 +01:00
|
|
|
endif
|
|
|
|
|
2014-08-09 00:44:08 +02:00
|
|
|
ifneq ($(CONFIG_BINFMT_DISABLE),y)
|
|
|
|
ifeq ($(CONFIG_LIBC_EXECFUNCS),y)
|
2014-10-07 15:42:36 +02:00
|
|
|
CSRCS += task_execv.c task_posixspawn.c
|
2014-08-09 00:44:08 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SCHED_STARTHOOK),y)
|
2014-10-07 15:42:36 +02:00
|
|
|
CSRCS += task_starthook.c
|
2014-08-09 00:44:08 +02:00
|
|
|
endif
|
|
|
|
|
2014-08-09 00:57:47 +02:00
|
|
|
ifeq ($(CONFIG_SCHED_ATEXIT),y)
|
2014-10-07 15:42:36 +02:00
|
|
|
CSRCS += task_atexit.c
|
2014-08-09 00:57:47 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SCHED_ONEXIT),y)
|
2014-10-07 15:42:36 +02:00
|
|
|
CSRCS += task_onexit.c
|
2014-08-09 00:57:47 +02:00
|
|
|
endif
|
|
|
|
|
2014-08-09 00:44:08 +02:00
|
|
|
# Include task build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path task
|
|
|
|
VPATH += :task
|