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 CAE5A45FD9; Fri, 3 Jan 2025 21:39:58 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C4EE0406BB; Fri, 3 Jan 2025 21:39:51 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 91ABD4067C for ; Fri, 3 Jan 2025 21:39:48 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id BEEF72041AAE; Fri, 3 Jan 2025 12:39:47 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com BEEF72041AAE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1735936787; bh=lzuSTcHMrqrtBC5e1Ku9ItnK0K8PmlvAQbVpbJdpJz8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JghDmK9Qp1YPTrEmCCpDsIdN+RPXJV9eOaQq1TeRUwRkxFmdQVE/P6TRYWMN/sECI +KKur0XmdJPiXYXND5yzkA05ou4nT67DWJanIzNthm0FwAUTBayl8+KxIQY+IhHFzG sE8ArdAzEZATcKowKyN0yXGaCWNwJfqIyFILbUvU= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: dev@dpdk.org, mb@smartsharesystems.com Subject: [PATCH v2 3/5] doc/api: add portable version of __builtin_add_overflow Date: Fri, 3 Jan 2025 12:39:39 -0800 Message-Id: <1735936781-24199-4-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1735936781-24199-1-git-send-email-andremue@linux.microsoft.com> References: <1735857169-19131-1-git-send-email-andremue@linux.microsoft.com> <1735936781-24199-1-git-send-email-andremue@linux.microsoft.com> 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 __builtin_add_overflow is gcc specific. There's a need for a portable version that can also be used with other compilers. Signed-off-by: Andre Muezerie --- doc/api/doxy-api-index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md index f0193502bc..c95a86448d 100644 --- a/doc/api/doxy-api-index.md +++ b/doc/api/doxy-api-index.md @@ -226,6 +226,7 @@ The public API headers are grouped by topics: [checksum](@ref rte_cksum.h), [config file](@ref rte_cfgfile.h), [key/value args](@ref rte_kvargs.h), + [math](@ref rte_math.h), [argument parsing](@ref rte_argparse.h), [ptr_compress](@ref rte_ptr_compress.h), [string](@ref rte_string_fns.h), -- 2.47.0.vfs.0.3