6a2c03732f
Using the ts/tick conversion functions provided in clock.h Do this caused we want speed up the time calculation, so change: clock_time2ticks, clock_ticks2time, clock_timespec_add, clock_timespec_compare, clock_timespec_subtract... to MACRO Signed-off-by: ligd <liguiding1@xiaomi.com>
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
############################################################################
|
|
# libs/libc/sched/Make.defs
|
|
#
|
|
# 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
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# 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.
|
|
#
|
|
############################################################################
|
|
|
|
# Add the sched C files to the build
|
|
|
|
CSRCS += sched_getprioritymax.c sched_getprioritymin.c
|
|
CSRCS += clock_getcpuclockid.c clock_getres.c
|
|
CSRCS += task_cancelpt.c task_setcancelstate.c task_setcanceltype.c
|
|
CSRCS += task_testcancel.c
|
|
|
|
ifeq ($(CONFIG_SMP),y)
|
|
CSRCS += sched_cpucount.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SCHED_BACKTRACE),y)
|
|
CSRCS += sched_dumpstack.c sched_backtrace.c
|
|
endif
|
|
|
|
ifneq ($(CONFIG_BUILD_KERNEL),y)
|
|
CSRCS += task_startup.c
|
|
endif # CONFIG_BUILD_KERNEL
|
|
|
|
# Add the sched directory to the build
|
|
|
|
DEPPATH += --dep-path sched
|
|
VPATH += :sched
|