From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3A0C5A0A0C; Mon, 2 Aug 2021 23:08:14 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE00E4117A; Mon, 2 Aug 2021 23:08:13 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 5C28841147 for ; Mon, 2 Aug 2021 23:08:12 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1059) id 88A3D20B36E0; Mon, 2 Aug 2021 14:08:11 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 88A3D20B36E0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1627938491; bh=d84iuKdN4ByXXs7E8ABpWBvdLlhDBzVt2j2p15EUig8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=bC+JhUlb7ckXvFvfbdVFS1JyUq7dzjDNVHn3Rc+nrk6k9qZNc5KDaPH2RTM0qs+I+ Ksb47IsCxgKpkzt+KGB2zNoySv0ixRhjWveS4pgyZdHAPGsfpY+G7gW0gMm/M9cwgB 89fX/QaMDBtTRoWSk4u9EMLqXW1+iy1SimMyDZN8= Date: Mon, 2 Aug 2021 14:08:11 -0700 From: Narcisa Ana Maria Vasile To: dev@dpdk.org, thomas@monjalon.net, dmitry.kozliuk@gmail.com, khot@microsoft.com, navasile@microsoft.com, dmitrym@microsoft.com, roretzla@microsoft.com, talshn@nvidia.com, ocardona@microsoft.com Cc: bruce.richardson@intel.com, david.marchand@redhat.com, pallavi.kadam@intel.com Message-ID: <20210802210811.GA29249@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1627684312-28630-1-git-send-email-navasile@linux.microsoft.com> <1627925546-29982-1-git-send-email-navasile@linux.microsoft.com> <1627925546-29982-2-git-send-email-navasile@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1627925546-29982-2-git-send-email-navasile@linux.microsoft.com> User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [dpdk-dev] [PATCH v12 01/10] eal: add basic threading functions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Aug 02, 2021 at 10:32:17AM -0700, Narcisa Ana Maria Vasile wrote: > From: Narcisa Vasile > > Use a portable, type-safe representation for the thread identifier. > Add functions for comparing thread ids and obtaining the thread id > for the current thread. > > Signed-off-by: Narcisa Vasile > --- > lib/eal/common/meson.build | 1 + > lib/eal/{unix => common}/rte_thread.c | 57 ++++++++++++++++----------- > lib/eal/include/rte_thread.h | 48 +++++++++++++++++----- > lib/eal/unix/meson.build | 1 - > lib/eal/version.map | 3 ++ > lib/eal/windows/rte_thread.c | 17 ++++++++ > 6 files changed, 95 insertions(+), 32 deletions(-) > rename lib/eal/{unix => common}/rte_thread.c (66%) > > diff --git a/lib/eal/common/meson.build b/lib/eal/common/meson.build Hello, I see the following error on this patch: ninja: error: loading 'build.ninja': No such file or directory https://lab.dpdk.org/results/dashboard/patchsets/18090/ Locally, the build succeedes. How can I see more information about this build error?