2012-11-10 16:06:01 +00:00
|
|
|
############################################################################
|
2018-05-29 13:21:26 -06:00
|
|
|
# libs/libc/pthread/Make.defs
|
2012-11-10 16:06:01 +00:00
|
|
|
#
|
2020-05-03 14:16:36 -06: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 16:06:01 +00:00
|
|
|
#
|
2020-05-03 14:16:36 -06:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-10 16:06:01 +00:00
|
|
|
#
|
2020-05-03 14:16:36 -06: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 16:06:01 +00:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-08 07:23:26 -06:00
|
|
|
ifneq ($(CONFIG_TLS_NELEM),0)
|
|
|
|
CSRCS += pthread_keycreate.c pthread_setspecific.c pthread_getspecific.c
|
|
|
|
CSRCS += pthread_keydelete.c
|
|
|
|
endif
|
|
|
|
|
2017-02-16 09:53:13 -06:00
|
|
|
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
|
|
|
|
|
2012-11-10 16:06:01 +00:00
|
|
|
# Add the pthread C files to the build
|
|
|
|
|
2016-11-05 11:06:52 -06:00
|
|
|
CSRCS += pthread_attr_init.c pthread_attr_destroy.c
|
|
|
|
CSRCS += pthread_attr_setschedpolicy.c pthread_attr_getschedpolicy.c
|
|
|
|
CSRCS += pthread_attr_setinheritsched.c pthread_attr_getinheritsched.c
|
2020-08-19 23:32:48 +08:00
|
|
|
CSRCS += pthread_attr_setdetachstate.c pthread_attr_getdetachstate.c
|
2023-01-20 22:30:36 +08:00
|
|
|
CSRCS += pthread_attr_setstackaddr.c pthread_attr_getstackaddr.c
|
2016-11-05 11:06:52 -06:00
|
|
|
CSRCS += pthread_attr_setstacksize.c pthread_attr_getstacksize.c
|
2018-08-23 09:48:53 -06:00
|
|
|
CSRCS += pthread_attr_setstack.c pthread_attr_getstack.c
|
2016-11-05 11:06:52 -06:00
|
|
|
CSRCS += pthread_attr_setschedparam.c pthread_attr_getschedparam.c
|
2023-06-05 16:49:30 +08:00
|
|
|
CSRCS += pthread_attr_setscope.c pthread_attr_getscope.c
|
2016-11-05 11:06:52 -06:00
|
|
|
CSRCS += pthread_barrierattr_init.c pthread_barrierattr_destroy.c
|
|
|
|
CSRCS += pthread_barrierattr_getpshared.c pthread_barrierattr_setpshared.c
|
2023-04-23 14:45:14 +08:00
|
|
|
CSRCS += pthread_barrierinit.c pthread_barrierdestroy.c
|
2016-11-05 11:06:52 -06:00
|
|
|
CSRCS += pthread_condattr_init.c pthread_condattr_destroy.c
|
2023-01-20 22:41:20 +08:00
|
|
|
CSRCS += pthread_condattr_getpshared.c pthread_condattr_setpshared.c
|
2020-06-29 08:26:29 -06:00
|
|
|
CSRCS += pthread_condattr_setclock.c pthread_condattr_getclock.c
|
2020-07-27 13:46:03 +08:00
|
|
|
CSRCS += pthread_condinit.c pthread_conddestroy.c pthread_condtimedwait.c
|
2023-01-24 06:52:51 +08:00
|
|
|
CSRCS += pthread_create.c pthread_exit.c pthread_kill.c
|
2022-02-05 17:06:51 +08:00
|
|
|
CSRCS += pthread_setname_np.c pthread_getname_np.c
|
2020-06-29 08:26:29 -06:00
|
|
|
CSRCS += pthread_get_stackaddr_np.c pthread_get_stacksize_np.c
|
2016-11-05 11:06:52 -06:00
|
|
|
CSRCS += pthread_mutexattr_init.c pthread_mutexattr_destroy.c
|
|
|
|
CSRCS += pthread_mutexattr_getpshared.c pthread_mutexattr_setpshared.c
|
|
|
|
CSRCS += pthread_mutexattr_setprotocol.c pthread_mutexattr_getprotocol.c
|
|
|
|
CSRCS += pthread_mutexattr_settype.c pthread_mutexattr_gettype.c
|
2017-03-26 18:37:24 -06:00
|
|
|
CSRCS += pthread_mutexattr_setrobust.c pthread_mutexattr_getrobust.c
|
2019-02-25 18:19:13 -06:00
|
|
|
CSRCS += pthread_mutex_lock.c
|
2021-11-22 14:00:24 +08:00
|
|
|
CSRCS += pthread_once.c pthread_yield.c pthread_atfork.c
|
2023-01-20 22:06:45 +08:00
|
|
|
CSRCS += pthread_rwlockattr_init.c pthread_rwlockattr_destroy.c
|
|
|
|
CSRCS += pthread_rwlockattr_getpshared.c pthread_rwlockattr_setpshared.c
|
2020-06-29 08:26:29 -06:00
|
|
|
CSRCS += pthread_rwlock.c pthread_rwlock_rdlock.c pthread_rwlock_wrlock.c
|
2016-12-10 16:06:14 -06:00
|
|
|
CSRCS += pthread_setcancelstate.c pthread_setcanceltype.c
|
2023-06-22 17:31:01 +08:00
|
|
|
CSRCS += pthread_testcancel.c pthread_getcpuclockid.c
|
2017-04-07 07:03:00 -06:00
|
|
|
|
2016-02-19 17:33:35 -06:00
|
|
|
ifeq ($(CONFIG_SMP),y)
|
2016-11-02 07:37:56 -06:00
|
|
|
CSRCS += pthread_attr_getaffinity.c pthread_attr_setaffinity.c
|
2016-02-19 17:33:35 -06:00
|
|
|
endif
|
|
|
|
|
2019-02-28 10:21:05 -06:00
|
|
|
ifeq ($(CONFIG_PTHREAD_SPINLOCKS),y)
|
|
|
|
CSRCS += pthread_spinlock.c
|
|
|
|
endif
|
|
|
|
|
2023-06-13 14:49:56 +08:00
|
|
|
ifneq ($(CONFIG_PTHREAD_CLEANUP_STACKSIZE),0)
|
2021-04-30 18:12:09 +08:00
|
|
|
CSRCS += pthread_cleanup.c
|
|
|
|
endif
|
|
|
|
|
2020-05-08 07:23:26 -06:00
|
|
|
endif # CONFIG_DISABLE_PTHREAD
|
|
|
|
|
2012-11-10 16:06:01 +00:00
|
|
|
# Add the pthread directory to the build
|
|
|
|
|
|
|
|
DEPPATH += --dep-path pthread
|
|
|
|
VPATH += :pthread
|