sched/pthread: rename pthread_initialize.c as pthread_sem.c

This is to better match the contents of the source file.

Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
This commit is contained in:
Yanfeng Liu 2024-05-22 09:39:33 +08:00 committed by Xiang Xiao
parent f8749ef0e0
commit d019828d3c
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ if(NOT CONFIG_DISABLE_PTHREAD)
pthread_condclockwait.c
pthread_sigmask.c
pthread_cancel.c
pthread_initialize.c
pthread_sem.c
pthread_completejoin.c
pthread_findjoininfo.c
pthread_release.c

View File

@ -26,7 +26,7 @@ CSRCS += pthread_mutexinit.c pthread_mutexdestroy.c
CSRCS += pthread_mutextimedlock.c pthread_mutextrylock.c pthread_mutexunlock.c
CSRCS += pthread_condwait.c pthread_condsignal.c pthread_condbroadcast.c
CSRCS += pthread_condclockwait.c pthread_sigmask.c pthread_cancel.c
CSRCS += pthread_initialize.c pthread_completejoin.c pthread_findjoininfo.c
CSRCS += pthread_sem.c pthread_completejoin.c pthread_findjoininfo.c
CSRCS += pthread_release.c pthread_setschedprio.c
CSRCS += pthread_barrierwait.c

View File

@ -1,5 +1,5 @@
/****************************************************************************
* sched/pthread/pthread_initialize.c
* sched/pthread/pthread_sem.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with