2012-11-10 17:06:01 +01:00
|
|
|
############################################################################
|
2018-05-29 21:21:26 +02:00
|
|
|
# libs/libc/sched/Make.defs
|
2012-11-10 17:06:01 +01:00
|
|
|
#
|
2021-03-02 15:54:21 +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
|
2012-11-10 17:06:01 +01:00
|
|
|
#
|
2021-03-02 15:54:21 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-10 17:06:01 +01:00
|
|
|
#
|
2021-03-02 15:54:21 +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.
|
2012-11-10 17:06:01 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Add the sched C files to the build
|
|
|
|
|
|
|
|
CSRCS += sched_getprioritymax.c sched_getprioritymin.c
|
2021-11-04 12:18:38 +01:00
|
|
|
CSRCS += clock_ticks2time.c clock_time2ticks.c
|
|
|
|
CSRCS += clock_timespec_add.c clock_timespec_subtract.c
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2016-12-10 23:06:14 +01:00
|
|
|
ifneq ($(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
|
|
|
|
|
2016-02-21 01:45:07 +01:00
|
|
|
ifeq ($(CONFIG_SMP),y)
|
|
|
|
CSRCS += sched_cpucount.c
|
|
|
|
endif
|
|
|
|
|
2020-06-30 19:58:58 +02:00
|
|
|
ifneq ($(CONFIG_BUILD_KERNEL),y)
|
2013-03-14 23:44:06 +01:00
|
|
|
CSRCS += task_startup.c
|
2020-10-22 14:41:01 +02:00
|
|
|
|
2021-07-30 06:05:33 +02:00
|
|
|
ifeq ($(CONFIG_SCHED_BACKTRACE),y)
|
2021-07-30 06:15:43 +02:00
|
|
|
CSRCS += sched_dumpstack.c sched_backtrace.c
|
2021-07-30 06:05:33 +02:00
|
|
|
endif
|
|
|
|
|
2020-10-22 14:41:01 +02:00
|
|
|
endif # CONFIG_BUILD_KERNEL
|
|
|
|
|
2012-11-10 17:06:01 +01:00
|
|
|
# Add the sched directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path sched
|
|
|
|
VPATH += :sched
|