From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FREEMAIL_FROM,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 3591 invoked from network); 20 Jun 2023 14:37:54 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 20 Jun 2023 14:37:54 -0000 Received: (qmail 20001 invoked by uid 550); 20 Jun 2023 14:37:37 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 19894 invoked from network); 20 Jun 2023 14:37:36 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1687271844; x=1689863844; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=EsfkvRyybn6t9A06PqoLW3vS8hWr+25llvfp1CDJBrI=; b=o7KArLLGqvzpa4+WsrwtzH+S8G10vsnFNg2uQ47+EUXkQWZqq9HAO6JXr3PTcoAi6J 3e2INVlSuz5FbZKtQf2E31Xf/QsFGt0YNQAyFOHkpwosR7HVpAWYRpG8ONmGf523i6ep uGByK2v3dHUGvIx1vufkFiLllaOofd/udemj6TqGq+iJwV+4MxWasX8lU78QZPv9TtGE 2iBFaG9eV4db1180mr6IP4AYOPtmBBx3ya5YLE+JiknXP3/xLvG4XR7GJPQoBZjDPuV1 7GMPLoTEyH3G68qr4Jfko9xbHOwPAAh6s7lpjJ3WFiviScDrqvEgWarghWLakIT898sZ ahVw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1687271844; x=1689863844; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=EsfkvRyybn6t9A06PqoLW3vS8hWr+25llvfp1CDJBrI=; b=KSPaIgVXZFtR3AUnkTk/UhdAIdfbsyS0I8SWUSQWorb7PHm9be3Xn4I3PCWF0vA/In gbDqEzVRrdmDrlidsQ7LQiqeHDuUz5ngJmYCh37j9eoMHXOHIapjRzuregxbDQvP9PWR wEzRxJ5sGosunW8ldKLITe4kiwL1rZ0pMrE73xxtbypX959izMdU65qEP2UGs/i7lFI9 OETmbda0X9rAHZPF2nh9wWj5PNjG12n5ogUkwCTIggRoEtrcl3f/r/t3WN+a38M5/KPB uHKz41kg8HFO9KPrTkPNr7T96ecvN9romf2f6SC/T1FwYd4o0PQzVSEAVSQEEse2Ie63 9OzQ== X-Gm-Message-State: AC+VfDzZbi6mJ/qOBBSpN75nBh5fx/T15ojw3pbIwlQSPf2Q2s6dJQyf IZTjQOiLsQW+3LncQMWeC1Ur7hY4n/ThqRFp X-Google-Smtp-Source: ACHHUZ73F/YBmCLvgyT4ZpPvPpWGY2rJhsqvrPmXIaBIOkgLtjwPBU65/UH53fblLVdNiZO+k1V+6Q== X-Received: by 2002:aca:1a17:0:b0:39e:ae60:a06a with SMTP id a23-20020aca1a17000000b0039eae60a06amr10737156oia.5.1687271844650; Tue, 20 Jun 2023 07:37:24 -0700 (PDT) From: Yonggang Luo To: Jens Gustedt , enh , musl@lists.openwall.com Cc: Yonggang Luo Date: Tue, 20 Jun 2023 22:37:00 +0800 Message-Id: <20230620143703.1415-3-luoyonggang@gmail.com> X-Mailer: git-send-email 2.39.0.windows.1 In-Reply-To: <20230620143703.1415-1-luoyonggang@gmail.com> References: <20230620143703.1415-1-luoyonggang@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [musl] [PATCH v3 2/5] Rename files for implement pthread_mutex_clocklock and pthread_cond_clockwait Signed-off-by: Yonggang Luo --- src/thread/{pthread_cond_timedwait.c => pthread_cond_clockwait.c} | 0 .../{pthread_mutex_timedlock.c => pthread_mutex_clocklock.c} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename src/thread/{pthread_cond_timedwait.c => pthread_cond_clockwait.c} (100%) rename src/thread/{pthread_mutex_timedlock.c => pthread_mutex_clocklock.c} (100%) diff --git a/src/thread/pthread_cond_timedwait.c b/src/thread/pthread_cond_clockwait.c similarity index 100% rename from src/thread/pthread_cond_timedwait.c rename to src/thread/pthread_cond_clockwait.c diff --git a/src/thread/pthread_mutex_timedlock.c b/src/thread/pthread_mutex_clocklock.c similarity index 100% rename from src/thread/pthread_mutex_timedlock.c rename to src/thread/pthread_mutex_clocklock.c -- 2.39.0.windows.1