From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id EBAE86CD6 for ; Thu, 12 May 2016 17:13:16 +0200 (CEST) Received: by mail-wm0-f47.google.com with SMTP id g17so141551070wme.1 for ; Thu, 12 May 2016 08:13:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=+j5Zu9N1lPrXmLLaGD2kiO9Z/ugnBCZm2SAOdzM4fdc=; b=F1IiQKbqLsfTbD1QycPchrfGRtXjvi30+lPgpyz7O4eIGmHKC9fK8AXuPSa7kYN39y hXKrjByJUkLbtKtBTz+YZaBAKBLGWPFKTOqVzVjzXuc2mjzdYGMmLwX/+84G4EitrYmc kPABYQ91xguFYyn9++MUTTGanQc09mW0vcyI+jaBf0UBlqCIbtTTBW/UY7jlhyvNSE4Z zl6zNhNLi9L7y9CqABz7ZOOUNSgxNOvwQV92NSB3iO2z4bXw9Lhuf2TAc6a71Xomikg9 ZW0WG2njAzm6x3+uQr4Vi1TY+3vx4jjZ9TseYJqLgeAhCUqsu0BCeDqyVlYXZFtejTjS XHAw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=+j5Zu9N1lPrXmLLaGD2kiO9Z/ugnBCZm2SAOdzM4fdc=; b=PRKk7v7xQ7VW89bJjyyB0SmlBoKCQ7n5M05NqtrGyhdl6VukpCMJdHLTnHxGCJmoE5 EJDvNUI/K0dqbMd7Sqh3OyTJcZ3epCGyciLSefRLrbHMHSETZ9PLbmvbGjO3B6k2xakN 99cmUPQObjR7c3MND5NAd7Hc7ZlY+KVfHVkQgQIRvDpKhC5yBDPZVjOmUtowkVQZ/a+V Qsu7Fn8s3YKTOFLkFBn9bQjd+gpPhu0w8HILiRibPevRWg7oJ/aM76yiNRhx/S257ryo QslUlrTAwk5QBHHIxjJWp44jqrrB5Pjo+neJ+X/7jc4diXzjcXvEokfRIeJQEyRp/7lZ WbDQ== X-Gm-Message-State: AOPr4FWRvYunrvxw9YKDJ7da8MOchUFNxPE0fcPr2RkhGbfNg5c6lCGCzPTz//8Card+ange X-Received: by 10.194.48.114 with SMTP id k18mr11968375wjn.175.1463065996775; Thu, 12 May 2016 08:13:16 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id w77sm41317821wmw.10.2016.05.12.08.13.15 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 12 May 2016 08:13:16 -0700 (PDT) From: Thomas Monjalon To: Jan Viktorin Cc: dev@dpdk.org, David Marchand , Bruce Richardson Date: Thu, 12 May 2016 17:13:15 +0200 Message-ID: <3738691.RyEBclFEEr@xps13> User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1462904011-29838-2-git-send-email-viktorin@rehivetech.com> References: <1462904011-29838-1-git-send-email-viktorin@rehivetech.com> <1462904011-29838-2-git-send-email-viktorin@rehivetech.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 01/11] app/test: introduce resources for tests X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 May 2016 15:13:17 -0000 2016-05-10 20:13, Jan Viktorin: > +struct resource { > + const char *name; /** Unique name of the resource */ > + const char *begin; /** Start of resource data */ > + const char *end; /** End of resource data */ > + TAILQ_ENTRY(resource) next; > +}; There is no doxygen generated from this file, but you can keep this format in case we decide to generate one. Here the comments after the fields should start with /**<