2014-08-09 03:53:29 +08:00
|
|
|
############################################################################
|
|
|
|
# sched/semaphore/Make.defs
|
|
|
|
#
|
2024-09-11 19:45:11 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2021-02-08 23:33:58 +08: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 03:53:29 +08:00
|
|
|
#
|
2021-02-08 23:33:58 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2014-08-09 03:53:29 +08:00
|
|
|
#
|
2021-02-08 23:33:58 +08: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 03:53:29 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2016-11-02 23:05:18 +08:00
|
|
|
# Add semaphore-related files to the build
|
|
|
|
|
2015-08-01 21:30:23 +08:00
|
|
|
CSRCS += sem_destroy.c sem_wait.c sem_trywait.c sem_tickwait.c
|
2020-07-27 13:46:03 +08:00
|
|
|
CSRCS += sem_timedwait.c sem_clockwait.c sem_timeout.c sem_post.c
|
2023-11-07 18:27:31 +08:00
|
|
|
CSRCS += sem_recover.c sem_reset.c sem_waitirq.c sem_rw.c
|
2014-08-09 03:53:29 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_PRIORITY_INHERITANCE),y)
|
2016-11-04 08:51:38 +08:00
|
|
|
CSRCS += sem_initialize.c sem_holder.c sem_setprotocol.c
|
2014-08-09 03:53:29 +08:00
|
|
|
endif
|
|
|
|
|
2024-08-22 10:24:30 +08:00
|
|
|
ifeq ($(CONFIG_PRIORITY_PROTECT),y)
|
|
|
|
CSRCS += sem_protect.c
|
|
|
|
endif
|
|
|
|
|
2014-08-09 03:53:29 +08:00
|
|
|
# Include semaphore build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path semaphore
|
|
|
|
VPATH += :semaphore
|